-
Notifications
You must be signed in to change notification settings - Fork 4
/
INVvars.sqf
24 lines (23 loc) · 852 Bytes
/
INVvars.sqf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
INV_PLAYERLIST = _this select 0;
INV_PLAYERSTRINGLIST = _this select 1;
INV_CANDOILLEGAL = _this select 2;
INV_ROLESTRING = format["%1", player];
INV_SaveVclArray = true;
INV_VehicleArray = [];
INV_ServerVclArray = [];
INV_shortcuts = true;
INV_JIP = true; publicVariable "INV_JIP";
_handler = [] execVM "INVfunctions.sqf";
waitUntil {scriptDone _handler};
_handler = [] execVM "createfunctions.sqf";
waitUntil {scriptDone _handler};
if (!isDedicated) then {
_handler = [] execVM "carparks.sqf";
waitUntil {scriptDone _handler};
};
_handler = [] execVM "masterarray.sqf";
waitUntil {scriptDone _handler};
_handler = [] execVM "shops.sqf";
waitUntil {scriptDone _handler};
_handler = [] execVM "vclarrsave.sqf";
if (!isDedicated) then { _handler = [] execVM "shopfarmfaclicenseactions.sqf"; };