A question re: this...
If I have a group of 4, say unit1 - unit4, can I set them up with different move commands each.. like
#loop
[unit1, unit2] move getmarkerpos "marker1"
[unit3, unit4] move getmarkerpos "marker2"
@ unitready unit1
@ unitready unit3
[unit1, unit2] move getmarkerpos "marker2"
[unit3, unit4] move getmarkerpos "marker1"
@ unitready unit1
@ unitready unit3
goto "loop"
And make a psuedo-synched patrol loop? I want some small patrols, but I want to keep the number of groups as low as possible & don't really mind if there's scripting overhead to do it.
So, will this work, or will they keep coming back into formation all the time?