AdvancedRappelling icon indicating copy to clipboard operation
AdvancedRappelling copied to clipboard

Install Help

Open MAcnova opened this issue 8 years ago • 1 comments

I have tried to install this on our server I have the folder uploaded, I have @AR_advancedrappelling in the command line , I have the init.sqf as so

};

AR_SUPPORTED_VEHICLES = [ "Helicopter", "VTOL_Base_F", "B_Heli_Light_01_armed_F", "O_Heli_Light_02_v2_F", "RHS_UH1Y_FFAR_d", "RHS_UH1Y_d", "RHS_MELB_H6M", "RHS_UH60M"

];

AR_Is_Supported_Vehicle = { params ["_vehicle","_isSupported"]; _isSupported = false; if(not isNull _vehicle) then { { if(_vehicle isKindOf _x) then { _isSupported = true; }; } forEach (missionNamespace getVariable ["AR_SUPPORTED_VEHICLES_OVERRIDE",AR_SUPPORTED_VEHICLES]); }; _isSupported; };

what am i doing wrong

MAcnova avatar Sep 09 '17 14:09 MAcnova

Your first curly-bracket is backwards. You have '}' and it needs to be '{'

maddogmurphy8 avatar Mar 24 '20 04:03 maddogmurphy8