View Single Post
  #1  
Old 07-18-2006, 04:13 AM
Angelox
AX Classic Developer
 
Join Date: May 2006
Location: filler
Posts: 2,049
Default Najena's Rathyl's Incarnate fix

Again, I don't remember exactly what the quest::say text was - you need to change $a = to whatever your Rathyl's_Incarnate ID is.

Code:
# Spawns Rathyl's_Incarnate on Rathyl's death
# Angelox

sub EVENT_DEATH
{
 my $a = 44104;
 my $x = $npc->GetX();
 my $y = $npc->GetY();
 my $z = $npc->GetZ(); 
 my $h = $npc->GetHeading();
  {
  quest::say("HA! You thought you killed me?");
  quest::spawn2($a,0,0,$x,$y,$z,$h);
  }
}
# EOF zone: najena NPC: Rathyl
Note : Rathyl's_Incarnate drops "Hollowed Bone Bracers" and Rathyl's drop should also include the "Travelers Pack " (not included in his PEQ loot).

Last edited by Angelox; 07-18-2006 at 12:14 PM.. Reason: typo
Reply With Quote