diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-10-21 15:13:16 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-10-21 15:13:16 -0300 |
commit | fbd967dd5953385370b3ec4a2064b23f40d3d19d (patch) | |
tree | af4035c0d1500cd66816d6fcd1e91e922569e396 /npc/008-2-2 | |
parent | 3259c003748616ed319d2260604fab0b1f18d701 (diff) | |
parent | 1959b79d649d7abb021c536281fadf88cd43d974 (diff) | |
download | serverdata-jesusalva/newperm.tar.gz serverdata-jesusalva/newperm.tar.bz2 serverdata-jesusalva/newperm.tar.xz serverdata-jesusalva/newperm.zip |
Merge branch 'master' into jesusalva/newpermjesusalva/newperm
Diffstat (limited to 'npc/008-2-2')
-rw-r--r-- | npc/008-2-2/melania.txt | 2 | ||||
-rw-r--r-- | npc/008-2-2/melinda.txt | 6 |
2 files changed, 4 insertions, 4 deletions
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; |