diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-10-23 13:05:53 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-10-23 13:05:53 -0300 |
commit | 222f77c45e82f9e11a62b6caae3472ec12a13443 (patch) | |
tree | 65f1dab82b47f841c292d77c51cf794095e80a08 /npc/functions/hub.txt | |
parent | f8bbda3f56956a09e90a2da7befd8427404c35dd (diff) | |
download | serverdata-222f77c45e82f9e11a62b6caae3472ec12a13443.tar.gz serverdata-222f77c45e82f9e11a62b6caae3472ec12a13443.tar.bz2 serverdata-222f77c45e82f9e11a62b6caae3472ec12a13443.tar.xz serverdata-222f77c45e82f9e11a62b6caae3472ec12a13443.zip |
Revert the siege conditions. However, no siege will happen if no monster was
killed the past 90 seconds.
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); |