blckeagles-revisited-RC/@epochhive/addons/custom_server/SLS/SLS_init.sqf
Ghostrider-DbD- 060656f25a Update SLS_init.sqf
Fixed Typo
2017-02-06 06:11:05 -05:00

20 lines
605 B
Plaintext

/*
Static loot crate spawner
by Ghostrider-DbD-
For Arma 3 Exile and Epoch
Last Updated 11/12/16
Written to be independent of blckeagles functions for now.
However, as written it relies on variables defined in in the configurations files for Epoch / Exile for blckeagls.
It could easily be addapted to other purposes.
*/
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
{
[] execVM "\q\addons\custom_server\SLS\SLS_init_exile.sqf";
};