blckeagles-revisited-RC/@epochhive/addons/custom_server/SLS/SLS_init.sqf

25 lines
685 B
Plaintext
Raw Normal View History

2016-11-13 11:59:40 +00:00
/*
Static loot crate spawner
by Ghostrider-DbD-
For Arma 3 Exile and Epoch
Last Updated 11/12/16
--------------------------
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/
2016-11-13 11:59:40 +00:00
*/
#include "\q\addons\custom_server\Configs\blck_defines.hpp";
2016-11-13 11:59:40 +00:00
if not (isNull( configFile >> "CfgPatches" >> "a3_epoch_server" )) then
{
[] execVM "\q\addons\custom_server\SLS\SLS_init_epoch.sqf";
};
if not (isNull ( configFile >> "CfgPatches" >> "exile_server" ) ) then
{
2017-02-06 11:11:05 +00:00
[] execVM "\q\addons\custom_server\SLS\SLS_init_exile.sqf";
};