diff options
author | Alige <aligetmw@hotmail.fr> | 2012-12-26 23:58:39 +0400 |
---|---|---|
committer | Alige <aligetmw@hotmail.fr> | 2012-12-26 23:58:39 +0400 |
commit | 72b7b723d425c220ebe335d77b064e917bbdddb7 (patch) | |
tree | dea0ee1d13c02348a755d7179f466bbb8512040b /npc | |
parent | 5d2f0f957bffe925eaa21c0e74ad957c077d5119 (diff) | |
download | serverdata-72b7b723d425c220ebe335d77b064e917bbdddb7.tar.gz serverdata-72b7b723d425c220ebe335d77b064e917bbdddb7.tar.bz2 serverdata-72b7b723d425c220ebe335d77b064e917bbdddb7.tar.xz serverdata-72b7b723d425c220ebe335d77b064e917bbdddb7.zip |
Inconsistencies about money rewards in scripts, when looking at quests.xml & units.xml from clientdata.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/000-1/gugli.txt | 2 | ||||
-rw-r--r-- | npc/000-2-0/julia.txt | 2 | ||||
-rw-r--r-- | npc/000-2-1/arpan.txt | 2 | ||||
-rw-r--r-- | npc/000-2-1/chefgado.txt | 2 | ||||
-rw-r--r-- | npc/000-2-1/peter.txt | 4 |
5 files changed, 6 insertions, 6 deletions
diff --git a/npc/000-1/gugli.txt b/npc/000-1/gugli.txt index 8aa72163..b2c9001f 100644 --- a/npc/000-1/gugli.txt +++ b/npc/000-1/gugli.txt @@ -140,7 +140,7 @@ l_Couwan: setq ShipQuests_Couwan, 1; if (countitem("FishBox") > 0) delitem "FishBox", 1; set zeny, zeny+10; - message strcharinfo(0), l("You receive 10GP!"); + message strcharinfo(0), l("You receive 10 GP!"); close; l_Location: diff --git a/npc/000-2-0/julia.txt b/npc/000-2-0/julia.txt index e9ad08a9..0486abb4 100644 --- a/npc/000-2-0/julia.txt +++ b/npc/000-2-0/julia.txt @@ -210,7 +210,7 @@ l_Regret: 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!"); + message strcharinfo(0), l("You receive 50 GP!"); setq ShipQuests_ChefGado, 5; close; diff --git a/npc/000-2-1/arpan.txt b/npc/000-2-1/arpan.txt index f3883662..c8f5d1c2 100644 --- a/npc/000-2-1/arpan.txt +++ b/npc/000-2-1/arpan.txt @@ -193,7 +193,7 @@ l_WhereOldClothes: setq ShipQuests_ArpanMoney, 1; set zeny, zeny+25; - message strcharinfo(0), l("You receive 25GP!"); + message strcharinfo(0), l("You receive 25 GP!"); goto l_BeforeMenu; diff --git a/npc/000-2-1/chefgado.txt b/npc/000-2-1/chefgado.txt index a7032404..92af50e3 100644 --- a/npc/000-2-1/chefgado.txt +++ b/npc/000-2-1/chefgado.txt @@ -161,7 +161,7 @@ l_PoisonJulia: callfunc "InventoryPlace", @item, @count; set zeny, zeny + 60; - message strcharinfo(0), l("You receive 60GP!"); + message strcharinfo(0), l("You receive 60 GP!"); getitem "Bread", 2; setq ShipQuests_ChefGado, 4; diff --git a/npc/000-2-1/peter.txt b/npc/000-2-1/peter.txt index bd0ffa6a..d202f417 100644 --- a/npc/000-2-1/peter.txt +++ b/npc/000-2-1/peter.txt @@ -158,7 +158,7 @@ OnReturnWin: l_BonusTask: mes ""; mesn; - mesq l("I will give you @@GP.", 200); + mesq l("I will give you @@ GP.", 200); next; menu @@ -282,7 +282,7 @@ l_Reward: mesq l("Good job!") + " " + l("Here's your reward!"); getexp 100, 0; set zeny, zeny + 200; - message strcharinfo(0), l("You receive 200GP!"); + message strcharinfo(0), l("You receive 200 GP!"); setq ShipQuests_Peter, 5; goto l_CleaningClose; |