-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinit.sqf
34 lines (18 loc) · 1.27 KB
/
init.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
34
/* ==================================================== */
/* === Script for Arma3 by Whiplash. === */
/* === This script is open-source and can be used. === */
/* === See comments below for how-to-use. === */
/* ==================================================== */
// Init script. This script initiates the mission and calls client and server scripts.
/* ==================================================== */
if (!isServer) then {
[]execVM "scripts\init_client.sqf";
//whip_fnc_acreInit = compile preprocessFile "scripts\client_side\acre.sqf";
};
if (isServer) then {
[] execVM "scripts\init_server.sqf";
};
/* ************************************************************************************************************************************************************************************* */
/* **** END ******************************************************************************************************************************************************************** */
/* ************************************************************************************************************************************************************************************* */
finishMissionInit;