deleteVehicleCrew: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "|= Game version" to "|Game version=") |
Lou Montana (talk | contribs) (Fix examples and clean comments) |
||
Line 7: | Line 7: | ||
|arg= global |Multiplayer Arguments= | |arg= global |Multiplayer Arguments= | ||
|eff= global |Multiplayer Effects= | |eff= global |Multiplayer Effects= | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| Deletes a member of the crew of a vehicle. Human players cannot be deleted.<br><br> | | Deletes a member of the crew of a vehicle. Human players cannot be deleted.<br><br> | ||
{{Informative | This command attempts to move the given [[crew]] member out before deleting it. Made especially for deleting dead crew members, as using conventional [[deleteVehicle]] leads to all sorts of bugs and ghost objects. While the argument is global, you should take extra steps and execute this where vehicle is [[local]] as moving units out of the vehicle happens where vehicle is [[local]] and you want this to always precede deletion. }} |DESCRIPTION= | {{Informative | This command attempts to move the given [[crew]] member out before deleting it. Made especially for deleting dead crew members, as using conventional [[deleteVehicle]] leads to all sorts of bugs and ghost objects. While the argument is global, you should take extra steps and execute this where vehicle is [[local]] as moving units out of the vehicle happens where vehicle is [[local]] and you want this to always precede deletion.}} |DESCRIPTION= | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| vehicle | | vehicle [[deleteVehicleCrew]] unit |SYNTAX= | ||
|p1= vehicle: [[Object]] |PARAMETER1= | |p1= vehicle: [[Object]] |PARAMETER1= | ||
|p2= unit: [[Object]] | | |||
|p2= unit: [[Object]] |PARAMETER2= | |||
| [[Nothing]] |RETURNVALUE= | | [[Nothing]] |RETURNVALUE= | ||
____________________________________________________________________________________________ | |||
|x1= <code>_helicopter [[deleteVehicleCrew]] [[driver]] _helicopter;</code> |EXAMPLE1= | |||
| | |x2= <code>{ _helicopter [[deleteVehicleCrew]] _x } [[forEach]] [[crew]] _helicopter; {{cc|deletes all crew}}</code> |EXAMPLE2= | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
Line 37: | Line 39: | ||
<!-- Note Section BEGIN --> | <!-- Note Section BEGIN --> | ||
<dd class="notedate">Posted on August 31, 2014 - 10:15 (UTC)</dd> | <dd class="notedate">Posted on August 31, 2014 - 10:15 (UTC)</dd> | ||
<dt class="note">[[User:Killzone Kid|Killzone Kid]]</dt> | <dt class="note">[[User:Killzone Kid|Killzone Kid]]</dt> | ||
<dd class="note"> | <dd class="note"> | ||
{{{!}} | |||
{{!}} rowspan="2" {{!}} If you delete the AI pilot with | |||
{{!}} <code>[[deleteVehicle]] [[driver]] heli;</code> | |||
{{!}} co-pilot will jump out. | |||
{{!}}- | |||
{{!}} <code>heli [[deleteVehicleCrew]] [[driver]] heli;</code> | |||
{{!}} co-pilot stays. | |||
{{!}}} | |||
</dd> | </dd> | ||
<!-- Note Section END --> | |||
</dl> | </dl> | ||
< | <h3 style='display:none'>Bottom Section</h3> | ||
[[Category:Command_Group:_Vehicle_Assignment|{{uc:{{PAGENAME}}}}]] | |||
Revision as of 00:16, 19 December 2019
Description
- Description:
- Deletes a member of the crew of a vehicle. Human players cannot be deleted.
- Groups:
- Uncategorised
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;
co-pilot will jump out. heli deleteVehicleCrew driver heli;
co-pilot stays.