PDA

View Full Version : Post-gukta dead frogloks


BWStripes
07-13-2007, 01:32 PM
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

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

CrabClaw
07-13-2007, 08:21 PM
Nice one and thanks! I'll need something like this for the new froggy content I am working on for Angelox's server. :)

cavedude
07-16-2007, 01:35 PM
I added this is PEQ's repo, thank you!