Hi all,
can someone explain how to use the code exported via the arsenal to customize a vehicle for usage in a MP (dedicated server) Scenario?
I placed a Taru (O_Heli_Transport_04_covered_F) in the editor. Via the arsenal i exported following code
_veh = createVehicle ["O_Heli_Transport_04_covered_F",position player,[],0,"NONE"];
[
_veh,
["black",1],
[
"AddCargoHook_COver", 0
]
] call BIS_fnc_initVehicle;
[
_veh,
[
["B_Soldier_VR_F","driver"]
]
] call BIS_fnc_initVehicleCrew;
For sure it's caused by not knowing the basics here.. how do I combine these to things to receive a playable black Taru in my mission?
Thx in advance!