vehicles: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "|= Game version" to "|Game version=")
No edit summary
 
(38 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Command|Comments=
{{RV|type=command
____________________________________________________________________________________________


| arma |Game name=
|game1= arma1
|eff= local |Multiplayer Effects=
|version1= 1.00
|1.00|Game version=
____________________________________________________________________________________________


| Returns an array of all vehicles available to current client. This command returns both empty and crewed vehicles <u>but not soldiers</u>. It will also return "WeaponHolderSimulated" of dead bodies (weapon on the ground). Vehicles created with [[createVehicleLocal]] will only be returned on the client that created them. |DESCRIPTION=
|game2= arma2
____________________________________________________________________________________________
|version2= 1.00


| '''vehicles''' |SYNTAX=
|game3= arma2oa
|version3= 1.50


| [[Array]] |RETURNVALUE=
|game4= tkoh
____________________________________________________________________________________________
|version4= 1.00
 
|x1= <code>_vehicles = [[vehicles]];</code> |EXAMPLE1=
____________________________________________________________________________________________


| [[allCurators]], [[allGroups]], [[allDead]], [[playableUnits]], [[switchableUnits]], [[allUnitsUAV]], [[allDeadMen]], [[agents]], [[allUnits]] |SEEALSO=
|game5= arma3
|version5= 0.50


|eff= local
|gr1= Object Detection
|descr= Returns an array of all vehicles available to current client. This command returns both empty and crewed vehicles <u>but not soldiers</u>. It will also return "WeaponHolderSimulated" of dead bodies (weapon on the ground). Vehicles created with [[createVehicleLocal]] will only be returned on the client that created them.
|s1= [[vehicles]]
|r1= [[Array]]
|x1= <sqf>_vehicles = vehicles;</sqf>
|seealso= [[allGroups]] [[allUnits]] [[units]] [[entities]] [[agents]] [[playableUnits]] [[switchableUnits]] [[allPlayers]] [[allDead]] [[allDeadMen]] [[allUnitsUAV]] [[allCurators]] [[allObjects]] [[allMissionObjects]] [[allSimpleObjects]] [[allMines]]
}}
}}


<h3 style="display:none">Notes</h3>
{{Note
<dl class="command_description">
|user= Sa-Matra
</dl>
|timestamp= 20240618061800
|text= This command returns a lot of crap that is not really a vehicle in a common sense - simulated weapon holders, clutter cutters, etc. It also skips "out" vehicles (disassembled drones and statics). Be careful iterating through it as it may be expensive.
 
Here is a list of most vehicle simulations that are returned by this command:
<sqf>airplanex
artillerymarker
car
carx
fire
helicopterrtd
lasertarget
motorcycle
nvmarker
parachute
paraglide
rope
shipx
submarinex
suppresstarget
tankx
thing
thingx</sqf>
Generated using this code bit:
<sqf>
private _sims = createHashMap;
{
private _sim = toLowerANSI getText(_x >> "simulation");
if!(_sim in _sims) then {
_sims set [_sim, configName _x];
};
} forEachReversed ("getNumber(_x >> 'scope') > 0" configClasses (configFile >> "CfgVehicles"));


<h3 style="display:none">Bottom Section</h3>
private _used_sims = [];
{
if(createVehicle [_y, [random 1e5,random 1e5,random 1e5], [], 0, "CAN_COLLIDE"] in vehicles) then {
_used_sims pushBack _x;
};
} forEach _sims;


[[Category:Scripting Commands|VEHICLES]]
_used_sims sort true;
[[Category:Scripting Commands ArmA|VEHICLES]]
copyToClipboard (_used_sims joinString toString [10]);</sqf>
[[Category:Scripting Commands ArmA2|VEHICLES]]
There is probably more simulations not listed like non-x versions of vehicle simulations but these are ones actually used in A3.
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
}}
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]

Latest revision as of 08:19, 18 June 2024

Hover & click on the images for description

Description

Description:
Returns an array of all vehicles available to current client. This command returns both empty and crewed vehicles but not soldiers. It will also return "WeaponHolderSimulated" of dead bodies (weapon on the ground). Vehicles created with createVehicleLocal will only be returned on the client that created them.
Groups:
Object Detection

Syntax

Syntax:
vehicles
Return Value:
Array

Examples

Example 1:
_vehicles = vehicles;

Additional Information

See also:
allGroups allUnits units entities agents playableUnits switchableUnits allPlayers allDead allDeadMen allUnitsUAV allCurators allObjects allMissionObjects allSimpleObjects allMines

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
Sa-Matra - c
Posted on Jun 18, 2024 - 06:18 (UTC)
This command returns a lot of crap that is not really a vehicle in a common sense - simulated weapon holders, clutter cutters, etc. It also skips "out" vehicles (disassembled drones and statics). Be careful iterating through it as it may be expensive. Here is a list of most vehicle simulations that are returned by this command:
airplanex artillerymarker car carx fire helicopterrtd lasertarget motorcycle nvmarker parachute paraglide rope shipx submarinex suppresstarget tankx thing thingx
Generated using this code bit:
private _sims = createHashMap; { private _sim = toLowerANSI getText(_x >> "simulation"); if!(_sim in _sims) then { _sims set [_sim, configName _x]; }; } forEachReversed ("getNumber(_x >> 'scope') > 0" configClasses (configFile >> "CfgVehicles")); private _used_sims = []; { if(createVehicle [_y, [random 1e5,random 1e5,random 1e5], [], 0, "CAN_COLLIDE"] in vehicles) then { _used_sims pushBack _x; }; } forEach _sims; _used_sims sort true; copyToClipboard (_used_sims joinString toString [10]);
There is probably more simulations not listed like non-x versions of vehicle simulations but these are ones actually used in A3.