Issue information

Issue ID
#4719
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Jan 19, 2011 1:58
Last Post
Hercules Elf Bot
Mar 5, 2012 15:39
Confirmation
N/A

Hercules Elf Bot - Jan 19, 2011 1:58

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

Error in delitem id 0 by getarg(x) = 0

CODE
Error]: script:delitem: unknown item "0".
[Debug]: Source (NPC): Chungwolmang at payon (135,320)


FILE : npc\quests\newgears\2006_headgear.txt

Find
CODE
        delitem getarg(1),getarg(2);
        delitem getarg(3),getarg(4);
        delitem getarg(5),getarg(6);
        delitem getarg(7),getarg(8);


replace:
CODE
        if (getarg(1) && getarg(2)) { delitem getarg(1),getarg(2); }
        if (getarg(3) && getarg(4)) { delitem getarg(3),getarg(4); }
        if (getarg(5) && getarg(6)) { delitem getarg(5),getarg(6); }
        if (getarg(7) && getarg(8)) { delitem getarg(7),getarg(8); }