diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-08-17 17:39:32 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-08-17 17:39:32 -0300 |
commit | ced07558ad91c741bbb28bbe2f86b105de59e4bb (patch) | |
tree | 67bd54ee6d87fadcc2dce8ab846668ff4e60d498 /npc/functions/clientversion.txt | |
parent | 0c6b91b0432ff310fca87ca85d79306ad49eb081 (diff) | |
download | serverdata-ced07558ad91c741bbb28bbe2f86b105de59e4bb.tar.gz serverdata-ced07558ad91c741bbb28bbe2f86b105de59e4bb.tar.bz2 serverdata-ced07558ad91c741bbb28bbe2f86b105de59e4bb.tar.xz serverdata-ced07558ad91c741bbb28bbe2f86b105de59e4bb.zip |
Lower Ground Strike MSP from 3 to 2.
Now I wonder if I didn't accidentaly reuse MAGIC_PTS... Would be... awkward.
Anyway.
Diffstat (limited to 'npc/functions/clientversion.txt')
-rw-r--r-- | npc/functions/clientversion.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt index 15300aaee..f7f2e2158 100644 --- a/npc/functions/clientversion.txt +++ b/npc/functions/clientversion.txt @@ -530,13 +530,20 @@ function script clientupdater { // sex ago 9 18:10:20 -03 201 if (UPDATE < 1565385020) { UPDATE=1565385020; + // PVP bugfix Karma=0; + // Allow to skip quest if you already have the Grimorium if (countitem(JesusalvaGrimorium) && getskilllv(TMW2_SKILLPERMIT) == 2) { skill TMW2_SKILLPERMIT, 3, 0; } + // This can't happen but anyway, just in case... if (getskilllv(TMW2_TRANSMIGRATION) > 10) { skill TMW2_TRANSMIGRATION, 10, 0; } + // Magic Skill Points for this skill went from 3 to 2 + if (getskilllv(ASC_METEORASSAULT)) + MAGIC_PTS-=1; + // Post-poned Referral Rewards if (#REFERRAL_PROG && BaseLevel >= 25 && #REFERRAL_CTRL < 1) { #REFERRAL_CTRL=1; |