diff options
Diffstat (limited to 'npc/000-2-1')
-rw-r--r-- | npc/000-2-1/arpan.txt | 4 | ||||
-rw-r--r-- | npc/000-2-1/chefgado.txt | 2 | ||||
-rw-r--r-- | npc/000-2-1/peter.txt | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/npc/000-2-1/arpan.txt b/npc/000-2-1/arpan.txt index 9b2b9665..98cd05dc 100644 --- a/npc/000-2-1/arpan.txt +++ b/npc/000-2-1/arpan.txt @@ -201,7 +201,7 @@ L_WhereOldClothes: setq ShipQuests_ArpanMoney, 2; .@q = getq(ShipQuests_Arpan); - Zeny = Zeny + 10; + Zeny += 10; message strcharinfo(0), l("You receive @@ E!", 10); goto L_BeforeMenu; @@ -214,7 +214,7 @@ L_WhereMoney: setq ShipQuests_ArpanMoney, 2; .@q = getq(ShipQuests_Arpan); - Zeny = Zeny + 10; + Zeny += 10; message strcharinfo(0), l("You receive @@ E!", 10); goto L_BeforeMenu; diff --git a/npc/000-2-1/chefgado.txt b/npc/000-2-1/chefgado.txt index 69570fcf..0039e094 100644 --- a/npc/000-2-1/chefgado.txt +++ b/npc/000-2-1/chefgado.txt @@ -161,7 +161,7 @@ L_PoisonJulia: 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!"); setq ShipQuests_ChefGado, 4; - Zeny = Zeny + 200; + Zeny += 200; message strcharinfo(0), l("You receive @@ E!", 200); inventoryplace Bread, 1; getitem Bread, 1; diff --git a/npc/000-2-1/peter.txt b/npc/000-2-1/peter.txt index eaade56e..060fa660 100644 --- a/npc/000-2-1/peter.txt +++ b/npc/000-2-1/peter.txt @@ -285,7 +285,7 @@ OnDone: default: @peter=750; break; } - Zeny = Zeny + @peter; + Zeny += @peter; message strcharinfo(0), l("You receive @@ E!", @peter); // Some cleanup. Shouldn't cause bugs but it's absence causes a ugly behavior. |