![]() |
|
#11
|
|||
|
We, once again, encountered this respawn bug. Spiroc Lord only respawned once, showing that the script is in place for his respawn when Guardian is up, and that it somehow subsequently breaks.
The following describes work by Aeolwind. Is this still in place? Was this changed? http://forums.axclassic.com/viewtopi...=460&view=next ------------------------------------------------ Here is the code I used for Sky and the spiroc lord. This is on the guardian. Code: Code:
#The Spiroc Guardian should respawn the Lord if he is alive
sub EVENT_SIGNAL{
if ($signal eq 1){
#quest::shout("I got signal!");
quest::unique_spawn(71012,0,0,760,-243,408.6,100.5);
}
}
Code:
sub EVENT_DEATH
{
$x = $npc->GetX();
$y = $npc->GetY();
$z = $npc->GetZ();
$sirran= undef;
quest::setglobal("sirran",5,3,"M10");
quest::signalwith(71013,1,0);
quest::unique_spawn(71058,0,0,$x,$y,$z);
}
--------------------------
__________________
Ravhin - 56 Gnome Necro (Project 1999, Retired) <Divinity>
Contributor: Project 1999 Wiki Ravhin incedo'Marduk - 60 Human Paladin (Live on E'ci, 1999-2001) <Destinati Conquerers> | ||
|
|
|||
|
|