ACE3/addons/common/functions/fnc_logControls.sqf
2015-01-12 19:22:58 +01:00

16 lines
326 B
Plaintext

// by commy2
#include "\z\ace\addons\common\script_component.hpp"
private ["_array", "_index"];
_array = [];
for "_index" from 0 to 10000 do {
if (str (findDisplay _this displayCtrl _index) != "No control") then {
diag_log text str (findDisplay _this displayCtrl _index);
_array pushBack _index;
};
};
_array;