diff --git a/prog/nodeaction.ks b/prog/nodeaction.ks new file mode 100644 index 0000000..198997f --- /dev/null +++ b/prog/nodeaction.ks @@ -0,0 +1,17 @@ +// 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.