mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
29 lines
594 B
Raku
29 lines
594 B
Raku
sub EVENT_SPAWN
|
|
{
|
|
quest::settimer("wave", 45);
|
|
}
|
|
|
|
sub EVENT_TIMER
|
|
{
|
|
if($timer eq "wave")
|
|
{
|
|
quest::settimer("bot1", 1);
|
|
quest::settimer("bot2", 4);
|
|
quest::settimer("bot3", 8);
|
|
}
|
|
elsif($timer eq "bot1")
|
|
{
|
|
quest::stoptimer("bot1");
|
|
quest::spawn2(365029, 0, 0, 140, -606, -47, 34); # NPC: XVIII_Assault_Bot
|
|
}
|
|
elsif($timer eq "bot2")
|
|
{
|
|
quest::stoptimer("bot2");
|
|
quest::spawn2(365029, 0, 0, 140, -606, -47, 34); # NPC: XVIII_Assault_Bot
|
|
}
|
|
elsif($timer eq "bot3")
|
|
{
|
|
quest::stoptimer("bot3");
|
|
quest::spawn2(365029, 0, 0, 140, -606, -47, 34); # NPC: XVIII_Assault_Bot
|
|
}
|
|
}
|