diff options
Diffstat (limited to 'npc/functions/hub.txt')
-rw-r--r-- | npc/functions/hub.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/functions/hub.txt b/npc/functions/hub.txt index 01e2f2b90..f8d15a089 100644 --- a/npc/functions/hub.txt +++ b/npc/functions/hub.txt @@ -47,7 +47,7 @@ function script HUB_Login { */ // Work only on new chars, or chars which cleared Tulimshar. if (.@gto == WORLD_ID && - (!getq(General_Narrator) || + ((!getq(General_Narrator) && BaseLevel < 5) || (getq(General_Narrator) && BaseLevel > 20))) { // Warp to the proper Mirror Lake @@ -59,8 +59,8 @@ function script HUB_Login { // Send debug information debugmes("Vault User %d moved to lake %d.", getvaultid(), .@mlp); - // Handle new user (non-native) accounts - if (!getq(General_Narrator)) { + // TODO: Handle new user (non-native) accounts + if (!getq(General_Narrator) && BaseLevel < 5) { adddefaultskills(); getitembound MirrorLakeArmor, 1, 4; equip(MirrorLakeArmor); |