Map_GPS_R.sqf 232 B

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