This commit is contained in:
IT07 2016-07-19 21:33:32 +02:00
parent 2f9cee810e
commit cbb71c8854
2 changed files with 29 additions and 0 deletions

View File

@ -17,6 +17,7 @@
**[FIXED]** still using old ExecVM method <br />
**[NEW]** mission "BaseAttack" is now compatible with Epoch <br />
**[NEW]** loot crates will not always have the same loadout now <br />
**[NEW]** randomization of loot amounts <br />
**[REMOVED]** S.W.A.T. faction <br />
**[TWEAKED]** blacklist settings <br />
**[TWEAKED]** aiInventory settings <br />

View File

@ -0,0 +1,28 @@
/*
Author: IT07
Description:
will log all used overrides to the server's RPT
Returns:
nothing
*/
{
if (isClass _x) then
{
_c1 = configName _x;
{
if (isClass _x) then
{
_c2 = configName _x;
{
if not(isClass _x) then
{
["Overrides", 1, format["Overriding 'CfgVemfReloaded >> %1 >> %2 >> %3'", _c1, _c2, configName _x]] ExecVM ("log" call VEMFr_fnc_scriptPath);
};
} forEach (configProperties [configFile >> "CfgVemfReloadedOverrides" >> _c1 >> _c2, "true", false]);
} else { ["Overrides", 1, format["Overriding 'CfgVemfReloaded >> %1 >> %2", _c1, configName _x]] ExecVM ("log" call VEMFr_fnc_scriptPath) };
} forEach (configProperties [configFile >> "CfgVemfReloadedOverrides" >> _c1, "true", false]);
} else { ["Overrides", 1, format["Overriding 'CfgVemfReloaded >> %1'", configName _x]] ExecVM ("log" call VEMFr_fnc_scriptPath) };
} forEach (configProperties [configFile >> "CfgVemfReloadedOverrides", "true", false]);