I need help with using the _vehicle setVariable ["ALIVE_profileIgnore", true]; line of code.
airDropVehicle = createVehicle ["LIB_C47_skytrain", getMarkerPos "insrt", [], 0, "FLY"];
publicVariable "airDropVehicle"; // send this variable to all computers
_grp = creategroup west;
_crw = "LIB_US_pilot" createUnit [getMarkerPos "insrt",_grp];
{_x moveinDriver airDropVehicle} foreach units _grp;
Thats how im spawning a plane.
what doesn't work.
airDropVehicle setVariable ["ALIVE_profileIgnore", true];
_grp setVariable ["ALIVE_profileIgnore", true];
_crw setVariable ["ALIVE_profileIgnore", true];
{_x setVariable ["ALIVE_profileIgnore", true];} foreach units _grp;
?!?!?