diff options
-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 4ea4a0da5..f600785ea 100644 --- a/npc/functions/clientversion.txt +++ b/npc/functions/clientversion.txt @@ -249,6 +249,20 @@ function script clientupdater { if (countitem(IronShovel) + countitem(SteelShovel)) dispbottom l("Shovel have been changed, right-click it to bury items."); } + // General Updates + // sex jun 21 13:20:21 -03 2019 + if (UPDATE < 1561134021) { + UPDATE=1561134021; + if (Karma >= 200) + Karma=98; + else if (Karma < 80) + Karma=100+Karma; + // Well, you don't need this crap I hope... + if (BaseLevel < 40) + getitem TulimMap, 1; + if (getq(TulimsharQuest_Sailors) == 4) + getexp 1508, 15; + } |