Issue information

Issue ID
#2763
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Feb 13, 2009 13:16
Last Post
Hercules Elf Bot
Mar 5, 2012 9:46
Confirmation
N/A

Hercules Elf Bot - Feb 13, 2009 13:16

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

Just a tiny issue:
CODE
        mes "[Airship Staff]";
        mes "The Airship boarding fee";
        mes "is 1,200 zeny, but if you've";
        mes "got a Free Ticket for Airship,";
        mes "the fee will be waived. Will";
        mes "you board the Airship?";
        next;
        if (select("Yes:No") == 1) {
            if(countitem(7311) > 0) {
                delitem 7311,1;
                warp "airplane_01",224,64;
                close;
            }
            if(Zeny > 1200) {
                set Zeny, Zeny - 1200;
                warp "airplane_01",224,64;
                close;
            }
            mes "[Airship Staff]";
            mes "You don't have enough zeny.";
            close;

In this case, if you have 1200z, it will tell you you don't have enough zeny. This applies for Izlude and Hugel, although it is correct in Rachel (Zeny >= 1200).