Hi Guys.
I am trying to make a marker follow a group, so I can track them on the map.
I can make it work with a single unit with this command :
"Marker_Man1" SetMarkerType "InfantryTeam"
"Marker_Man1" SetMarkerColor "ColorBlue"
"Marker_Man1" SetMarkerPos GetPos Man1
But I want it to work with every unit in a group, so I tried this code :
{_x SetMarkerPos "Marker_EnemyGrp1"} GetPos ForEach units group1
But nothing happens, any ideas?