View difference between Paste ID: gm84QJnd and 9TAx1y0G
SHOW: | | - or go back to the newest paste.
1-
Init.sqf
1+
Init.sqf:
2
3
4
5
call compile preprocessFile "staticData.sqf";
6-
staticData.sqf
6+
7
---------------------------------------------------------------------------------------------
8
staticData.sqf:
9
10
11-
/*
11+
12-
 * Mil logistics convoy transport vehicles per faction
12+
13-
 */
13+
14
15-
ALIVE_factionDefaultTransport = [] call ALIVE_fnc_hashCreate;
15+
ALIVE_airBuildingTypes = ALIVE_airBuildingTypes + [
16-
[ALIVE_factionDefaultTransport, "OPF_F", ["O_Truck_02_transport_F","O_Truck_02_covered_F"]] call ALIVE_fnc_hashSet;
16+
	"hangar"
17-
[ALIVE_factionDefaultTransport, "OPF_G_F", ["O_G_Van_01_transport_F"]] call ALIVE_fnc_hashSet;
17+
];
18-
[ALIVE_factionDefaultTransport, "IND_F", ["I_Truck_02_covered_F","I_Truck_02_transport_F"]] call ALIVE_fnc_hashSet;
18+
19-
[ALIVE_factionDefaultTransport, "BLU_F", ["B_Truck_01_transport_F","B_Truck_01_covered_F"]] call ALIVE_fnc_hashSet;
19+
ALIVE_militaryAirBuildingTypes = ALIVE_militaryAirBuildingTypes + [
20-
[ALIVE_factionDefaultTransport, "BLU_G_F", ["B_G_Van_01_transport_F"]] call ALIVE_fnc_hashSet;
20+
	"tenthangar"
21-
[ALIVE_factionDefaultTransport, "CIV_F", ["C_Van_01_transport_F"]] call ALIVE_fnc_hashSet;
21+
];