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 {
}