deleteVehicleCrew: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "\|seealso= ([^ ]+)\]\], \[\[" to "|seealso= $1]] [[") |
Lou Montana (talk | contribs) m (Text replacement - "\|seealso= ([^ ]+)\]\], \[\[" to "|seealso= $1]] [[") |
||
Line 36: | Line 36: | ||
{ _helicopter deleteVehicleCrew _x } forEach crew _helicopter; // before v2.06</sqf> | { _helicopter deleteVehicleCrew _x } forEach crew _helicopter; // before v2.06</sqf> | ||
|seealso= [[createVehicleCrew]] [[moveInDriver]] | |seealso= [[createVehicleCrew]] [[moveInDriver]] [[moveInGunner]], [[moveInCommander]], [[moveInTurret]], [[moveInCargo]], [[Arma_3:_Event_Handlers#Deleted | Deleted EH]] | ||
}} | }} | ||
Revision as of 12:46, 1 July 2022
Description
- Description:
- Deletes a member of the crew of a vehicle. Human players cannot be deleted. Since Arma 3 v2.06.147649 it is also possible to delete entire crew all in one sweep using alternative syntax.
- Groups:
- Object Manipulation
Syntax
- Syntax:
- vehicle deleteVehicleCrew unit
- Parameters:
- vehicle: Object
- unit: Object
- Return Value:
- Nothing
Alternative Syntax
- Syntax:
- deleteVehicleCrew vehicle
- Parameters:
- vehicle: Object
- Return Value:
- Nothing
Examples
- Example 1:
- Example 2:
- Delete entire crew:
Additional Information
- See also:
- createVehicleCrew moveInDriver moveInGunnermoveInCommandermoveInTurretmoveInCargo Deleted EH
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
- Posted on Aug 31, 2014 - 10:15 (UTC)
-
If you delete the AI pilot with
deleteVehicle driver heli
the co-pilot will jump out.
If you delete the AI pilot withheli deleteVehicleCrew driver heli
the co-pilot will stay.