From 206c3720a29b0db6c73ea534bd3f34bacaef17de Mon Sep 17 00:00:00 2001 From: Erik Schilling Date: Tue, 15 Nov 2011 21:06:07 +0100 Subject: Made Constants case-sensitive --- world/map/npc/006-1/pachua.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'world/map/npc/006-1/pachua.txt') diff --git a/world/map/npc/006-1/pachua.txt b/world/map/npc/006-1/pachua.txt index fc2b27fd..6f25c42b 100644 --- a/world/map/npc/006-1/pachua.txt +++ b/world/map/npc/006-1/pachua.txt @@ -119,20 +119,20 @@ L_Chaps_store: "On second thought, maybe later.", L_NoDeal; L_BuyChaps: - if (zeny < 10000) goto L_NoMoney; + if (Zeny < 10000) goto L_NoMoney; if (countitem("JeansShorts") < 1) goto L_NoJeans; if (countitem("SnakeSkin") < 10) goto L_NoSkin; - set zeny, zeny - 10000; + set Zeny, Zeny - 10000; delitem "SnakeSkin", 10; delitem "JeansShorts", 1; getitem "JeansChaps", 1; goto L_DealDone; L_BuyCowboy: - if (zeny < 5000) goto L_NoMoney; + if (Zeny < 5000) goto L_NoMoney; if (countitem("FancyHat") < 1) goto L_NoFancy; if (countitem("SnakeSkin") < 2) goto L_NoSkin; - set zeny, zeny - 5000; + set Zeny, Zeny - 5000; delitem "SnakeSkin", 2; delitem "FancyHat", 1; set @temp,rand(2); @@ -158,11 +158,11 @@ L_leather_patch: "That's too expensive!.", L_NoDeal; if (countitem("SnakeSkin") < 1) goto L_NoSkins; - if (zeny < @LEATHER_PATCH_PRICE) goto L_NoMoney; + if (Zeny < @LEATHER_PATCH_PRICE) goto L_NoMoney; getinventorylist; if (@inventorylist_count == 100 && countitem("SnakeSkin") > 1) goto L_TooMany; - set zeny, zeny - @LEATHER_PATCH_PRICE; + set Zeny, Zeny - @LEATHER_PATCH_PRICE; delitem "SnakeSkin", 1; getitem "LeatherPatch", 1; goto L_DealDone; -- cgit v1.2.3-60-g2f50