diff options
Diffstat (limited to 'world/map/npc/021-2/bakery.txt')
-rw-r--r-- | world/map/npc/021-2/bakery.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/world/map/npc/021-2/bakery.txt b/world/map/npc/021-2/bakery.txt index 76253c0f..bea20d9e 100644 --- a/world/map/npc/021-2/bakery.txt +++ b/world/map/npc/021-2/bakery.txt @@ -72,12 +72,12 @@ L_lace_chococake: goto L_lacking_ingredients; if (countitem("MopoxCurePotion") < 1) goto L_lacking_ingredients; - if (zeny < 400) - goto L_lacking_zeny; + if (Zeny < 400) + goto L_lacking_Zeny; delitem "MopoxCurePotion", 1; delitem "ChocolateBar", 10; getitem "LacedChocolateCake", 1; - set zeny, zeny - 400; + set Zeny, Zeny - 400; mes "[Riskim]"; mes ""; @@ -91,7 +91,7 @@ L_lace_chococake: mes "\"Here you are. I hope that this works.\""; close; -L_lacking_zeny: +L_lacking_Zeny: mes "[Riskim]"; mes ""; mes "\"I'm sorry, but I have to charge 400 GP.\""; |