blckeagles-revisited-RC/@GMS/addons/custom_server/init/fn_init.sqf
Chris Cardozo b69aad6bbf Build 180 Ver 6.92
See the changelog for info
2019-09-02 08:45:20 -04:00

29 lines
800 B
Plaintext

/*
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";
///////////////////////////////////////////////
// prevent the system from being started twice
//////////////////////////////////////////////
if !(isNil "blck_missionSystemRunning") exitWith {};
blck_missionSystemRunning = true;
/////////////////////////////////////////////
// Run the initialization routinge
////////////////////////////////////////////
if (isServer) then
{
execVM "\q\addons\custom_server\init\blck_init_server.sqf";
};