Difference between revisions of "deleteVehicle"
Jump to navigation
Jump to search
killzone_kid (talk | contribs) (Do not delete vehicle crew with it!) |
m (Text replacement - "\[\[Category\: ?Command[ _]Group\:.*\|\{\{uc\:\{\{PAGENAME\}\}\}\}\]\] " to "") |
||
(12 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
− | {{Command|= | + | {{Command|Comments= |
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
− | | ofp | | + | | ofp |Game name= |
− | |1.34| | + | |1.34|Game version= |
− | |arg= global |= | + | |arg= global |Multiplayer Arguments= |
− | |eff= global |= | + | |eff= global |Multiplayer Effects= |
+ | |||
+ | |gr1= Object Manipulation |GROUP1= | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
− | | Deletes an object. Only | + | | Deletes an object. Only objects inserted in the mission editor and objects created during the game's progress can be deleted by this command. Island objects and player 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> | {{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}} |= | + | {{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= |
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
− | | '''deleteVehicle''' object |= | + | | '''deleteVehicle''' object |SYNTAX= |
− | |p1= object: [[Object]] |= | + | |p1= object: [[Object]] |PARAMETER1= |
− | | [[Nothing]] |= | + | | [[Nothing]] |RETURNVALUE= |
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
− | |x1= <code>[[deleteVehicle]] _house1;</code> |= | + | |x1= <code>[[deleteVehicle]] _house1;</code> |EXAMPLE1= |
− | |x2= | + | |x2= Deleting a vehicle with crew: <code>// might want to make sure that the car is local |
{car [[deleteVehicleCrew]] _x} [[forEach]] [[crew]] car; | {car [[deleteVehicleCrew]] _x} [[forEach]] [[crew]] car; | ||
− | [[deleteVehicle]] car;</code>|= | + | [[deleteVehicle]] car;</code>|EXAMPLE2= |
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
− | | [[createUnit]], [[createVehicleLocal]], [[createVehicle]] |= | + | | [[createUnit]], [[createVehicleLocal]], [[createVehicle]], [[Arma_3:_Event_Handlers#Deleted | Deleted EH]] |SEEALSO= |
|mp= |= | |mp= |= | ||
Line 49: | Line 51: | ||
[[Category:Scripting Commands OFP 1.96|DELETEVEHICLE]] | [[Category:Scripting Commands OFP 1.96|DELETEVEHICLE]] | ||
[[Category:Scripting Commands OFP 1.46|DELETEVEHICLE]] | [[Category:Scripting Commands OFP 1.46|DELETEVEHICLE]] | ||
− | [[Category:Scripting Commands | + | [[Category:Scripting Commands Armed Assault|DELETEVEHICLE]] |
− | [[Category:Scripting Commands | + | [[Category:Scripting Commands Arma 2|{{uc:{{PAGENAME}}}}]] |
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]] | [[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]] | ||
− | [[Category: | + | [[Category:Scripting Commands Take On Helicopters|{{uc:{{PAGENAME}}}}]] |
− | |||
[[Category:Command_Group:_Object_Manipulation|{{uc:{{PAGENAME}}}}]] | [[Category:Command_Group:_Object_Manipulation|{{uc:{{PAGENAME}}}}]] |
Revision as of 15:07, 24 September 2020
Hover & click on the images for descriptions
Description
- Description:
-
Deletes an object. Only objects inserted in the mission editor and objects created during the game's progress can be deleted by this command. Island objects and player cannot be removed.
Syntax
Examples
- Example 1:
-
deleteVehicle _house1;
- Example 2:
- Deleting a vehicle with crew:
// might want to make sure that the car is local {car deleteVehicleCrew _x} forEach crew car; deleteVehicle car;
Additional Information
- See also:
- createUnitcreateVehicleLocalcreateVehicle Deleted EH
- Groups:
- Object Manipulation
Notes
Notes
Bottom Section
Categories:
- Scripting Commands
- Operation Flashpoint: Scripting Commands
- Operation Flashpoint: Resistance: Scripting Commands
- Operation Flashpoint: New Scripting Commands
- Command Group: Object Manipulation
- Introduced with Operation Flashpoint version 1.34
- Commands utilizing global arguments
- Commands with global effects
- Scripting Commands OFP 1.99
- Scripting Commands OFP 1.96
- Scripting Commands OFP 1.46
- Scripting Commands Armed Assault
- Scripting Commands Arma 2
- Scripting Commands Arma 3
- Scripting Commands Take On Helicopters