18 lines
262 B
Plaintext
18 lines
262 B
Plaintext
|
// Perform some action (AG1) at the maneuver node.
|
||
|
|
||
|
@lazyglobal off.
|
||
|
|
||
|
set done to false.
|
||
|
|
||
|
if not HASNODE {
|
||
|
print "Create a node to initiate NodeAction mode.".
|
||
|
wait until HASNODE.
|
||
|
}
|
||
|
|
||
|
when NEXTNODE:ETA < 1 then {
|
||
|
AG1.
|
||
|
set done to true.
|
||
|
}
|
||
|
|
||
|
wait until done.
|