diff options
author | Reid Yaro <reidyaro@gmail.com> | 2013-02-24 16:03:39 +0000 |
---|---|---|
committer | Reid Yaro <reidyaro@gmail.com> | 2013-02-24 16:03:39 +0000 |
commit | 35edcee8f39239563e9c351b46f795db2dce1deb (patch) | |
tree | 39ddd5de3e122360ff4bc245e1c41bd52d5a9eed /npc | |
parent | 827ead194b8899d6988808b8e6778eabced9a3d0 (diff) | |
download | serverdata-35edcee8f39239563e9c351b46f795db2dce1deb.tar.gz serverdata-35edcee8f39239563e9c351b46f795db2dce1deb.tar.bz2 serverdata-35edcee8f39239563e9c351b46f795db2dce1deb.tar.xz serverdata-35edcee8f39239563e9c351b46f795db2dce1deb.zip |
Change money from GP to Esperin.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/000-1/gugli.txt | 2 | ||||
-rw-r--r-- | npc/000-2-0/julia.txt | 4 | ||||
-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, 7 insertions, 7 deletions
diff --git a/npc/000-1/gugli.txt b/npc/000-1/gugli.txt index c1518d7c..c923c2d1 100644 --- a/npc/000-1/gugli.txt +++ b/npc/000-1/gugli.txt @@ -140,7 +140,7 @@ l_Couwan: if (countitem("FishBox") > 0) delitem "FishBox", 1; setq ShipQuests_Couwan, 2; set zeny, zeny+10; - message strcharinfo(0), l("You receive 10 GP!"); + message strcharinfo(0), l("You receive @@ E!", 10); close; diff --git a/npc/000-2-0/julia.txt b/npc/000-2-0/julia.txt index da8ff863..e8c49ac3 100644 --- a/npc/000-2-0/julia.txt +++ b/npc/000-2-0/julia.txt @@ -225,7 +225,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 50 GP!"); + message strcharinfo(0), l("You receive @@ E!", 50); setq ShipQuests_ChefGado, 5; close; @@ -259,7 +259,7 @@ l_Rumors: next; mesq l("Take this money as a reward for your nice words."); set zeny, zeny + 40; - message strcharinfo(0), l("You receive 40 GP!"); + message strcharinfo(0), l("You receive @@ E!", 40); close; diff --git a/npc/000-2-1/arpan.txt b/npc/000-2-1/arpan.txt index 2542deef..874becca 100644 --- a/npc/000-2-1/arpan.txt +++ b/npc/000-2-1/arpan.txt @@ -200,7 +200,7 @@ l_WhereOldClothes: setq ShipQuests_ArpanMoney, 1; set @q, getq(ShipQuests_Arpan); set zeny, zeny+25; - message strcharinfo(0), l("You receive 25 GP!"); + message strcharinfo(0), l("You receive @@ E!", 25); goto l_BeforeMenu; diff --git a/npc/000-2-1/chefgado.txt b/npc/000-2-1/chefgado.txt index efdd58f1..2047f7bf 100644 --- a/npc/000-2-1/chefgado.txt +++ b/npc/000-2-1/chefgado.txt @@ -167,7 +167,7 @@ l_PoisonJulia: callfunc "InventoryPlace", @item, @count; set zeny, zeny + 60; - message strcharinfo(0), l("You receive 60 GP!"); + message strcharinfo(0), l("You receive @@ E!", 60); getitem "Bread", 2; setq ShipQuests_ChefGado, 4; diff --git a/npc/000-2-1/peter.txt b/npc/000-2-1/peter.txt index 45874dca..cb77d5d1 100644 --- a/npc/000-2-1/peter.txt +++ b/npc/000-2-1/peter.txt @@ -179,7 +179,7 @@ OnReturnWin: l_BonusTask: mes ""; mesn; - mesq l("I will give you @@ GP.", 200); + message strcharinfo(0), l("You receive @@ E!", 200); next; menu @@ -307,7 +307,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 200 GP!"); + message strcharinfo(0), l("You receive @@ E!", 200); goto l_CleaningClose; |