Part 7 - Celestial Fists - Part 4
Code:
#Zone - Lavastorm
#Type - Quest
#Class - Monk
#Mob - a Fire Sprite
sub EVENT_SAY
{
if($text=~/Hail, $mname/i)
{
quest::emote("ignores you.");
}
if($text=~/I challenge Eejag/i)
{
quest::depop();
quest::spawn(6517,0,0,1061,248,-132);
}
}
next
Code:
#Zone - Lavastorm
#Type - Quest
#Class - Monk
#Mob - Eejag
sub EVENT_SPAWN
{
{
quest::shout("What imbecile dares challenge a Celestial Fist?! Do you even know who you are challenging? HA! You are nothing but an insect! I will enjoy crushing you, I have not charred the flesh of an idiot in decades! If you truly wish to fight me, the battle shall be held in my ouwn element. Come, challenger, come down to the pits of flowing fire.");
quest::attack("$name");
}
}
sub EVENT_DEATH
{
{
quest::itemsummon(1684);
quest::depop();
quest::spawn(5149,0,0,215,-986,4);
}
}