summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-06-21 19:20:23 -0300
committerJesusaves <cpntb1@ymail.com>2019-06-21 19:20:23 -0300
commit4e08d5e099cec08819505dbe21c0455bdc1e730c (patch)
tree8878df76cdb89660a8614f2a9085395d61b3285a
parent6da4f9d728f5cb1bf4db103cab375671c39985a0 (diff)
downloadserverdata-4e08d5e099cec08819505dbe21c0455bdc1e730c.tar.gz
serverdata-4e08d5e099cec08819505dbe21c0455bdc1e730c.tar.bz2
serverdata-4e08d5e099cec08819505dbe21c0455bdc1e730c.tar.xz
serverdata-4e08d5e099cec08819505dbe21c0455bdc1e730c.zip
Apply some updates/fixes to player char, too.
They are: Karma fix (again, let's see if it works...), Tulimshar Map and Sailors EXP.
-rw-r--r--npc/functions/clientversion.txt14
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;
+ }