ACE3/addons/common/functions/fnc_logModEntries.sqf

19 lines
434 B
Plaintext
Raw Normal View History

2015-04-02 08:27:21 +00:00
// by commy2
2015-05-14 22:12:40 +00:00
#include "script_component.hpp"
2015-04-02 08:27:21 +00:00
2015-05-14 22:12:40 +00:00
private ["_configs", "_entries", "_name"];
2015-04-02 08:27:21 +00:00
_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;