View Single Post
  #4  
Old 10-17-2011, 06:10 PM
bodi
Hill Giant
 
Join Date: May 2010
Posts: 105
Default

ok, derision's works, I think I need 6 numbers in the spawn loc instead of 3 to spawn the fabled, if I add in 0, 0, 0 to the back of the spawn loc it adds him under the world.

Code:
sub EVENT_DEATH
{
	my $random_result = int(rand(100));
	my $a=63096; #npc - Fabled Garanel Rucksif
	if($random_result<70)
	{
		quest::say("Spawning Fabled");
		quest::shout ("I will be Avenged Scoundrel!");
		quest::spawn2($a, 485, 147, -33);
	}
	else
	{
		quest::say("No spawn");
	}
}
And if you know how I can make him emote ONLY the first time he is killed, that would be sick too. (for "SERVER FIRST" script)
Reply With Quote