View Single Post
  #8  
Old 12-17-2010, 07:00 PM
Astal
Hill Giant
 
Join Date: Mar 2010
Posts: 236
Default

Hey am I missing something? Smaug is only casting the one type of spell 21439 at both events.

Instead of 21440.

If i change it to 21440 on top and 21439 he will only cast 21440.

Code:
#Smaug

sub EVENT_SPAWN {
	quest::setnexthpevent(98);
}

sub EVENT_HP {

	if($hpevent <= 98)
	{
	quest::shout("Roar Mother !!");
	plugin::CastOnTarget(21439);
	quest::setnexthpevent(95);
	}
	
	if($hpevent <= 95)
	{
	quest::shout("Roar Mother !!");
	plugin::CastOnTarget(21440);
	}
	
}

sub EVENT_AGGRO {

}
Reply With Quote