PDA

View Full Version : WW - Slain Dragons


John Adams
08-10-2007, 06:05 PM
Stealing from BWStripes fallen frogloks idea, here's a fix for making those western wastes slain dragons lay down quietly.

Zone: westwastes
File: a_slain_dragon.pl
sub EVENT_SPAWN {
quest::settimer(1,1);
}

sub EVENT_TIMER {
if($timer eq "1"){
$npc->SetAppearance(3);
quest::stoptimer(1);
}
}

#END of FILE Zone: westwastes -- a_slain_dragon

gernblan
08-14-2007, 05:17 AM
This should work too...

sub EVENT_SPAWN {
$npc->SetAppearance(3);
}

John Adams
08-15-2007, 06:39 AM
That's what was there, but it didn't work. I figured the sleep timer gave the dragons a chance to spawn before being told to play dead.

gernblan
08-17-2007, 07:26 AM
You're right. Tested it.. there does need to be a delay. 1 does work.