mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
17 lines
680 B
Raku
17 lines
680 B
Raku
sub EVENT_SPAWN {
|
|
quest::shout("For the honor of Rallos Zek! Attack!");
|
|
quest::spawn2(116553, 0,0, ($x + 150), ($y + 15), $z, $h); # NPC: Ry`Gorr_Basher
|
|
quest::spawn2(116553, 0,0, ($x + 100), ($y + 75), $z, $h); # NPC: Ry`Gorr_Basher
|
|
quest::spawn2(116553, 0,0, ($x + 150) , ($y - 15), $z, $h); # NPC: Ry`Gorr_Basher
|
|
quest::spawn2(116553, 0,0, ($x + 100) , ($y - 75), $z, $h); # NPC: Ry`Gorr_Basher
|
|
quest::spawn2(116553, 0,0, ($x - 10), $y, $z, $h); # NPC: Ry`Gorr_Basher
|
|
#quest::spawn2(KROMRIFF SOLIDER ID, 0,0, -2089, 98, 147, 58);
|
|
#quest::spawn2(KROMRIFF SOLIDER ID, 0,0, -2112, 98, 147, 58);
|
|
|
|
}
|
|
|
|
sub EVENT_DEATH_COMPLETE {
|
|
|
|
quest::signal(116119, 0); # NPC: Corbin_Blackwell
|
|
|
|
}
|