diff options
author | Reid <reidyaro@gmail.com> | 2012-12-12 09:18:31 +0100 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2012-12-12 09:18:31 +0100 |
commit | b27e0da2de9410a9274da894dd318d35937a64bc (patch) | |
tree | d3ce28220aed77f73d87a93ee10907856c83e7c3 /npc | |
parent | 90b1a9c44a53d4851c0efa4369c509a335e1e983 (diff) | |
download | clientdata-b27e0da2de9410a9274da894dd318d35937a64bc.tar.gz clientdata-b27e0da2de9410a9274da894dd318d35937a64bc.tar.bz2 clientdata-b27e0da2de9410a9274da894dd318d35937a64bc.tar.xz clientdata-b27e0da2de9410a9274da894dd318d35937a64bc.zip |
Add new rewards.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/000-1/chest.txt | 2 | ||||
-rw-r--r-- | npc/000-1/darlin.txt | 1 | ||||
-rw-r--r-- | npc/000-1/gugli.txt | 2 | ||||
-rw-r--r-- | npc/000-2-0/julia.txt | 7 | ||||
-rw-r--r-- | npc/000-2-1/chefgado.txt | 4 | ||||
-rw-r--r-- | npc/000-2-1/peter.txt | 4 |
6 files changed, 12 insertions, 8 deletions
diff --git a/npc/000-1/chest.txt b/npc/000-1/chest.txt index 88ddd196..14053a0a 100644 --- a/npc/000-1/chest.txt +++ b/npc/000-1/chest.txt @@ -26,7 +26,7 @@ l_Give: if (@q > 1) goto l_Close; setq ShipQuests_Darlin, 2; - set zeny, zeny + 10; + set zeny, zeny + 100; getitem SeaDrops, 1; getitem Aquada, 1; getitem OldBook, 1; diff --git a/npc/000-1/darlin.txt b/npc/000-1/darlin.txt index f8cd9c09..af3345bf 100644 --- a/npc/000-1/darlin.txt +++ b/npc/000-1/darlin.txt @@ -17,6 +17,7 @@ set @q, getq(ShipQuests_Darlin); if (@q == 1 || @q == 2) goto OnQuestGiven; if (@q > 2) goto l_QuestDone; + OnStart: mesq l("HEY! HEY YOU!"); next; diff --git a/npc/000-1/gugli.txt b/npc/000-1/gugli.txt index c4a895ca..d95ff4af 100644 --- a/npc/000-1/gugli.txt +++ b/npc/000-1/gugli.txt @@ -137,7 +137,7 @@ l_Couwan: mesq l("May this be a lesson for you."); setq ShipQuests_Couwan, 2; - set zeny, zeny+5; + set zeny, zeny+10; if (countitem("FishBox") > 0) delitem "FishBox", 1; message strcharinfo(0), l("You receive 5GP!"); close; diff --git a/npc/000-2-0/julia.txt b/npc/000-2-0/julia.txt index 6a5b3549..0351ce3b 100644 --- a/npc/000-2-0/julia.txt +++ b/npc/000-2-0/julia.txt @@ -190,6 +190,7 @@ l_PoisonJulia: l("Well... No wait, I have something for you but you shouldn't eat it... I'm taking it back to the kitchen."), l_Regret; mes ""; + mesn; mesq l("Seems yummy! Let me taste it!"); next; mesq l("Hmmm, hm... *cough*, *cough*, *burp*, *cough*. What... What is that?!... *cough*, *burp*... Damn Gado... *cough*"); @@ -200,6 +201,7 @@ l_PoisonJulia: l_Regret: mes ""; + mesn; mesq l("Why? And who should you bring it back to?"); next; @@ -207,12 +209,13 @@ l_Regret: l("Ehm... He was really upset because of some past stories."), -; mes ""; + mesn; mesq l("Gado! That coward lives in the past, I will ask Nard to punish him, again!"); next; mesq l("Take this money for your wise choice. But do not try it again. Water has been merciful with you once... Do not tempt fate once more!"); set zeny, zeny + 50; - message strcharinfo(0), l("You receive 50GP!"); - setq ShipQuests_ChefGado, 5; + message strcharinfo(0), l("You receive 100GP!"); + setq ShipQuests_ChefGado, 100; close; diff --git a/npc/000-2-1/chefgado.txt b/npc/000-2-1/chefgado.txt index 7fc47fbb..6af17de8 100644 --- a/npc/000-2-1/chefgado.txt +++ b/npc/000-2-1/chefgado.txt @@ -138,8 +138,8 @@ l_PoisonJulia: mesn; mesq l("The usurper has been punished! This is a great day! Take this reward as a prize for your loyalty to the old commander!"); - set zeny, zeny + 25; - message strcharinfo(0), l("You receive 25GP!"); + set zeny, zeny + 60; + message strcharinfo(0), l("You receive 60GP!"); getitem "Bread", 2; setq ShipQuests_ChefGado, 4; diff --git a/npc/000-2-1/peter.txt b/npc/000-2-1/peter.txt index 0e7f8790..fe2aa569 100644 --- a/npc/000-2-1/peter.txt +++ b/npc/000-2-1/peter.txt @@ -272,8 +272,8 @@ l_Reward: mesn; mesq l("Good job!") + " " + l("Here's your reward!"); getexp 100, 0; - set zeny, zeny + 25; - message strcharinfo(0), l("You receive 25GP!"); + set zeny, zeny + 500; + message strcharinfo(0), l("You receive 500GP!"); setq ShipQuests_Peter, 5; goto l_CleaningClose; |