Issue information

Issue ID
#2000
Status
Working as Intended
Severity
None
Started
Hercules Elf Bot
Aug 5, 2008 14:00
Last Post
Hercules Elf Bot
Mar 5, 2012 8:55
Confirmation
N/A

Hercules Elf Bot - Aug 5, 2008 14:00

Originally posted by [b]Yonimelavo[/b]
http://www.eathena.ws/board/index.php?autocom=bugtracker&showbug=2000

Line 1455 at npc/quests/quests_amatsu.txt:
CODE
         if (select("Issue one:Talk to you later") == 1) {
            set zeny,zeny-10000;
            getitem 7160,1; //Lord's_Passable_Ticket
            mes "[Jiro]";
            mes "There you go.";
            mes "Don't lose it this time.";
            close;
         }


Should be:

CODE
         if (select("Issue one:Talk to you later") == 1) {
            if (Zeny < 10000){
               mes "[Jiro]";
               mes "You haven't got the money.";
               mes "Come back when you get 10,000 zenys.";
               close;
            }
            set Zeny,Zeny-10000;
            getitem 7160,1; //Lord's_Passable_Ticket
            mes "[Jiro]";
            mes "There you go.";
            mes "Don't lose it this time.";
            close;
         }


There's the zeny check, and the 'Zeny' typo.

This post has been edited by Yonimelavo: Aug 5 2008, 07:00 AM