View Single Post
  #8  
Old 08-02-2008, 06:32 PM
Andrew80k
Dragon
 
Join Date: Feb 2007
Posts: 659
Default Rathe Mountains: David

David.pl

Code:
#########################################################
# David
# Zone:  Rathe Mountains
# Quest:  Bracers of Ro
# Author: Unknown
# Updated:  Andrew80k
#########################################################
sub EVENT_SAY { 

   if($text=~/Hail/i){
      quest::say("I, the keeper of the [Bracers of Ro],  welcome you.  Come and rest within our camp.  You have nothing to fear while such righteous might is gathered.");
   }
   if($text=~/bracers of ro/i){
      if ($faction <= 5) {
         quest::say("When you can swim the waters of Rathe and return two goblin nets from the elusive goblin net masters. then you will be rewarded the bracer mold.");
      } else {
         quest::say("We, the Deepwater Knights, know of your vile ways. You had best leave while you can."); 
      }
   }
}
sub EVENT_ITEM { 
   if(plugin::check_handin(\%itemcount,12311 => 2) && $faction <= 5) {
     quest::say("You have done well. Take the mold for the bracer.  Go forth to speak with Thomas of [Lord Searfire].  Then all components shall be known.");
     quest::summonitem("12301");
     quest::faction("45","1");
     quest::faction("79","1");
     quest::faction("143","-1"); 
   } elsif (plugin::check_handin(\%itemcount,12311=>1) && $faction <= 5) {
     quest::say("Two Deepwater goblin nets are required.");
     quest::return_items(\%itemcount);
   }
   quest::return_items(\%itemcount);
}
#END of FILE Zone:rathemtn  ID:50108 -- David
Reply With Quote