Part 7 - Celestial Fists - Part 10 (Final Fight)
Code:
#Zone - Lake of Ill Omen
#Type - Quest
#Class - Monk
#Mob - Vorash
sub EVENT_SPAWN
{
{
quest::attack("$name");
}
}
sub EVENT_DEATH
{
{
quest::say("Foolish mortal! You think you have defeated me? Now, witness the true power of Rallos Zek!");
quest::spawn(6519,0,0,0,0,0);
#config x,y,z to spawn Xenevorash center of platform where Astral Projection died.
}
}
next - use the dupe npc-id you created for deep from my last post.
Code:
#0000.pl
#Zone - Lake of Ill Omen
#Type - Quest
#Class - Monk
#Mob - Deep
sub EVENT_SPAWN
{
{
quest::attack("$name");
}
}
next
Code:
#Zone - Lake of Ill Omen
#Type - Quest
#Class - Monk
#Mob - Xenevorash
sub EVENT_SPAWN
{
{
quest::attack("$name");
}
}
sub EVENT_DEATH
{
{
quest::say("Grraaaagghhhh!! NOT..POSSIBLE!");
quest::itemsummon(1688);
}
}
Note: The final hand in happens with Kaiaren.
Quote:
Part 7 - Celestial Fists - Part 3
Code:
sub EVENT_ITEM
{
if($itemcount{1688} && $itemcount{1689} == 1)
{
quest::emote("bows his head and breathes a long sigh as if relieved of a great weight. He then looks up at you.");
quest::say("I honestly did not believe you could have defeated Vorash. Even though he sought nothing but war and bloodshed,it is a life nonetheless and we must mourn him. I will sew these fangs into magical fist wraps and they shall be yours. Remember Xenevorash. A purpose can be found for every situation and individual. To achieve perfection is to perceive this truth.");
quest::summonitem(10652);
}
}
|
and can finish the epic by turning in the last two items to either the 'mad' or the 'trueform' of kaiaren.
_Sensu-Bean