View Single Post
  #1  
Old 12-18-2004, 03:47 PM
eqaddict56
Fire Beetle
 
Join Date: Nov 2004
Posts: 3
Default prolly something stupid i missed

can sum1 tell me what i did wrong.

-----
sub EVENT_SAY
{
if($text=~/Hail/i)
{
quest::say ("xxx");
}
if($text=~/xxx/i)
{
quest::say("xxx");
}
}

sub EVENT_ITEM
{
if($itemcount{xxxx} == 10)
{
quest::say("xxx");
quest::say("xxx");
quest::summonitem(xxx);
}

if($itemcount{xxx} == 3)
{
quest::say("xxx");
quest::summonitem(xxx);
}
}
----
if($itemcount{xxxx} == 10) - will not accept stacked items. i can change it to 4 then turn them in unstacked and it will work...ty
Reply With Quote