mirror of
https://github.com/IT07/a3_vemf_reloaded.git
synced 2024-08-30 16:52:11 +00:00
renamed
This commit is contained in:
parent
2f9cee810e
commit
cbb71c8854
@ -17,6 +17,7 @@
|
|||||||
**[FIXED]** still using old ExecVM method <br />
|
**[FIXED]** still using old ExecVM method <br />
|
||||||
**[NEW]** mission "BaseAttack" is now compatible with Epoch <br />
|
**[NEW]** mission "BaseAttack" is now compatible with Epoch <br />
|
||||||
**[NEW]** loot crates will not always have the same loadout now <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 />
|
**[REMOVED]** S.W.A.T. faction <br />
|
||||||
**[TWEAKED]** blacklist settings <br />
|
**[TWEAKED]** blacklist settings <br />
|
||||||
**[TWEAKED]** aiInventory settings <br />
|
**[TWEAKED]** aiInventory settings <br />
|
||||||
|
28
a3_vemf_reloaded/sqf/overrides.sqf
Normal file
28
a3_vemf_reloaded/sqf/overrides.sqf
Normal 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]);
|
Loading…
Reference in New Issue
Block a user