mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
11 lines
291 B
Raku
11 lines
291 B
Raku
sub EVENT_WAYPOINT_ARRIVE{
|
|
if(($wp==2) || ($wp==4) || ($wp==6)){
|
|
quest::say("condition report soldier!");
|
|
quest::signalwith(22066,1,1); # NPC: Guard_Reskin
|
|
}
|
|
if(($wp==3) || ($wp==7)){
|
|
quest::say("condition report soldier!");
|
|
quest::signalwith(22035,1,1); # NPC: Guard_Tolus
|
|
}
|
|
}
|
|
|