View Single Post
  #1  
Old 04-27-2005, 05:04 PM
canehdian
Sarnak
 
Join Date: Nov 2004
Location: Windsor, Ontario, Canada
Posts: 59
Default Need help on this event

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?
__________________
From The Biggest tool ever

Server Op of A server in development! =D

formerly A fire inside
Reply With Quote