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
|