View Single Post
  #5  
Old 10-28-2012, 04:42 PM
Dunge0nMastr
Hill Giant
 
Join Date: Oct 2002
Location: Rockville, MD
Posts: 124
Default

ahh, the regular lords/ladys from ToV are in their normal spawn points and arent part of the event. they need to be killed in order to trigger the event.

as shown within:

Code:
#Thylex of Veeshan
#New Ring Event to spawn Vulak
#When killed starts event

sub EVENT_SPAWN {
quest::modifynpcstat("special_attacks", "ABHSERFTQUMCNIDf");
$counter = 0;
}

sub EVENT_SIGNAL {
my $globalname = "VulakRingEvent";
if ($signal == 1) {
	$counter += 1;
if (!defined $qglobals{$globalname} && ($counter == 6)) {
		quest::spawn2(124171,0,0,$x,$y,$z,$h);
		quest::depopall(124000);
		}
	}
}
each time the lords/ladies die, they send a signal to the npc above (untargetable thylex) when 6 signals are received, then the event is able to be started, assming the event hasnt been done in the alst 6 hours, looking @ it i need to set a else statement there to keep the counter @ 0, (yay for editing while on the run!) but the drgaons like Lady N and such arent part of the actual ring, if you look @ the event tracker ive commented what mobs are part of each wave.
__________________
Bront -Server Admin/Owner and Lead Quest Dev for Kildrukaun's Prophecy
http://kpemu.com/
Reply With Quote