mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
54c76c1994
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
24 lines
601 B
Plaintext
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
|