diff options
author | jesusalva <cpntb1@ymail.com> | 2018-02-21 13:19:12 -0300 |
---|---|---|
committer | jesusalva <cpntb1@ymail.com> | 2018-02-21 13:34:38 -0300 |
commit | 5146dab6617d5210b3f0b2b6fd170b443f98a1d4 (patch) | |
tree | 8df67bf91a15534757a083d9e23cc51a9e5d2185 | |
parent | c8b5f76ca938773cf8e66260bd46bc86f0add5c5 (diff) | |
download | serverdata-5146dab6617d5210b3f0b2b6fd170b443f98a1d4.tar.gz serverdata-5146dab6617d5210b3f0b2b6fd170b443f98a1d4.tar.bz2 serverdata-5146dab6617d5210b3f0b2b6fd170b443f98a1d4.tar.xz serverdata-5146dab6617d5210b3f0b2b6fd170b443f98a1d4.zip |
Request confirmation at Nard before he taking your money.
Also, give you 1000 GP back at Elmo for the beer (may be changed later)
-rw-r--r-- | npc/002-4/elmo.txt | 3 | ||||
-rw-r--r-- | npc/002-4/nard.txt | 8 |
2 files changed, 10 insertions, 1 deletions
diff --git a/npc/002-4/elmo.txt b/npc/002-4/elmo.txt index 18350dd09..1d846bd67 100644 --- a/npc/002-4/elmo.txt +++ b/npc/002-4/elmo.txt @@ -49,7 +49,8 @@ L_Party: next; setq CandorQuest_Sailors, 3; getexp 10, 0; - mesq l("Alright, I'll show up later. Thanks for calling me."); + Zeny = (Zeny + 1000); + mesq l("Alright, I'll show up later. Thanks for calling me. Here's 1000 GP for your efforts."); // With this, the final cost is 50 GP close; OnInit: diff --git a/npc/002-4/nard.txt b/npc/002-4/nard.txt index 4e3c5e3f6..f3cfc9027 100644 --- a/npc/002-4/nard.txt +++ b/npc/002-4/nard.txt @@ -120,6 +120,11 @@ L_CandorIsland: L_NotYet: mesn; + menu + l("I've brought the money you've asked for."),-, + l("Please excuse me, captain."), L_Close; + + mes ""; if (Zeny >= .@price) { mesq l("Ten, fifty, thousand... Yep, this is the amount I've asked for."); next; @@ -180,6 +185,9 @@ L_TTulim: mesq l("I was planning to go there soon, anyway. All aboard!"); close; +L_Close: + close; + OnInit: .sex = G_MALE; .distance = 5; |