diff options
-rw-r--r-- | npc/000-1/gugli.txt | 4 | ||||
-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 | ||||
-rw-r--r-- | npc/001-1/enora.txt | 2 | ||||
-rw-r--r-- | npc/001-1/fexil.txt | 2 | ||||
-rw-r--r-- | npc/001-1/salem.txt | 2 | ||||
-rw-r--r-- | npc/001-2-19/lloyd.txt | 2 | ||||
-rw-r--r-- | npc/001-2-22/peter.txt | 2 | ||||
-rw-r--r-- | npc/001-2-28/plush.txt | 2 | ||||
-rw-r--r-- | npc/001-2-9/janus.txt | 4 | ||||
-rw-r--r-- | npc/008-2-2/melania.txt | 2 | ||||
-rw-r--r-- | npc/008-2-2/melinda.txt | 6 |
13 files changed, 18 insertions, 18 deletions
diff --git a/npc/000-1/gugli.txt b/npc/000-1/gugli.txt index dd2e6739..77738a8a 100644 --- a/npc/000-1/gugli.txt +++ b/npc/000-1/gugli.txt @@ -150,7 +150,7 @@ L_Couwan: if (countitem(FishBox) > 0) delitem FishBox, 1; setq ShipQuests_Couwan, 2; - Zeny = Zeny + 10; + Zeny += 10; getexp 40, 0; message strcharinfo(0), l("You receive @@ E!", 10); @@ -202,7 +202,7 @@ L_TaskDone: if (countitem(PlushroomBox) == 1) delitem PlushroomBox, 1; setq ShipQuests_Gugli, 2; - Zeny = Zeny + 250; + Zeny += 250; getexp 50, 0; mes ""; 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. diff --git a/npc/001-1/enora.txt b/npc/001-1/enora.txt index 45e6e551..bf2f7b16 100644 --- a/npc/001-1/enora.txt +++ b/npc/001-1/enora.txt @@ -123,7 +123,7 @@ .@zeny_reward = getarg(1); getexp .@exp_reward, 0; - Zeny = Zeny + .@zeny_reward; + Zeny += .@zeny_reward; narrator S_LAST_NEXT, l("You received @@ EXP and @@ E.", .@exp_reward, .@zeny_reward); diff --git a/npc/001-1/fexil.txt b/npc/001-1/fexil.txt index 2ea78091..7b612674 100644 --- a/npc/001-1/fexil.txt +++ b/npc/001-1/fexil.txt @@ -122,7 +122,7 @@ l("Deal, I offer you @@ E!", .@price); delitem FluffyFur, .@amount; - Zeny = Zeny + .@price; + Zeny += .@price; break; diff --git a/npc/001-1/salem.txt b/npc/001-1/salem.txt index c8ea3ab8..ceaeda8f 100644 --- a/npc/001-1/salem.txt +++ b/npc/001-1/salem.txt @@ -48,7 +48,7 @@ return 3; } - Zeny = Zeny - .@price; + Zeny -= .@price; getitem PiouEgg, 1; ArtisQuests_PiousBought += 1; mesq l("You take good care of your piou. Remember to feed it every day."); diff --git a/npc/001-2-19/lloyd.txt b/npc/001-2-19/lloyd.txt index fc17cc4f..e2f02ec0 100644 --- a/npc/001-2-19/lloyd.txt +++ b/npc/001-2-19/lloyd.txt @@ -115,7 +115,7 @@ } else { - Zeny = Zeny - .@price; + Zeny -= .@price; setq ArtisQuests_Lloyd, 1; speech S_FIRST_BLANK_LINE | S_LAST_NEXT, l("Perfect!"), diff --git a/npc/001-2-22/peter.txt b/npc/001-2-22/peter.txt index 7fefb5f2..85d80bbb 100644 --- a/npc/001-2-22/peter.txt +++ b/npc/001-2-22/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. diff --git a/npc/001-2-28/plush.txt b/npc/001-2-28/plush.txt index 330258b8..0cba5b2a 100644 --- a/npc/001-2-28/plush.txt +++ b/npc/001-2-28/plush.txt @@ -27,7 +27,7 @@ else { emotion E_HAPPY; - Zeny = Zeny - .@price; + Zeny -= .@price; INN_REGISTER = REDPLUSH_INN; PC_IS_DEAD = false; diff --git a/npc/001-2-9/janus.txt b/npc/001-2-9/janus.txt index 616991a6..6d176615 100644 --- a/npc/001-2-9/janus.txt +++ b/npc/001-2-9/janus.txt @@ -31,7 +31,7 @@ } else { - Zeny = Zeny - .@party_price; + Zeny -= .@party_price; setq General_Janus, 2; skill NV_BASIC, 7, 0; @@ -61,7 +61,7 @@ else { inventoryplace GuildCertification, 1; - Zeny = Zeny - .@guild_price; + Zeny -= .@guild_price; setq General_Janus, 3; getitem GuildCertification, 1; diff --git a/npc/008-2-2/melania.txt b/npc/008-2-2/melania.txt index 57275325..cf02dc90 100644 --- a/npc/008-2-2/melania.txt +++ b/npc/008-2-2/melania.txt @@ -89,7 +89,7 @@ else { emotion E_HAPPY; - Zeny = Zeny - .@price; + Zeny -= .@price; INN_REGISTER = .inn; PC_IS_DEAD = false; diff --git a/npc/008-2-2/melinda.txt b/npc/008-2-2/melinda.txt index 86f26e96..17127656 100644 --- a/npc/008-2-2/melinda.txt +++ b/npc/008-2-2/melinda.txt @@ -47,7 +47,7 @@ switch (select(l("Sure! [Don't tip]"), getinventorylist; if (@inventorylist_count == 100 && countitem("Beer") == 0) goto L_TooMany; - set Zeny, Zeny - 90; + Zeny -= 90; getitem Beer, 1; mes ""; mesn; @@ -59,7 +59,7 @@ switch (select(l("Sure! [Don't tip]"), getinventorylist; if (@inventorylist_count == 100 && countitem("Beer") == 0) goto L_TooMany; - set Zeny, Zeny - 95; + Zeny -= 95; getitem "Beer", 1; mes ""; mesn; @@ -71,7 +71,7 @@ switch (select(l("Sure! [Don't tip]"), getinventorylist; if (@inventorylist_count == 100 && countitem("Beer") == 0) goto L_TooMany; - set Zeny, Zeny - 100; + Zeny -= 100; getitem "Beer", 1; mes ""; mesn; |