Files
MissionTemplate/framework/map/fn_loadMapMarkers.sqf

11 lines
227 B
Plaintext

params ["_markerList"];
if ('ItemMap' in (assignedItems player)) then {
{
_x call milsim_fnc_stringToMapMarker;
} foreach _markerList;
hint format["Map copied!"];
} else {
hint format["You need a map to copy onto!"];
};