View Single Post
  #12  
Old 07-22-2004, 03:41 AM
Sensu-Bean
Sarnak
 
Join Date: Jul 2004
Posts: 36
Default Re: The road to the Celestial Fists

Part 7 - Celestial Fists - Part 5

Code:
#Zone - Plane of Sky
#Type - Quest
#Class - Monk
#Mob - a Presence

sub EVENT_ITEM 
{ 
 if($itemcount{1684} == 1) 
 {
 quest::say("Hahaha! That dolt Eejag fell to the likes of you? Im not surprised. So, I guess this means you are here to challenge me. Normally, I wouldnt waste my time, but since you have defeated my younger brother, I suppose Im obligated.");
 quest::depop(); 
 quest::spawn(6336,0,0,0,0,0); #need x,y,z cords. spawns gwan. gwan and a presence spawn in the same place. 
 }
}
next

Code:
#Zone - Plane of Sky
#Type - Quest
#Class - Monk
#Mob - Gwan

sub EVENT_SPAWN
{
 {
 quest::say("Im ready when you are, $name , tell me when you are [prepared].");
 }
if($text=~/I am prepared/i)
 {
 quest::attack("$name"); 
 }
}

sub EVENT_DEATH
{
 {
 quest::itemsummon(1685);
 quest::emote("lets out one last, fustrated breath and gasps");
 quest::say("Trunt! Prepare yourself!");
 quest::depop();
 quest::spawn(6335,0,0,0,0,0); #need x,y,z cords. respawns 'a Presence'. 
 }
}
Reply With Quote