View Single Post
  #1  
Old 07-13-2007, 01:32 PM
BWStripes
Sarnak
 
Join Date: Jun 2007
Location: Finland
Posts: 65
Post Post-gukta dead frogloks

I know its simple...thanks to Crabclaw for this idea - it makes the fallen frogloks in innothule swamp appear dead as they should be!

File: quests/innothule/a_fallen_froglog.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: innothule  -- a_fallen_froglok
Reply With Quote