diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-10-23 13:17:55 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-10-23 13:17:55 -0300 |
commit | f34d4f11345ff2c086f435283636b751ec6bbd23 (patch) | |
tree | 1b6254f9367a10b8804469e8526b6405bd37de79 | |
parent | 222f77c45e82f9e11a62b6caae3472ec12a13443 (diff) | |
download | serverdata-f34d4f11345ff2c086f435283636b751ec6bbd23.tar.gz serverdata-f34d4f11345ff2c086f435283636b751ec6bbd23.tar.bz2 serverdata-f34d4f11345ff2c086f435283636b751ec6bbd23.tar.xz serverdata-f34d4f11345ff2c086f435283636b751ec6bbd23.zip |
Update Lt. Dausen rewards for the training quest (GP only)
-rw-r--r-- | npc/003-1/lieutenantdausen.txt | 16 | ||||
-rw-r--r-- | npc/functions/clientversion.txt | 13 |
2 files changed, 21 insertions, 8 deletions
diff --git a/npc/003-1/lieutenantdausen.txt b/npc/003-1/lieutenantdausen.txt index 38a398cf8..c4ac08738 100644 --- a/npc/003-1/lieutenantdausen.txt +++ b/npc/003-1/lieutenantdausen.txt @@ -124,9 +124,9 @@ function DausenMobTutorial { mesn; mesq l("Welp, you killed 10 Crocs. They're not dangerous, as you see. That's why we don't bother in cleaning them up."); setq TulimsharQuest_MobTutorial, 2, 0; - // 30% of exp values, and 6 GP/Level + // 30% of exp values getexp 75, 0; - Zeny+=54; + Zeny+=300; close; } // Quest Body @@ -166,9 +166,9 @@ function DausenMobTutorial { mesn; mesq l("I don't know what you did, but both the Ducks and Blubs did got scared. I thank you in the name of the city guard. Please come back later."); setq TulimsharQuest_MobTutorial, 4, 0; - // 30% of exp values, and 6 GP/Level + // 30% of exp values getexp 210, 0; - Zeny+=84; + Zeny+=700; close; } // Quest Body @@ -198,9 +198,9 @@ function DausenMobTutorial { mesn; mesq l("Not bad. These are the main threat we have to fend off, along snakes and black scorpions."); setq TulimsharQuest_MobTutorial, 6, 0; - // 30% of exp values, and 6 GP/Level + // 30% of exp values getexp 600, 0; - Zeny+=132; + Zeny+=1200; close; } // Quest Body @@ -235,9 +235,9 @@ function DausenMobTutorial { inventoryplace Coal, 6; getitem Coal, 6; setq TulimsharQuest_MobTutorial, 8, 0; - // ~30% of exp values, and 6 GP/Level (ofc you cannot complete yet) + // ~30% of exp values getexp 2100, 0; - Zeny+=200; + Zeny+=2500; mesn; mesq l("This coal will aid you to craft better weapons later. It's a token of appreciation. Good job."); close; diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt index 87ff89f9f..e7cb2750d 100644 --- a/npc/functions/clientversion.txt +++ b/npc/functions/clientversion.txt @@ -1055,6 +1055,19 @@ function script clientupdater { if (getskilllv(TMW2_SKILLPERMIT) >= 1) #ADD_LVL+=80000; } + // Dausen update + // dom out 22 13:15:32 BRT 2022 + if (UPDATE < 1666541732) { + UPDATE=1666541732; + if (getq(TulimsharQuest_MobTutorial) >= 2) + Zeny+=246; + if (getq(TulimsharQuest_MobTutorial) >= 4) + Zeny+=616; + if (getq(TulimsharQuest_MobTutorial) >= 6) + Zeny+=1068; + if (getq(TulimsharQuest_MobTutorial) >= 8) + Zeny+=2300; + } // :// End of Regular Update System //////////////////////////////////// |