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
< >
Viser 1-2 af 2 kommentarer
SuperBossMan 6. nov. 2016 kl. 1:49 
how do u swing back and then frowerd in to like a window
duda  [udvikler] 8. nov. 2016 kl. 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;
};
};
< >
Viser 1-2 af 2 kommentarer
Per side: 1530 50