diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-07-27 20:35:06 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-07-27 20:35:06 -0300 |
commit | 9f8ea22b6f813ac68820beac411d378a829744f9 (patch) | |
tree | ee7d0f5a35b34b7978c2e42f99a48e7e3a8714d3 /npc/functions | |
parent | a586609000fff44962816b4b28efd001af6ffca3 (diff) | |
download | serverdata-9f8ea22b6f813ac68820beac411d378a829744f9.tar.gz serverdata-9f8ea22b6f813ac68820beac411d378a829744f9.tar.bz2 serverdata-9f8ea22b6f813ac68820beac411d378a829744f9.tar.xz serverdata-9f8ea22b6f813ac68820beac411d378a829744f9.zip |
Give an EXP reward by completing Mercury's quest.
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/clientversion.txt | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt index 5507ce75f..bd33a48ee 100644 --- a/npc/functions/clientversion.txt +++ b/npc/functions/clientversion.txt @@ -286,15 +286,20 @@ function script clientupdater { CRAFTQUEST=1; mesc l("You got a blueprint as reward for Blue Sage Slimes Quest completion."), 3; } + // If you have TMW2_CRAFT skill, you need the bonus recipe + if (getskilllv(TMW2_CRAFT)) { + RECIPES_EQUIPMENT[CraftDagger]=true; + mesc l("Dagger Crafting recipe learnt."), 2; + } // Bounty Hunter Helmet if (MERCENARY_DAILYQUEST > 100) { getitem BountyHunterHelmet, 1; mesc l("You got a @@ for completing 100+ daily bountyhunter quests!", getitemlink(BountyHunterHelmet)), 2; } - // If you have TMW2_CRAFT skill, you need the bonus recipe - if (getskilllv(TMW2_CRAFT)) { - RECIPES_EQUIPMENT[CraftDagger]=true; - mesc l("Dagger Crafting recipe learnt."), 2; + // Cindy quest new rewards + if (getq(NivalisQuest_Cindy) >= 3) { + getexp 120000, 0; + mesc l("You got 120,000 XP for completing Mercury's quest."), 2; } // Mercenary Rank removed if (MERC_RANK) { |