peq-quests/tutorialb/a_trampled_kobold.pl
2015-03-14 16:18:39 -04:00

22 lines
No EOL
295 B
Perl

# Trampled Kobolds
# They lie on the ground and don't attack
sub EVENT_SPAWN
{
quest::settimer("try_sit", 5);
}
sub EVENT_TIMER
{
if($timer eq "try_sit")
{
$npc->SetAppearance(3);
}
}
sub EVENT_DEATH_COMPLETE
{
quest::stoptimer("try_sit");
}
# EOF zone: Tutorialb