diff options
author | Erik Schilling <ablu.erikschilling@googlemail.com> | 2011-11-15 21:06:07 +0100 |
---|---|---|
committer | Jessica Tölke <jtoelke@mail.upb.de> | 2011-11-16 19:44:03 +0100 |
commit | 206c3720a29b0db6c73ea534bd3f34bacaef17de (patch) | |
tree | 2d0e6a65117ad6ea1185dda7112a6f8679c781a1 /world/map/npc/010-2/chef.txt | |
parent | 0f44cd07642a74953e5b03a10a1593c5d839c7a2 (diff) | |
download | serverdata-206c3720a29b0db6c73ea534bd3f34bacaef17de.tar.gz serverdata-206c3720a29b0db6c73ea534bd3f34bacaef17de.tar.bz2 serverdata-206c3720a29b0db6c73ea534bd3f34bacaef17de.tar.xz serverdata-206c3720a29b0db6c73ea534bd3f34bacaef17de.zip |
Made Constants case-sensitive
Diffstat (limited to 'world/map/npc/010-2/chef.txt')
-rw-r--r-- | world/map/npc/010-2/chef.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/world/map/npc/010-2/chef.txt b/world/map/npc/010-2/chef.txt index 9bc7e468..f5a6e8d5 100644 --- a/world/map/npc/010-2/chef.txt +++ b/world/map/npc/010-2/chef.txt @@ -68,10 +68,10 @@ L_lace_cupcake: goto L_no_orange; if (countitem ("MopoxCurePotion") < 1) goto L_no_potion; - if (zeny < 500) - goto L_no_zeny; + if (Zeny < 500) + goto L_no_Zeny; - set zeny, zeny - 500; + set Zeny, Zeny - 500; delitem "GingerBreadMan", 3; delitem "Orange", 1; delitem "MopoxCurePotion", 1; @@ -106,7 +106,7 @@ L_no_orange: mes "\"Please bring me an orange for these cupcakes.\""; close; -L_no_zeny: +L_no_Zeny: mes "[Chef]"; mes ""; mes "\"No. I need extra ingredients worth 500 GP, and I expect you to pay for those.\""; |