Arma 3
Advanced Rappelling
Advanced Rappelling in Exile?
hey man awesome mod i was wondering if there would be a easy way to implement this mod into Exile Mod and make it require the user to have the "Rope" item? thanks
< >
12/2 megjegyzés mutatása
how do u swing back and then frowerd in to like a window
duda  [Fejlesztő] 2016. nov. 8., 14:56 
Here's a work around to require the exile rope item. Add this code to your init.sqf file:

[] spawn {
waitUntil {!isNil "AR_Rappel_From_Heli_Action_Check"};
AR_Rappel_From_Heli_Action_Check = {
params ["_player","_vehicle"];
if!([_vehicle] call AR_Is_Supported_Vehicle) exitWith {false};
if(((getPos _vehicle) select 2) < 5 ) exitWith {false};
if(((getPos _vehicle) select 2) > 150 ) exitWith {false};
if(driver _vehicle == _player && isEngineOn _vehicle) exitWith {false};
if(speed _vehicle > 100) exitWith {false};
if!("Exile_Item_Rope" in magazines _player) exitWith {false};
true;
};
};
< >
12/2 megjegyzés mutatása
Laponként: 1530 50