peq-quests/mistythicket/Ember.pl
2015-03-14 16:18:39 -04:00

18 lines
No EOL
414 B
Perl

sub EVENT_SPAWN {
quest::settimer("follow", 1);
}
sub EVENT_TIMER{
if ($timer eq "follow"){
my $OpponentID = 415049;
my $getmobbynpctype = $entity_list->GetMobByNpcTypeID($OpponentID);
my $follow_target = $getmobbynpctype->GetID();
quest::follow($follow_target,10);
quest::stoptimer("follow");
}
}
sub EVENT_SIGNAL{
quest::emote("clicks at Blixkin happily.");
quest::signal(415049);
}