武装突袭3

武装突袭3

Advanced Rappelling
RogueAvengerTTV 2016 年 8 月 7 日 下午 11:43
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
< >
正在显示第 1 - 2 条,共 2 条留言
SuperBossMan 2016 年 11 月 6 日 上午 1:49 
how do u swing back and then frowerd in to like a window
duda  [开发者] 2016 年 11 月 8 日 下午 2: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;
};
};
< >
正在显示第 1 - 2 条,共 2 条留言
每页显示数: 1530 50