Jump to content
Sign in to follow this  
jrog

BE createvehicle.txt not logging helicopters

Recommended Posts

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

can I get example of the script entry to create vehicles ?

Share this post


Link to post
Share on other sites

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 by jrog
related reports

Share this post


Link to post
Share on other sites

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

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

note: this is fixed in PROFILING/PERFORMANCE server branch and in 1.48 RC

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×