I won't begin to tell you I completely understand this script...but I do know it works, and it does what you are asking. Call the script in the init.sqs
script by {USI}_RFox7
_wMarkers = ["wMark1","wMark2","wMark3","wMark4","wMark5","wMark6","wMark7","wMark8","wMark9","wMark10"]
_eMarkers = ["eMark1","eMark2","eMark3","eMark4","eMark5","eMark6","eMark7","eMark8","eMark9","eMark10"]
#MarkerTracker
_markerType = "MARKER"
?(SIDE Player == WEST) : _markerList = _wMarkers; Goto "TrackW"
?(SIDE Player == EAST) : _markerList = _eMarkers; Goto "TrackE"
Exit
#TrackW
_x = 0
#TrackLoopW
~.01
_list = [aP1,aP2,aP3,aP4,aP5,aP6,aP7,aP8,aP9,aP10]
_unit = _list Select _x
_marker = _markerList Select _x
?(Alive _unit) : Goto "MPosW"
_marker SetMarkerType "EMPTY"
Goto "SkipW"
#MPosW
(_marker) SetMarkerType _markerType
(_marker) SetMarkerPos GetPos _unit
#SkipW
_x = _x + 1
?(_x > Count _markerList) : _x = 0
Goto "TrackLoopW"
#TrackE
_x = 0
#TrackLoopE
~.01
_list = [bp1,bp2,bp3,bp4,bp5,bp6,bp7,bp8,bp9,bp10]
_unit = _list Select _x
_marker = _markerList Select _x
?(Alive _unit) : Goto "MPosE"
_marker SetMarkerType "EMPTY"
Goto "SkipE"
#MPosE
(_marker) SetMarkerType _markerType
(_marker) SetMarkerPos GetPos _unit
#SkipE
_x = _x + 1
?(_x > Count _markerList) : _x = 0
Goto "TrackLoopE"