PDA

View Full Version : Need help on this event


canehdian
04-27-2005, 05:04 PM
ok im trying to make a event like the Vulak ring in ToV, but cant seem to get it to work....and one have ideas of what to do on this, or how to do it?

heres what ive tried so far...



sub EVENT_ITEM
{
if ($itemcount{77948} == 4)
{
quest::shout("....");
quest::settimer(1, 30);
}
}

sub EVENT_TIMER
{
if($timername == 1)
{
quest::spawn(189615,0,0,($x-10),$y,$z);
quest::spawn(189615,0,0,($x+10),$y,$z);
quest::spawn(189615,0,0,($x-20),$y,$z);
quest::settimer(2, 30);
}
else
{
quest::spawn(189616,0,0,($x-10),$y,$z);
quest::spawn(189616,0,0,($x+10),$y,$z);
quest::spawn(189616,0,0,($x-20),$y,$z);
}
}

any ideas?