deleteVehicleCrew: Difference between revisions
Jump to navigation
Jump to search
Killzone Kid (talk | contribs) (for deleting the dead crew) |
Killzone Kid (talk | contribs) (see also) |
||
Line 27: | Line 27: | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| [[createVehicleCrew]], [[moveInDriver]], [[moveInGunner]], [[moveInCommander]], [[moveInTurret]], [[moveInCargo]] |= SEEALSO | | [[createVehicleCrew]], [[moveInDriver]], [[moveInGunner]], [[moveInCommander]], [[moveInTurret]], [[moveInCargo]], [[Arma_3:_Event_Handlers#Deleted | Deleted EH]] |= SEEALSO | ||
| |= MPBEHAVIOUR | | |= MPBEHAVIOUR |
Revision as of 14:28, 15 September 2018
Description
- Description:
- Deletes a member of the crew of a vehicle. Human players cannot be deleted.
- Groups:
- Uncategorised
Syntax
Examples
- Example 1:
heli deleteVehicleCrew driver heli;
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
Bottom Section
- Posted on August 31, 2014 - 10:15 (UTC)
- Killzone Kid
-
Not quite sure of the exact use of this command. You can delete AI pilot for example with
deleteVehicle driver heli;
but co-pilot will then jump out. If you useheli deleteVehicleCrew driver heli;
co-pilot stays.
- Posted on April 10, 2015 - 13:43 (UTC)
- Tankbuster
-
Using the following code will remove ALL crew from the given vehicle.
{_myvehicle deleteVehicleCrew _x} forEach crew _myvehicle;