Difference between revisions of "createVehicle"
Jump to navigation
Jump to search
(Added suggestion for code optimization) |
Fred Gandt (talk | contribs) m (Grammar fix and linking in notes) |
||
Line 40: | Line 40: | ||
<dt class="note">'''[[User:Raedor|raedor]]'''<dd class="note">This command sets the created vehicle not exactly at the given position, you have to [[setPos]] it there, if accuracy counts. | <dt class="note">'''[[User:Raedor|raedor]]'''<dd class="note">This command sets the created vehicle not exactly at the given position, you have to [[setPos]] it there, if accuracy counts. | ||
<dd class="notedate">Posted on Jan 20, 2006 | <dd class="notedate">Posted on Jan 20, 2006 | ||
− | <dt class="note">'''[[User:bdfy|bdfy]]'''<dd class="note">This command sets the created vehicle in the nearest | + | <dt class="note">'''[[User:bdfy|bdfy]]'''<dd class="note">This command sets the created vehicle in the nearest ''possible'' position. You can create a dozen of tanks with it - they will appear side by side. |
<dd class="notedate">Posted on December 13, 2006 - 12:27 | <dd class="notedate">Posted on December 13, 2006 - 12:27 | ||
− | <dt class="note">'''[[User:Salisan|Salisan]]'''<dd class="note">Observe that buildings with the default destrType will not work correctly in multiplayer in Armed Assault when created with this command. The Destruction effect will only be displayed where the building is local. | + | <dt class="note">'''[[User:Salisan|Salisan]]'''<dd class="note">Observe that buildings with the default [https://manuals.bisimulations.com/vbs2/1-60/devref/Content/Config_Manual/CfgVehicles/D_cpp/cpp_destrType.htm destrType] will not work correctly in multiplayer in Armed Assault when created with this command. The Destruction effect will only be displayed where the building is local. |
<dd class="notedate">Posted on Oct 18, 2009 - 05:42 | <dd class="notedate">Posted on Oct 18, 2009 - 05:42 | ||
<dt class="note">'''[[User:Canukausiuka|Canukausiuka]]'''<dd class="note>As of Arma2, this command cannot be used to create game logics [http://forums.bistudio.com/showthread.php?t=81964 (source)]. Use [[createUnit]] instead. | <dt class="note">'''[[User:Canukausiuka|Canukausiuka]]'''<dd class="note>As of Arma2, this command cannot be used to create game logics [http://forums.bistudio.com/showthread.php?t=81964 (source)]. Use [[createUnit]] instead. | ||
<dd class="notedate">Posted on January 26 2014 - 20:12 | <dd class="notedate">Posted on January 26 2014 - 20:12 | ||
− | <dt class="note">'''[[User:Katulobotomia|Katulobotomia]]'''<dd class="note">Using getPosATL should work, if otherwise you are struggling to get a the proper position coordinates. | + | <dt class="note">'''[[User:Katulobotomia|Katulobotomia]]'''<dd class="note">Using [[getPosATL]] should work, if otherwise you are struggling to get a the proper position coordinates. |
<dd class="notedate">Posted on March 27 2014 - 02:15 | <dd class="notedate">Posted on March 27 2014 - 02:15 | ||
− | <dt class="note">'''[[User:Floriangeyer|Floriangeyer]]'''<dd class="note">According to [[Code Optimisation]], this function is considered deprecated and | + | <dt class="note">'''[[User:Floriangeyer|Floriangeyer]]'''<dd class="note">According to [[Code Optimisation]], this function is considered deprecated and [[createVehicle array]] should be used instead. |
<!-- Note Section END --> | <!-- Note Section END --> | ||
</dl> | </dl> |
Revision as of 16:36, 27 March 2014
Description
- Description:
- Create an empty object of given type classname at given position. For a full class reference see Classes.
- Groups:
- Uncategorised
Syntax
- Syntax:
- Object = type createVehicle position
- Parameters:
- type: String - vehicle/object className
- position: Array - format Position to create the vehicle at
- Return Value:
- Object
Examples
- Example 1:
_jeep = "Jeep" createVehicle (position player);
- Example 2:
_heli = "AH1Z" createVehicle (getMarkerPos "hspawn");
Additional Information
- See also:
- createVehicle arraycreateVehicleLocalcreateUnitcreateUnit arraydeleteVehiclecreateGroupcreateCenter
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 January 14, 2010
- Galzohar
- In multiplayer, only run this command on one machine. It will create a the vehicle on all machines every time it is called on any machine.
- Posted on August 13, 2006 - 12:18
- raedor
- This command sets the created vehicle not exactly at the given position, you have to setPos it there, if accuracy counts.
- Posted on Jan 20, 2006
- bdfy
- This command sets the created vehicle in the nearest possible position. You can create a dozen of tanks with it - they will appear side by side.
- Posted on December 13, 2006 - 12:27
- Salisan
- Observe that buildings with the default destrType will not work correctly in multiplayer in Armed Assault when created with this command. The Destruction effect will only be displayed where the building is local.
- Posted on Oct 18, 2009 - 05:42
- Canukausiuka
- As of Arma2, this command cannot be used to create game logics (source). Use createUnit instead.
- Posted on January 26 2014 - 20:12
- Katulobotomia
- Using getPosATL should work, if otherwise you are struggling to get a the proper position coordinates.
- Posted on March 27 2014 - 02:15
- Floriangeyer
- According to Code Optimisation, this function is considered deprecated and createVehicle array should be used instead.
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.96
- Scripting Commands OFP 1.46
- Scripting Commands ArmA
- Command Group: Object Manipulation
- Scripting Commands ArmA2
- Scripting Commands Arma 3
- Scripting Commands Take On Helicopters