ACE3/addons/common/functions/fnc_logDisplays.sqf

16 lines
288 B
Plaintext
Raw Normal View History

// by commy2
2015-01-12 18:22:58 +00:00
#include "\z\ace\addons\common\script_component.hpp"
private ["_array", "_index"];
_array = [];
for "_index" from 0 to 10000 do {
if (str (findDisplay _index) != "No Display") then {
diag_log text str findDisplay _index;
_array pushBack _index;
};
};
_array;