ACE3/addons/common/functions/fnc_logModEntries.sqf

18 lines
393 B
Plaintext
Raw Normal View History

2015-04-02 08:27:21 +00:00
// by commy2
private ["_configs", "_entries"];
_configs = "true" configClasses (configFile >> _this);
_entries = [];
{
{
_name = toLower configName _x;
if !(_name in _entries) then {
diag_log text _name;
_entries pushBack _name;
};
} forEach configProperties [_x, "toLower configName _x find 'ace' == 0", false];
2015-04-02 08:27:21 +00:00
} forEach _configs;