BIS fnc spawnVehicle: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) (Page cleanup) |
mNo edit summary |
||
Line 10: | Line 10: | ||
|eff= | |eff= | ||
|gr1 = Vehicles |GROUP1= | |||
Revision as of 12:43, 10 October 2020
Description
- Description:
- Function to spawn a certain vehicle type with all crew (including turrets). The vehicle can either become part of an existing group or create a new group.
- Execution:
- call
- Groups:
- Vehicles
Syntax
- Syntax:
- [position, direction, type, sideOrGroup] call BIS_fnc_spawnVehicle
- Parameters:
- position: Array format Position - desired position
- direction: Number - desired azimuth/direction
- type: String - type of the vehicle
- sideOrGroup: Side or Group - side or existing group
- Return Value:
- Array format [createdVehicle, crew, group]:
Examples
- Example 1:
[getPos player, 180, "BMP3", east] call BIS_fnc_spawnVehicle;
- Example 2:
private _result = [getPos player, 180, "BMP3", east] call BIS_fnc_spawnVehicle; private _vehicle = _result select 0; // alternatively, Arma 3 only _result params ["_vehicle", "_crew", "_group"];
Additional Information
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