Ok I've been searching though the forums for a few days now and can't find an answer to my question so I hope someone can help.
I'm setting up what I hoped would be a simple radio trigger that will then set a marker and move a unit on a single map click (the unit is going to be an invisible heli pad that can then be used to help control some supports I've set up).
At the moment I've got it so I can move the unit with a single map click with,
onMapSingleClick "unit setPos _pos; onMapSingleClick """";";
(where unit is the unit I wish to move) and move the marker with a single map click using,
onmapsingleclick {"mark" setmarkerpos _pos;onmapsingleclick {}}
(where mark is the marker I with to move) but when I put them in the same trigger or make two triggers with the same activation it only moves one of them.
Dose anyone know a way I can combine them? So that after a radio alpha you click once putting the unit and the marker in one place? I was hopping this would be something simple I could then use in lots of missions.