diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-12-17 20:24:15 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-12-17 20:24:15 -0300 |
commit | 7014264365373a3477357951c2153a9cc7a20341 (patch) | |
tree | 7d47850f79179460d07d7e9ecb64bd9e3b95a19f | |
parent | 49407651e145c3f2b198b745442bf3476cc19b78 (diff) | |
download | serverdata-7014264365373a3477357951c2153a9cc7a20341.tar.gz serverdata-7014264365373a3477357951c2153a9cc7a20341.tar.bz2 serverdata-7014264365373a3477357951c2153a9cc7a20341.tar.xz serverdata-7014264365373a3477357951c2153a9cc7a20341.zip |
Woody now gives you the money so you can put options with Tolchi.
I thought in giving the boots with options, but figured out giving the money
itself would make the quest much more useful for players.
-rw-r--r-- | npc/014-2-1/woody.txt | 2 | ||||
-rw-r--r-- | npc/functions/clientversion.txt | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/npc/014-2-1/woody.txt b/npc/014-2-1/woody.txt index 68b563739..919afab9c 100644 --- a/npc/014-2-1/woody.txt +++ b/npc/014-2-1/woody.txt @@ -91,10 +91,12 @@ L_Give: getitem(SquirrelBoots, 1); getexp(3000, 20); setq(HurnscaldQuest_Woody, 5); + Zeny+=17575; mes ""; mesn; mesq l("Here, all yours. Ah, if I still could walk... I would hunt those annoying squirrels myself!"); + mesc l("Woody also gave you some money so you can put options on your item with Tolchi. Isn't that nice of him?"); close; L_Complete: diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt index 9d9cdb164..d238dd91f 100644 --- a/npc/functions/clientversion.txt +++ b/npc/functions/clientversion.txt @@ -1110,6 +1110,8 @@ function script clientupdater { if (countitem(SilverRing)) { getitem SilverIngot, 3*countitem(SilverRing); } + if (getq(HurnscaldQuest_Woody) >= 5) + Zeny+=17575; } // :// End of Regular Update System |