View Single Post
  #1  
Old 08-10-2007, 06:05 PM
John Adams
Demi-God
 
Join Date: Jul 2006
Posts: 1,552
Default 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
Reply With Quote