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

Part 7 - Celestial Fists - Part 6

Code:
#Zone - Nurga
#Type - Quest
#Class - Monk
#Mob - a Sleeping Ogre

sub EVENT_SAY
{
if($text=~/Hail, $mname/i)
 {
 quest::emote("yawns, and utters some gibberish, then falls back asleep");
 }
}  

sub EVENT_ITEM 
{ 
 if($itemcount{1685} == 1) 
 {
 quest::say("Your path of wanton destruction ends here, $name . Gwan and Eejag were impatient and hot-headed. You will not defeat me, for I have the patience and perseverance of stone, unlike the children you have beated before me.");
 quest::depop();
 quest::spawn(6518,0,0,1160,7696,0); #when triggered spawns Trunt where 'a Sleeping Ogre' stands.
 }
}
next

Code:
#Zone - Nurga
#Type - Quest
#Class - Monk
#Mob - Trunt

sub EVENT_SPAWN
{
 {
 quest::attack("$name"); 
 }
}

sub EVENT_DEATH
{
 {
 quest::itemsummon(1686);
 quest::depop();
 quest::spawn(5321,0,0,1160,7696,0); #when triggered respawns 'a Sleeping Ogre' where Trunt died.
 }
}
Part 7 - Celestial Fists - Part 7

Code:
#Zone - Lake Rathe
#Type - Quest
#Class - Monk
#Mob - Deep

sub EVENT_ITEM 
{ 
 if($itemcount{1686} == 1) 
 {
 quest::emote("slowly opens her eyes and looks up at you. She stares at you a long while and then closes her eyes and lowers her head again.");
 quest::say("Very well, $name, if you wish death so greatly, we will be happy to oblige. My master projects part of himself in the wilder lands known as the Overthere. He has granted you an audience. Find him and show him the head of our earth brother. At that point, we will discuss how we will end your life.");
 quest::summonitem(1686);
 quest::depop();
 }
}
Reply With Quote