Issue information

Issue ID
#2511
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Dec 4, 2008 5:52
Last Post
Hercules Elf Bot
Mar 5, 2012 9:25
Confirmation
N/A

Hercules Elf Bot - Dec 4, 2008 5:52

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

.../npc/quests/Kiel_Hyre_Quest.txt

You get the key when KielHyreQuest = 58 (line 5471)
set KielHyreQuest,58;
getitem 7498,1; //Rosimier_Key
Then the key is deleted when KielHyreQuest = 60 (line 5533)
set KielHyreQuest,60;
delitem 7498,1; //Rosimier_Key
Then the script tries to delete the item again when KielHyreQuest = 70 (line 4462)
set KielHyreQuest,70;
delitem 7498,1; //Rosimier_Key

Either remove the second 'delitem' or
change it to: delitem 7498,countitem(7498); //Rosimier_Key