EQEmulator Forums

EQEmulator Forums (https://www.eqemulator.org/forums/index.php)
-   Quests::Completed (https://www.eqemulator.org/forums/forumdisplay.php?f=633)
-   -   WW - Slain Dragons (https://www.eqemulator.org/forums/showthread.php?t=23455)

John Adams 08-10-2007 06:05 PM

WW - Slain Dragons
 
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
Code:

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.


All times are GMT -4. The time now is 10:34 PM.

Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.