-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Description
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
Metadata
Metadata
Assignees
Labels
No labels