mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
18 lines
No EOL
414 B
Perl
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);
|
|
} |