hm for some reason my npc is just eating my items, was wondering if anyone could spot my error
Quote:
sub EVENT_SAY
{
if ($text =~/Hail/i){
quest::say ("Give me all four of their heads, and I shall reward you."); }
}
sub EVENT_ITEM
{
if(($itemcount{2432} == 1) && ($itemcount{2433} == 1) && ($itemcount{2434} ==1 ) && ($itemcount{2435} ==1))
{
quest::say("Well what do we have here? A job well done indeed!");
quest::spawn2(1247,0,0,$x-20,$y+1,$z,$h);
}
}
|