Issue information

Issue ID
#4015
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Jan 20, 2010 1:31
Last Post
Hercules Elf Bot
Mar 5, 2012 16:09
Confirmation
N/A

Hercules Elf Bot - Jan 20, 2010 1:31

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

Hi, on the Koshei The inmortal; in the part that the Blacksmith gives you the Iron Shoes exist a problem with some jobs:

-The Iron Shoes 02 (2430) and Iron Shoes 01 (2429); any of those can´t be equiped by the Soul Linker Taekwon Boy and Star Gladiator so those class can´t do the quest.

-Other thing is that if a Ninja or a Gunslinger are doing the quest; they receive Iron Shoes 02 (2430); but the one that those jobs can equip are the Iron Shoes 01 (2429); so meaby have to add on the check:

CODE

       if (BaseClass == Job_Merchant || BaseClass == Job_Swordman || BaseClass == Job_Thief || BaseClass == Job_Archer) {
                getitem 2429,1;
                close;
        }else {
                getitem 2430,1;
                close;
        }


Add this two:

CODE
BaseClass == Job_Ninja || BaseClass == Job_Gunslinger



Thnx ;D