-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinit.sqf
21 lines (16 loc) · 802 Bytes
/
init.sqf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
enableSaving [ false, false ];
call compileFinal preprocessFileLineNumbers "scripts\fetch_params.sqf";
call compileFinal preprocessFileLineNumbers "scripts\functions\init_functions.sqf";
call compileFinal preprocessFileLineNumbers "classnames.sqf";
kill_manager = compileFinal preprocessFileLineNumbers "scripts\kill_manager.sqf";
[] execVM "GREUH\scripts\GREUH_activate.sqf";
[] spawn compileFinal preprocessFileLineNumbers "scripts\spawn_protection.sqf";
[] spawn compileFinal preprocessFileLineNumbers "FAR_revive\FAR_revive_init.sqf";
// Fonctions serveur
if (isServer) then{
[] spawn compileFinal preprocessFileLineNumbers "scripts\server\server_init.sqf";
};
// Fonctions client
if (!isDedicated) then {
[] spawn compileFinal preprocessFileLineNumbers "scripts\client\client_init.sqf";
};