View Single Post
  #7  
Old 09-09-2012, 10:32 PM
Randymarsh9
Dragon
 
Join Date: Dec 2007
Posts: 658
Default

You could make an invisible npc with a quest like
sub EVENT_SPAWN{
quest::signalwith (xxxxx, quest:: ChooseRandom(1, 2,3));
}

Then spawn an npc with id xxxxx in the same instance with a quest like
sub EVENT_SIGNAL{
if ($signal == 1){
quest:: spawn2(...);
}
....

and do that for each signal
Reply With Quote