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/functions/ferry.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/functions/ferry.txt')
-rw-r--r-- | world/map/npc/functions/ferry.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/world/map/npc/functions/ferry.txt b/world/map/npc/functions/ferry.txt index 50ad9038..26da871d 100644 --- a/world/map/npc/functions/ferry.txt +++ b/world/map/npc/functions/ferry.txt @@ -33,30 +33,30 @@ L_MenuWithCandor: L_Tulimshar: if (@loc == DOCK_tulimshar) goto L_AlreadyThere; - if (zeny < @cost_tulimshar) + if (Zeny < @cost_tulimshar) goto L_NotEnoughGP; - set zeny, zeny - @cost_tulimshar; + set Zeny, Zeny - @cost_tulimshar; warp "022-1.gat", 76, 72; close; L_Hurnscald: if (@loc == DOCK_hurnscald) goto L_AlreadyThere; - if (zeny < @cost_hurnscald) + if (Zeny < @cost_hurnscald) goto L_NotEnoughGP; - set zeny, zeny - @cost_hurnscald; + set Zeny, Zeny - @cost_hurnscald; warp "008-1.gat", 137, 64; close; L_Candor: if (@loc == DOCK_candor) goto L_AlreadyThere; - if (zeny < @cost_candor) + if (Zeny < @cost_candor) goto L_NotEnoughGP; - set zeny, zeny - @cost_candor; + set Zeny, Zeny - @cost_candor; warp "029-1.gat", 25, 37; close; |