Thread: Magician Epic
View Single Post
  #5  
Old 09-15-2009, 08:40 PM
provocating's Avatar
provocating
Demi-God
 
Join Date: Nov 2007
Posts: 2,175
Default

He is not supposed to be there. He is spawned from killing garbage mobs in the zone. He is really more of an event than a spawn group. Look in your quest folder for South Karana for a file called #a lioness.pl

Code:
#Quillmane spawn^M^M
#npc - a_lioness - randomly spawns 1 of 3 Quilmane locs around the zone)^M^M
#zone - SouthKarana^M^M
#Angelox^M^M
^M^M
sub EVENT_DEATH{^M^M
 my $random_result = int(rand(100));^M^M
 my $a=14139; #npc - Quillmane^M^M
 if(($random_result<5) && ($quill==2)){^M^M
   #quest::say("Spawning Quillmane1");^M^M
   quest::spawn2($a,101,0,3210,-6821.6,38.3,193.3);^M^M
   quest::delglobal("quill");^M^M
   quest::setglobal("quill",3,3,"F");^M^M
   $quill=undef;^M^M
  }elsif(($random_result>=5) && ($random_result<10)&& ($quill==2)){^M^M
     #quest::say("Spawning Quillmane2");^M^M
     quest::spawn2($a,102,0,-2761.8,-6076,0.7,4.0);^M^M
     quest::delglobal("quill");^M^M
     quest::setglobal("quill",3,3,"F");^M^M
     $quill=undef;^M^M
  }elsif(($random_result>=10) && ($random_result<15)&& ($quill==2)){^M^M
     #quest::say("Spawning Quillmane3");^M^M
     quest::spawn2($a,103,0,-2333.8,1296.5,38.7,247.3);^M^M
     quest::delglobal("quill");^M^M
     quest::setglobal("quill",3,3,"F");^M^M
     $quill=undef;^M^M
  }else{^M^M
    #quest::say("No spawn");^M^M
  };^M^M
};
Reply With Quote