deleteVehicle: Difference between revisions
Jump to navigation
Jump to search
Killzone Kid (talk | contribs) mNo edit summary |
Killzone Kid (talk | contribs) (Do not delete vehicle crew with it!) |
||
Line 11: | Line 11: | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| Deletes an object. Only units inserted in the mission editor and units created during the game's progress can be deleted by this command. Island objects and player units cannot be removed | | Deletes an object. Only units inserted in the mission editor and units created during the game's progress can be deleted by this command. Island objects and player units cannot be removed.<br><br> | ||
{{Informative | The actual object deletion, when object becomes [[objNull]], happens on the next frame after command execution, but there are some object modifications that happen immediately. For example if the object is unit in a group, it immediately becomes groupless <tt>[[isNull]] [[group]] _unit; //true</tt>}}<br> | |||
{{warning | Do not use this command for deletion of dead [[crew]] members from a vehicle. Doing so may lead to all sorts of bugs and ghost objects left on the map. Instead use [[deleteVehicleCrew]], which was designed with this functionality in mind}} |= Description | |||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
Line 23: | Line 24: | ||
|x1= <code>[[deleteVehicle]] _house1;</code> |= Example 1 | |x1= <code>[[deleteVehicle]] _house1;</code> |= Example 1 | ||
|x2= | |x2= Deleteing a vehicle with crew: <code>// might want to make sure that the car is local | ||
{car [[deleteVehicleCrew]] _x} [[forEach]] [[crew]] car; | |||
[[deleteVehicle]] car;</code>|= Example 2 | |||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| [[createUnit]], [[createVehicleLocal]], [[createVehicle]] |= See also | | [[createUnit]], [[createVehicleLocal]], [[createVehicle]] |= See also | ||
|mp= | |mp= |= | ||
}} | }} |
Revision as of 14:21, 15 September 2018
Description
- Description:
- Deletes an object. Only units inserted in the mission editor and units created during the game's progress can be deleted by this command. Island objects and player units cannot be removed.
- Groups:
- Uncategorised
Syntax
Examples
- Example 1:
deleteVehicle _house1;
- Example 2:
- Deleteing a vehicle with crew:
// might want to make sure that the car is local {car deleteVehicleCrew _x} forEach crew car; deleteVehicle car;
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
Notes
Bottom Section
Categories:
- Scripting Commands
- Introduced with Operation Flashpoint version 1.34
- Operation Flashpoint: New Scripting Commands
- Operation Flashpoint: Scripting Commands
- Command Group: Uncategorised
- Scripting Commands: Global Effect
- Scripting Commands OFP 1.99
- Scripting Commands OFP 1.96
- Scripting Commands OFP 1.46
- Scripting Commands ArmA
- Scripting Commands ArmA2
- Scripting Commands Arma 3
- Scripting Commands Take On Helicopters
- Command Group: Unit Control
- Command Group: Object Manipulation