BIS fnc exportVehicle: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<code>([^<]*)\[\[([a-zA-Z][a-zA-Z0-9_]+)\]\]([^<]*) *<\/code>" to "<code>$1$2$3</code>")
m (Text replacement - "<code> *([^<|{]*) *<\/code>" to "<sqf>$1</sqf>")
Line 16: Line 16:
|r1= [[String]] - [[SQF Syntax|SQF]] code
|r1= [[String]] - [[SQF Syntax|SQF]] code


|x1= <code>[BIS_tank,""] call BIS_fnc_exportVehicle;
|x1= <sqf>[BIS_tank,""] call BIS_fnc_exportVehicle;


//Returns  
//Returns  
Line 23: Line 23:
   [""Hex"",1],  
   [""Hex"",1],  
   [""showCamonetHull"",1,""showCamonetTurret"",1]
   [""showCamonetHull"",1,""showCamonetTurret"",1]
] call BIS_fnc_initVehicle;"</code>
] call BIS_fnc_initVehicle;"</sqf>


|x2= <code>[BIS_tank] call BIS_fnc_exportVehicle;
|x2= <sqf>[BIS_tank] call BIS_fnc_exportVehicle;


//Returns  
//Returns  
Line 34: Line 34:
   [""showCamonetHull"",1,""showCamonetTurret"",1]
   [""showCamonetHull"",1,""showCamonetTurret"",1]
] call BIS_fnc_initVehicle;"
] call BIS_fnc_initVehicle;"
</code>
</sqf>


|seealso= [[BIS_fnc_initVehicle]] [[Vehicle Customization (VhC)]]
|seealso= [[BIS_fnc_initVehicle]] [[Vehicle Customization (VhC)]]
}}
}}

Revision as of 23:44, 12 July 2022

Hover & click on the images for description

Description

Description:
Export vehicle settings
Execution:
call
Groups:
Vehicles

Syntax

Syntax:
[vehicle,vehicleClass] call BIS_fnc_exportVehicle
Parameters:
vehicle: Object
vehicleClass: String - Use "" to skip createVehicle part and set components / textures only
Return Value:
String - SQF code

Examples

Example 1:
[BIS_tank,""] call BIS_fnc_exportVehicle; //Returns "[ _this, [""Hex"",1], [""showCamonetHull"",1,""showCamonetTurret"",1] ] call BIS_fnc_initVehicle;"
Example 2:
[BIS_tank] call BIS_fnc_exportVehicle; //Returns "_veh = createVehicle [""O_MBT_04_cannon_F"",position player,[],0,""NONE""]; [ _veh, [""Hex"",1], [""showCamonetHull"",1,""showCamonetTurret"",1] ] call BIS_fnc_initVehicle;"

Additional Information

See also:
BIS_fnc_initVehicle Vehicle Customization (VhC)

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note