TheHypnoo 0 Posted October 23, 2017 Hello, my problem is that I want to remove more than one Marker. I get the command, but I can only delete a string instead of Array. How can I do it? Share this post Link to post Share on other sites
Sgt. Dennenboom 98 Posted October 23, 2017 You'll have to put the deleteMarker(Local) command in a loop if you want to delete an array of marker strings. So instead of: deleteMarkerLocal "marker_1"; You do: {deleteMarkerLocal _x;} forEach ["marker_1","marker_2","marker_3"]; Share this post Link to post Share on other sites
TheHypnoo 0 Posted October 24, 2017 @Sgt. Dennenboom Okey, thanks. Solved Problem. Closed. Share this post Link to post Share on other sites