diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-03-03 12:24:37 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-03-03 12:24:37 -0300 |
commit | 730980ae204f451a235a7ef9d80196f2dbc6f6df (patch) | |
tree | f10c3670ccaf8579e3c24c9794a6e38b190a0632 /npc | |
parent | 4a183b8fa6983c3af54cbc2cd4923e24277c71ad (diff) | |
download | serverdata-730980ae204f451a235a7ef9d80196f2dbc6f6df.tar.gz serverdata-730980ae204f451a235a7ef9d80196f2dbc6f6df.tar.bz2 serverdata-730980ae204f451a235a7ef9d80196f2dbc6f6df.tar.xz serverdata-730980ae204f451a235a7ef9d80196f2dbc6f6df.zip |
Update Tycoon Black Scorpion Quest level requeriment and reward (lv 34 -> 45) (+43k xp)
Diffstat (limited to 'npc')
-rw-r--r-- | npc/007-1/tycoon.txt | 6 | ||||
-rw-r--r-- | npc/functions/clientversion.txt | 8 |
2 files changed, 10 insertions, 4 deletions
diff --git a/npc/007-1/tycoon.txt b/npc/007-1/tycoon.txt index 5d6ca30df..e5589737c 100644 --- a/npc/007-1/tycoon.txt +++ b/npc/007-1/tycoon.txt @@ -130,10 +130,10 @@ L_Purge: getitem MinerHat, 1; getexp 3800, 0; // r7.5 1365→3800 setq MineQuest_Tycoon, 12, 0; - } else if (.@q == 12 && BaseLevel >= 34) { + } else if (.@q == 12 && BaseLevel >= 45) { mesq l("The last task I could give you is to exterminate 200 @@. They actually stop miners progress on the mine.", getmonsterlink(BlackScorpion)); setq MineQuest_Tycoon, 13, 0; - } else if (.@q == 12 && BaseLevel < 34) { + } else if (.@q == 12 && BaseLevel < 45) { mesq l("You are too weak for my last task, please come back later with some levels."); } else if (.@q == 13) { mesq l("You are killing @@/200 @@ at the cave.", .@k, getmonsterlink(BlackScorpion)); @@ -142,7 +142,7 @@ L_Purge: mesq l("Here, take this @@ - you deserve it! And here is some gold and experience.", getitemlink(PolishedRuby)); inventoryplace PolishedRuby, 1; getitem PolishedRuby, 1; - getexp 12000, 0; // 200 kills * 120 xp = 24'000 xp gained from killing. (50% bonus) + getexp 55000, 0; // About 94% from needed EXP to level up (you won't be level 45 when you finish) set Zeny, Zeny + 5000; setq MineQuest_Tycoon, 15, 0; } diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt index 72637960b..140aa1283 100644 --- a/npc/functions/clientversion.txt +++ b/npc/functions/clientversion.txt @@ -199,7 +199,13 @@ function script checkclientversion { #VALENTINE_RECEIVED=0; } } - + // Update Tycoon quest exp + // dom mar 3 12:22:04 -03 2019 + if (UPDATE < 1551626524) { + UPDATE=1550280141; + if (getq(MineQuest_Tycoon) >= 15) + getexp 43000, 0; + } |