Epoch/Sources/epoch_server/init/fn_postinit.sqf
vbawol 54c76c1994 0.3.9.0454
Init weather script at server startup
1= Epoch Events run at server startup and then again after given delay.
0 = Default, runs after given delay.

Changed path from \x\addons\a3_epoch_server to \epoch_server to match
new build tool prefixes
2016-05-09 14:54:57 -05:00

24 lines
601 B
Plaintext

/*
Author: Aaron Clark - EpochMod.com
Contributors:
Description:
Initalizes variables and starts functions
Licence:
Arma Public License Share Alike (APL-SA) - https://www.bistudio.com/community/licenses/arma-public-license-share-alike
Github:
https://github.com/EpochModTeam/Epoch/tree/master/Sources/epoch_server/init/fn_postinit.sqf
*/
if (isNil "Epoch_SStart") then {
Epoch_SStart = true;
[] spawn {
call compile preprocessFileLineNumbers "epoch_code\init\both_init.sqf";
call compile preprocessFileLineNumbers "\epoch_server\init\server_init.sqf";
};
};
true