Advertisement
icdb

[ArmA3] Delete all player made markers (not lines)

May 29th, 2020
1,321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 0.15 KB | None | 0 0
  1. {
  2.   private "_a";
  3.   _a = toArray _x;
  4.   _a resize 15;
  5.   if (toString _a != "_USER_DEFINED #") then {
  6.     deleteMarker _x;
  7.   }
  8. } forEach allMapMarkers;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement