Advertisement
kerbo_

clearFlags.sqf

Jun 1st, 2022
2,249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 0.19 KB | None | 0 0
  1. // clear flags
  2. private _count = 0;
  3. private _flags = nearestObjects [position player, ["FlagMarker_01_F"], 500];
  4. {
  5.     deleteVehicle _x;
  6.     _count = _count + 1;
  7. } forEach _flags;
  8. _count;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement