Sandbird
Valued Member!
I installed =BTC=_Logistic mod on my dayz server (https://board.nitrado.net/support-d...er/dayz/25929/dayz-heli-lift-script-f-r-rmod/), its a mod that makes helicopters been able to lift up vehicles.
It working fine, except when i select from the pilot's menu to drop the vehicle. It has 3 options.
Drop suv works fine but the other 2 options kick the player with :
19:20:50 - Player #0 XXXXXX (guiguiguigui) has been kicked by BattlEye: CreateVehicle Restriction #48
Now, my scripts.txt is empty. All i got is 1 "". The createvehicle.txt on line 48(+1) has this:
1 "Parachute" !="ParachuteWest"
and the script itself runs this code:
So it looks like its correct.
Anyone knows why BE is kicking me out then ? Do i need to put something else in createvehicle?
-Thanks
It working fine, except when i select from the pilot's menu to drop the vehicle. It has 3 options.

Drop suv works fine but the other 2 options kick the player with :
19:20:50 - Player #0 XXXXXX (guiguiguigui) has been kicked by BattlEye: CreateVehicle Restriction #48
Now, my scripts.txt is empty. All i got is 1 "". The createvehicle.txt on line 48(+1) has this:
1 "Parachute" !="ParachuteWest"
and the script itself runs this code:
Code:
..........
if (_dropped isKindOf "Static") then
{
_chute_type = "ParachuteWest";
_dropped setPos [((position _dropped) select 0),((position _dropped) select 1),((position _dropped) select 2) - 10];
} else
{
if (_dropped isKindOf "CAAnimalBase") then
{
_chute_type = "ParachuteWest";
} else {
sleep 2.5;
};
};
_chute = createVehicle [_chute_type, [((position _dropped) select 0),((position _dropped) select 1),((position _dropped) select 2)], [], 0, "NONE"];
_dropped attachTo [_chute,[0,0,1]];
if (withSmoke) then
{
_smoke = "SmokeShellRed" createVehicle position _dropped;
_smoke attachto [_dropped,[-0.5,0,0]];
_smoker = "SmokeShellGreen" createVehicle position _dropped;
_smoker attachto [_dropped,[0.5,0,0]];
};
So it looks like its correct.
Anyone knows why BE is kicking me out then ? Do i need to put something else in createvehicle?
-Thanks