blckeagles-revisited-RC/@GMS/addons/custom_server/init/fn_init.sqf

28 lines
736 B
Plaintext
Raw Normal View History

/*
by Ghostrider [GRG]
Last Modified 3/14/17
--------------------------
License
--------------------------
All the code and information provided here is provided under an Attribution Non-Commercial ShareAlike 4.0 Commons License.
http://creativecommons.org/licenses/by-nc-sa/4.0/
*/
#include "\q\addons\custom_server\Configs\blck_defines.hpp";
/////////////////////////////////////////////
// Run the initialization routinge
////////////////////////////////////////////
2017-10-19 02:31:53 +00:00
if (isServer) then
{
[] execVM "\q\addons\custom_server\init\blck_init_server.sqf";
2017-10-19 02:31:53 +00:00
};
2019-09-11 03:41:47 +00:00
if (!isServer && !hasInterface) then
{
diag_log format["Loading blackeagls for headless clients"];
[] execVM "\q\addons\custom_server\init\blck_init_HC.sqf";
2019-09-11 03:41:47 +00:00
};
2017-10-19 02:31:53 +00:00