billw 1 Posted October 16, 2013 I'm referring to the "internal" vehicle names that can be used with createVehicle. I am modifying a script that spawns patrols etc., and need to specify a list of valid vehicles, but obviously cfgVehicles is just a giant list of mostly indecipherable gibberish with soldiers, vehicles, statics etc all mixed in together. Is there an existing vehicle list for Arma 3 somewhere? If not is there already a script or app that will generate one? If not I know what I am doing this lunch time :) If there is also a script command to save named screenshots then I should be able to auto generate a set of screen shots paired with the internal names, based on a set of heuristics which sounds pretty useful! Share this post Link to post Share on other sites
cuel 25 Posted October 16, 2013 Like this ? http://browser.six-projects.net/ Share this post Link to post Share on other sites
billw 1 Posted October 16, 2013 Maybe I'm not so bright but I can't figure out how to get a list of ONLY movable vehicles out of that. If I click on vehicles it shows everything in cfgVehicles, and if I click on any of the tags like "superclass LandVehicle" I get server error 500. If I type in LandVehicle as a search filter it filters it down to one entry... /edit Also you can only sort by name or display name columns. Basically maybe this is useful if you know the name of something and want to see what it looks like, but not if you want to find all of something based on criteria. Share this post Link to post Share on other sites
Tom_48_97 523 Posted October 16, 2013 There is also this: http://object.arma3.fr/ Share this post Link to post Share on other sites
billw 1 Posted October 16, 2013 Oh never mind I got it: http://browser.six-projects.net/cfg_vehicles/classlist?utf8=%E2%9C%93&version=67&commit=Change&options%5Bgroup_by%5D=faction&options%5Bsort_by%5D=vehicleclass&options%5Bfaction%5D=&options%5Bvehicleclass%5D=Car Share this post Link to post Share on other sites
na_palm 19 Posted October 16, 2013 For a script to make it also future proof, try not to rely on the vehicle names. Instead take the derived classes into account. take a look here: http://community.bistudio.com/wiki/ArmA_2:_CfgVehicles (Yeah thats the ArmA 2 one but up to now it is the same as used in ArmA 3) with this you simply ask: if ((_vehicle isKindOf "LandVehicle") || (_vehicle isKindOf "Air") || (_vehicle isKindOf "Ship")) then {}; and could be sure to get only the "real" vehicles. greetings Na_Palm Share this post Link to post Share on other sites
billw 1 Posted October 16, 2013 Thanks that's very nice, I like future proof! Share this post Link to post Share on other sites
na_palm 19 Posted October 16, 2013 (edited) a little change to make it better maintainable would be to use: _veh_derClass_list = [ "LandVehicle", "Air", "Ship" ]; _inList = false; { if (_vehicle isKindOf _x) exitWith {_inList = true;}; }forEach _veh_derClass_list; if (_inList) then { >--put your things here--< }; Edited October 16, 2013 by Na_Palm changed then -> exitwith Share this post Link to post Share on other sites