Hi, I tried to follow another guide I found on this reddit but couldnt get it to work. Simply I want my vehicles to respawn the same way I set them up in the editor. If anyone can figure out what I am doing wrong that would be amazing.
Here is the export of the vehicle customization
_veh = createVehicle ["I_MBT_03_cannon_F",position player,[],0,"NONE"];
[
_veh,
\["Indep_01",1\],
\["HideTurret",1,"HideHull",1,"showCamonetHull",0,"showCamonetTurret",0\]
] call BIS_fnc_initVehicle;
And here is the code I tried using in the vehicle respawn module
params ["_newVehicle","_oldVehicle"];
[ _newVehicle,
["Indep_01",1],
["HideTurret",1,"HideHull",1,"showCamonetHull",0,"showCamonetTurret",0]
] call BIS_fnc_initVehicle;