diff options
author | Reid <reidyaro@gmail.com> | 2015-12-27 19:09:29 +0100 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2015-12-27 19:09:29 +0100 |
commit | 9ab03ae308d21a3385e40220fee77d269d4e1725 (patch) | |
tree | dcba8dccf7ee86a867fb4db42ef3e3565bf21498 | |
parent | 671b284efb662c698807d553e9382d4ec1d73859 (diff) | |
download | serverdata-9ab03ae308d21a3385e40220fee77d269d4e1725.tar.gz serverdata-9ab03ae308d21a3385e40220fee77d269d4e1725.tar.bz2 serverdata-9ab03ae308d21a3385e40220fee77d269d4e1725.tar.xz serverdata-9ab03ae308d21a3385e40220fee77d269d4e1725.zip |
Fix reward and add some more dialogue on qonan script on artis.
-rw-r--r-- | npc/001-1/qonan.txt | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/npc/001-1/qonan.txt b/npc/001-1/qonan.txt index 4d3160f1..d1a6e66c 100644 --- a/npc/001-1/qonan.txt +++ b/npc/001-1/qonan.txt @@ -23,7 +23,14 @@ l("I have a lot of work here, so I don't even have time to go to the town."), l("Could you do a small favour for me?"); - select l("Go on."); + switch (select (l("Go on."), l("I don't have the time sorry."))) + { + case 2: + speech 5, + l("No problem, see you next time."); + closedialog; + close; + } speech 3, l("Before I joined Nard, I used to be a thief."), @@ -45,11 +52,12 @@ { case 0: setq ArtisQuests_QOnan, 1; - getrandompoint(180,27,189,32); + getrandompoint(178,26,182,29); npcdebug "Chest buriad at (" + .move__rand_x + "," + .move__rand_y + ")"; shovel_addquest("001-1", .move__rand_x, .move__rand_y, "QOnanFoundItem"); speech 3, l("Alright, you will need this shovel."), + l("You should check on the highest part of the cliff, I was hidding there."), l("I hope to see you soon."); getitem IronShovel, 1; close; @@ -61,10 +69,11 @@ } L_QuestGiven: - speech l("I asked you to do me a favour, did you forget?"); + speech 4, l("I asked you to do me a favour, did you forget?"); select l("What should I do, again?"); speech 1, l("Please find the small chest, buried somewhere on the Artis Hill."), + l("You should check on the highest part of the cliff, I was hidding there."), l("Bring it to me, and you will get your reward."); close; @@ -75,8 +84,8 @@ L_ItemFount: l("Let me open it with my key."), l("Like I promised, here is your share."), l("I can finally pay off my debts."); - // delitem SmallChest, 1; - Zeny += 25000; + + Zeny += 1800; setq ArtisQuests_QOnan, 3; close; |