Is there a way to get these commands to work in MP? Move / domove that is. Currently I am creating a group of units (which works fine), and then I give them a "move" command to get them to move (duh). Anyway, it works fine in the editor or when I run it on my computer in MP, but only when there is only 1 computer in the game! Basically, if I have my other computer play the mission with me, the command does not work. The command is only being run on the server, although I tried running it on all clients at the same time to no avail.
I did a search and found someone else had the same problem as me:
http://www.ofpec.com/yabbse/index.php?board=7;action=display;threadid=6309;start=0Unforutnately, his thread wasn't ever solved either, so I'm guessing this won't go very far...
I have, however, found a workaround that seems to work just fine. In the editor I have units with "grpx = group this; deletevehicle this" in their init field, in order to reserve the group names of course. My workaround however, was to give those guys a single "cycle" waypoint. Then, instead of using the "move" command, I use the "setwppos" command like so:
[grp, 0] setwppos _wp
"0" is a waypoint that every group has, which is its very first WP (run before editor-placed ones). Normally this wp is at the groups starting location, and is completed immediately (and thus never repeated, even if moved). By putting a "cycle" wp right after that one, the group will continually repeat this first waypoint, which I then move around the map with the setwppos command.
Like I said, this seems to work, but I haven't tested it extensively. I suspect that this might not be the best solution, because when the group completes it's WP, and another setwpos command has not been issued, then I would think the cycle WP is just endlessly giving the group a move order to where they are standing. That is why I'd prefer to use the move command, if possible.
Anyone have experience with this?
BTW, I suspect I'm going to be flooding the s out of this forum soon, because I'm starting to get into MP editing, and I have a lot of questions like this about how a certain command works in MP.