Map_GPS_R.sqf 250 B

123456789101112
  1. //remove map and gps from players
  2. //Created by Rexi
  3. {
  4. _x unassignItem "ItemMap";
  5. _x unassignItem "ItemGPS";
  6. _x removeItem "ItemMap";
  7. _x removeItem "ItemGPS";
  8. ;} forEach playableUnits;
  9. hintSilent "Maps and GPS units removed from players";