-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathINVvars.sqf
33 lines (23 loc) · 1004 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
25
26
27
28
29
30
31
32
33
INV_MAX_ITEMS = 1000000;
INV_MAX_DROPS = 300;
INV_shortcuts = true;
INV_SperrenVerbotArray = [[copbase1, 250],[mosqueprop, 120], [banklogic, 35], [tairspawn, 150], [asairspawn, 30], [afacspawn, 30], [airfacspawn, 30], [insvehspawn, 80],[redhelispawn, 100],[CopPrisonAusgang, 20]];
_handler = [] execVM "INVfunctions.sqf";
waitUntil {scriptDone _handler};
_handler = [] execVM "createfunctions.sqf";
waitUntil {scriptDone _handler};
_handler = [] execVM "carparks.sqf";
waitUntil {scriptDone _handler};
_handler = [] execVM "masterarray.sqf";
waitUntil {scriptDone _handler};
_handler = [] execVM "Awesome\Scripts\optimize_2.sqf";
waitUntil {scriptDone _handler};
_handler = [] execVM "Awesome\Scripts\shops.sqf";
waitUntil {scriptDone _handler};
_handler = [] execVM "facharvest.sqf";
waitUntil {scriptDone _handler};
_handler = [] execVM "licensearray.sqf";
waitUntil {scriptDone _handler};
if (isClient) then {
_handler = [] execVM "shopfarmfaclicenseactions.sqf";
};