24 lines
764 B
Plaintext
24 lines
764 B
Plaintext
|
/*
|
||
|
by Ghostrider-DbD-
|
||
|
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
|
||
|
////////////////////////////////////////////
|
||
|
execVM "\q\addons\custom_server\init\blck_init.sqf";
|