jrog 10 Posted May 25, 2015 createVehicle.txt works properly for all vehicles except the helicopters. I have no entry when spawning a chopper. Example //new 3 "^[bOI]_Heli_" //nothing gets logged 3 ^[bOI]_Heli_ //nothing gets logged 3 O_Heli_Light_02_unarmed_F //nothing gets logged 3 _Heli_ //nothing gets logged With one of the following 1 "" 1 .+ 1 "[.\s\S]*" all I get is this (with some extra entries for parachutes): #0 "Supply40" 3:2 [0,0,0] #0 "Supply160" 3:3 [0,0,0] Anyone else experiencing this issue? Any help appreciated. Thanks. Share this post Link to post Share on other sites
Dwarden 1125 Posted May 25, 2015 can I get example of the script entry to create vehicles ? Share this post Link to post Share on other sites
jrog 10 Posted May 25, 2015 (edited) private ["_vehicle", "_class", "_position"]; _vehicle = null; _class = [_this,0,nil] call BIS_fnc_param; _position = [_this,1,[]] call BIS_fnc_param; //... _vehicle = createVehicle [_class, _position, [], 0, "NONE"]; _vehicle Called, for ex.: _vehicle = ["B_Heli_Light_01_F", getPosATL player] call fnc_spawnVehicle; Or just this, run locally from the console, the same result: _vehicle = "B_Heli_Light_01_F" createVehicle position player; Seems to be related : 0023769 - Arma 3 Feedback Tracker http://feedback.arma3.com/view.php?id=23769 http://www.combinedarms.de/news/index.php/News/10096-Battleye-createvehicle-txt/ Edited May 25, 2015 by jrog related reports Share this post Link to post Share on other sites
bamf_asylum 10 Posted June 1, 2015 Dwarden- This began on 11/4/14 when the heli DLC pack was released. There has not been a helicopter in our createvehicle logs since that date. Bamf Community Manager Gaming-Asylum Share this post Link to post Share on other sites
claws01 22 Posted July 7, 2015 use that my friends 5 "^[bOI]_(?!\d)((APC|Boat|Heli|MBT|MRAP|Plane|Quadbike|SDV|Truck|UAV_02|UGV)_|Lifeboat)" Share this post Link to post Share on other sites
Dwarden 1125 Posted July 7, 2015 note: this is fixed in PROFILING/PERFORMANCE server branch and in 1.48 RC Share this post Link to post Share on other sites