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/009-2/peter.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/009-2/peter.txt')
-rw-r--r-- | world/map/npc/009-2/peter.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/world/map/npc/009-2/peter.txt b/world/map/npc/009-2/peter.txt index 10186d3b..6a97070f 100644 --- a/world/map/npc/009-2/peter.txt +++ b/world/map/npc/009-2/peter.txt @@ -17,7 +17,7 @@ close; L_Peter_Chain_Mail: - if (zeny < 20000) + if (Zeny < 20000) goto L_Peter_NotEnough_Zeny; if (countitem("IronIngot") < 5) goto L_Peter_NotEnough_Ingot; @@ -26,7 +26,7 @@ L_Peter_Chain_Mail: getinventorylist; if (@inventorylist_count == 100) goto L_Peter_TooMany; - set zeny, zeny - 20000; + set Zeny, Zeny - 20000; delitem "IronIngot", 5; getitem "ChainmailShirt", 1; mes "[Peter]"; @@ -34,7 +34,7 @@ L_Peter_Chain_Mail: close; L_Peter_Light_Plate: - if (zeny < 50000) + if (Zeny < 50000) goto L_Peter_NotEnough_Zeny; if (countitem("IronIngot") < 10) goto L_Peter_NotEnough_Ingot; @@ -43,7 +43,7 @@ L_Peter_Light_Plate: getinventorylist; if (@inventorylist_count == 100) goto L_Peter_TooMany; - set zeny, zeny - 50000; + set Zeny, Zeny - 50000; delitem "IronIngot", 10; delitem "Coal", 20; getitem "LightPlatemail", 1; @@ -52,7 +52,7 @@ L_Peter_Light_Plate: close; L_Peter_Warlord_Plate: - if (zeny < 100000) + if (Zeny < 100000) goto L_Peter_NotEnough_Zeny; if (countitem("IronIngot") < 15) goto L_Peter_NotEnough_Ingot; @@ -61,7 +61,7 @@ L_Peter_Warlord_Plate: getinventorylist; if (@inventorylist_count == 100) goto L_Peter_TooMany; - set zeny, zeny - 100000; + set Zeny, Zeny - 100000; delitem "IronIngot", 15; delitem "Coal", 30; getitem "WarlordPlate", 1; |