deleteVehicleCrew: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Fix KK's comment format (for small screens)) |
mNo edit summary |
||
Line 9: | Line 9: | ||
|eff= global |Multiplayer Effects= | |eff= global |Multiplayer Effects= | ||
|gr1= Object Manipulation |GROUP1= | |||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
Revision as of 11:17, 24 September 2020
Description
- Description:
- Deletes a member of the crew of a vehicle. Human players cannot be deleted.
- Groups:
- Object Manipulation
Syntax
- Syntax:
- vehicle deleteVehicleCrew unit
- Parameters:
- vehicle: Object
- unit: Object
- Return Value:
- Nothing
Examples
- Example 1:
_helicopter deleteVehicleCrew driver _helicopter;
- Example 2:
{ _helicopter deleteVehicleCrew _x } forEach crew _helicopter; // deletes all crew
Additional Information
- See also:
- createVehicleCrewmoveInDrivermoveInGunnermoveInCommandermoveInTurretmoveInCargo 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
Notes
- Posted on August 31, 2014 - 10:15 (UTC)
- Killzone Kid
-
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.