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/008-1/diryn.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/008-1/diryn.txt')
-rw-r--r-- | world/map/npc/008-1/diryn.txt | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/world/map/npc/008-1/diryn.txt b/world/map/npc/008-1/diryn.txt index d4d3698e..b238b497 100644 --- a/world/map/npc/008-1/diryn.txt +++ b/world/map/npc/008-1/diryn.txt @@ -35,50 +35,50 @@ L_Diryn_Yes: goto L_Clearvars; L_Diryn_Druid_Tree: - if (zeny < @cost_druidtree) goto L_NoMoney; + if (Zeny < @cost_druidtree) goto L_NoMoney; mes "[Diryn]"; mes "\"Be fearless!\""; - set zeny, zeny - @cost_druidtree; + set Zeny, Zeny - @cost_druidtree; warp "005-1.gat",73,36; goto L_Clearvars; L_Diryn_Graveyard: - if (zeny < @cost_graveyard) goto L_NoMoney; + if (Zeny < @cost_graveyard) goto L_NoMoney; mes "[Diryn]"; mes "\"Be fearless!\""; - set zeny, zeny - @cost_graveyard; + set Zeny, Zeny - @cost_graveyard; warp "027-1.gat",70,85; goto L_Clearvars; L_Diryn_Magic_House: - if (zeny < @cost_magichouse) goto L_NoMoney; + if (Zeny < @cost_magichouse) goto L_NoMoney; mes "[Diryn]"; mes "\"Be fearless!\""; - set zeny, zeny - @cost_magichouse; + set Zeny, Zeny - @cost_magichouse; warp "013-1.gat",45,92; goto L_Clearvars; L_Diryn_Terranite: - if (zeny < @cost_terranitecave) goto L_NoMoney; + if (Zeny < @cost_terranitecave) goto L_NoMoney; mes "[Diryn]"; mes "\"Be fearless!\""; - set zeny, zeny - @cost_terranitecave; + set Zeny, Zeny - @cost_terranitecave; warp "012-3.gat",445,65; goto L_Clearvars; L_Diryn_Tulimshar: - if (zeny < @cost_tulimshar) goto L_NoMoney; + if (Zeny < @cost_tulimshar) goto L_NoMoney; mes "[Diryn]"; mes "\"Be fearless!\""; - set zeny, zeny - @cost_tulimshar; + set Zeny, Zeny - @cost_tulimshar; warp "001-1.gat",44,70; goto L_Clearvars; L_Diryn_Nivalis: - if (zeny < @cost_nivalis) goto L_NoMoney; + if (Zeny < @cost_nivalis) goto L_NoMoney; mes "[Diryn]"; mes "\"Be fearless!\""; - set zeny, zeny - @cost_nivalis; + set Zeny, Zeny - @cost_nivalis; warp "020-1.gat",71,100; goto L_Clearvars; |