diff options
author | Taylor Locke <kisuka@kisuka.com> | 2013-11-25 06:03:06 -0800 |
---|---|---|
committer | Taylor Locke <kisuka@kisuka.com> | 2013-11-25 06:03:06 -0800 |
commit | 4faa0ec9df7067cee3eb1c1953fccc6c2f842179 (patch) | |
tree | 2ad86f1414ff35cf96a8ec5577a978d533072750 /npc/events/halloween_2006.txt | |
parent | 463cbc94ea4124a35ad5bf3222b510ad979d8805 (diff) | |
download | hercules-4faa0ec9df7067cee3eb1c1953fccc6c2f842179.tar.gz hercules-4faa0ec9df7067cee3eb1c1953fccc6c2f842179.tar.bz2 hercules-4faa0ec9df7067cee3eb1c1953fccc6c2f842179.tar.xz hercules-4faa0ec9df7067cee3eb1c1953fccc6c2f842179.zip |
Cleaned up Zeny manipulation in scripts.
Diffstat (limited to 'npc/events/halloween_2006.txt')
-rw-r--r-- | npc/events/halloween_2006.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/events/halloween_2006.txt b/npc/events/halloween_2006.txt index 5bc7c3332..24a7c5483 100644 --- a/npc/events/halloween_2006.txt +++ b/npc/events/halloween_2006.txt @@ -517,7 +517,7 @@ nif_fild01,165,115,3 script Chicken Masta#06_hw 4_M_NFDEADMAN2,{ mes "[Chicken Masta]"; mes "Thanks."; mes "Here are the eggs."; - set Zeny,Zeny-2000; + Zeny -=2000; set halloween, 102; getitem 574,2; //Egg close; @@ -533,7 +533,7 @@ nif_fild01,165,115,3 script Chicken Masta#06_hw 4_M_NFDEADMAN2,{ mes "[Chicken Masta]"; mes "Thanks."; mes "Here are the eggs."; - set Zeny,Zeny-1000; + Zeny -=1000; set halloween, 102; getitem 574,1; //Egg close; @@ -624,7 +624,7 @@ nif_fild01,165,115,3 script Chicken Masta#06_hw 4_M_NFDEADMAN2,{ mes "Here you are."; mes "But no more."; mes "If you want more eggs, find me more chickens."; - set Zeny,Zeny-@hw_egg; + Zeny -=@hw_egg; getitem 574, @input;//Egg set halloween, 102; close; |