View Single Post
  #16  
Old 08-03-2008, 10:07 AM
Andrew80k
Dragon
 
Join Date: Feb 2007
Posts: 659
Default

Quote:
Originally Posted by Andrew80k View Post
Marianna.pl
This one is mostly right, but I will need to update it once I get the turn in dialog from the rotted shark meat. You can put it in or wait if you want.
Fixed it. After working for about a month with no Rotten Shark Meat, I get 2 in a row.

Code:
#########################################################
# Marianna
# Zone:  Rathe Mountains
# Quest: Vambraces of Ro
# Author: Unknown
# Updated:  Andrew80k
#########################################################
sub EVENT_SAY { 
   if($text=~/Hail/i){
      quest::say("Rodcet Nife welcomes you into our noble camp.  I am the keeper of the [Vambraces of Ro].");
   }
   if($text=~/vambraces of ro/i){
      if($faction <=5){
         quest::say("The mold will be offered to you when you have performed a task for the Temple of Life.  The oceans near our home are host to a plague..  the plague sharks!!  They have been infected with a deadly malady which has been turning up in the Qeynos Hills.  Kill the sharks and bring me two of their rotten shark portions as proof.");
      } else {
         quest::say("Foolish person!! The word is out amongst the followers of the Prime Healer not to trust you."); 
      }
}
sub EVENT_ITEM {
   if(plugin::check_handin(\%itemcount,12310=>2) && $faction <=5 ) {
      quest::say("You now own a mold for the Vambracers of Ro.  Go and ask Thomas of [Lord Searfire] for the final component.");  
      quest::summonitem(12300);
      quest::faction("183","1"); #Knights of Thunder
      quest::faction("21","-1"); # Bloodsabers
      quest::faction("257","1"); # Priests of Life
      quest::faction("135","1"); # Guards of Qeynos
      quest::faction("9","1"); # Antonius Bayle
   } elsif (plugin::check_handin(\%itemcount,12310=>1) && $faction <=5) {
      quest::say("I said two portions of rotten shark meat.");
      plugin::return_items(\%itemcount);
   }
   plugin::return_items(\%itemcount);
}
#END of FILE Zone:rathemtn  ID:50114 -- Marianna
Reply With Quote