diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-12-28 20:48:28 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-12-28 20:48:28 -0300 |
commit | a43f2894557f2addfec42628b973fc468833809a (patch) | |
tree | dd973d94cfa00c334dab1bb5f91b296db03cab22 | |
parent | 0419c5b84ff23c488472efdd2516105e93709c4c (diff) | |
download | serverdata-a43f2894557f2addfec42628b973fc468833809a.tar.gz serverdata-a43f2894557f2addfec42628b973fc468833809a.tar.bz2 serverdata-a43f2894557f2addfec42628b973fc468833809a.tar.xz serverdata-a43f2894557f2addfec42628b973fc468833809a.zip |
If player is below level 20 and is not saved to Tulimshar on Candor, warp them
back to Candor. This includes Halinarzo.
-rw-r--r-- | npc/functions/clientversion.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt index b95ff58a0..8b128d772 100644 --- a/npc/functions/clientversion.txt +++ b/npc/functions/clientversion.txt @@ -985,6 +985,20 @@ function script clientupdater { dispbottom l("Invalid recipe from Nahrec partly reimbursed."); } } + // Christmas Warp bug + // seg dez 28 20:45:55 BRT 2020 + if (UPDATE < 1609199155) { + UPDATE=1609199155; + if (BaseLevel < 20) { + if (getsavepoint(0) != "000-1" && + getsavepoint(0) != "003-1" && + getsavepoint(0) != "005-1") { + // Resave at Candor + EnterTown("Candor"); + ReturnTown(); + } + } + } // :// End of Regular Update System //////////////////////////////////// |