View Single Post
  #5  
Old 11-08-2010, 03:42 PM
Templus
Sarnak
 
Join Date: Oct 2010
Location: NYC
Posts: 39
Default

I modified the felwithe paladin guildmaster. changed him all around and renamed him Lord_Xeros. I copied his quest file raneming it Lord_Xeros.pl and here it is: (still not responding to hails)

Lord_Xeros.pl
Code:
sub EVENT_SAY {
if($text=~/hail/i){
quest::say("Aren't you a little short to be a $race?");
#$npc->CastSpell( '345',$userid );
}

sub EVENT_ITEM {
 if(plugin::check_handin(\%itemcount, 18781 => 1)){
        quest::say("Greetings. young paladin!  I am Master Tynkale of the Cleri$
        quest::summonitem("13591");
        quest::faction("105","1");
 }
 if (plugin::check_handin(\%itemcount,  13351 => 1)) {
   quest::say("So you have proven yourself to be a great slayer of beasts.Now i$
   quest::faction( 8, 10);
   quest::faction( 43, 10);
   quest::faction( 178, 10);
   quest::exp(150);
 }
Reply With Quote