diff --git a/addons/optionsmenu/XEH_preInit.sqf b/addons/optionsmenu/XEH_preInit.sqf
index 42f50287f2..e35784560a 100644
--- a/addons/optionsmenu/XEH_preInit.sqf
+++ b/addons/optionsmenu/XEH_preInit.sqf
@@ -2,6 +2,7 @@
ADDON = false;
+PREP(debugDumpToClipboard);
PREP(onListBoxSettingsChanged);
PREP(onListBoxShowSelectionChanged);
PREP(onSettingsMenuOpen);
diff --git a/addons/optionsmenu/functions/fnc_debugDumpToClipboard.sqf b/addons/optionsmenu/functions/fnc_debugDumpToClipboard.sqf
new file mode 100644
index 0000000000..04f66112e7
--- /dev/null
+++ b/addons/optionsmenu/functions/fnc_debugDumpToClipboard.sqf
@@ -0,0 +1,75 @@
+/*
+ * Author: PabstMirror
+ * Dumps debug info to clipboard.
+ *
+ * Arguments:
+ * None
+ *
+ * Return Value:
+ * None
+ *
+ * Example:
+ * [] call ACE_optionsmenu_fnc_debugDumpToClipboard
+ *
+ * Public: No
+ */
+#include "script_component.hpp"
+
+private ["_var", "_unit", "_outputText", "_text"];
+
+#define MIN_ARRAY_SIZE 10
+
+_outputText = {
+ diag_log text (_this select 0);
+ "ace_clipboard" callExtension ((_this select 0) + "
+");
+};
+
+_text = format ["~~~~~~~~~ACE Debug~~~~~~~~~
+time = %1
+
+------Performance------
+diag_fps = %2
+count ace_common_waitAndExecArray = %3
+count cba_common_perFrameHandlerArray = %4 (max %5)
+count diag_activeSQFScripts = %6
+count diag_activeSQSScripts = %7
+count diag_activeMissionFSMs = %8",
+time, diag_fps, count ace_common_waitAndExecArray, {!isNil "_x"} count cba_common_perFrameHandlerArray, count cba_common_perFrameHandlerArray, count diag_activeSQFScripts, count diag_activeSQSScripts,count diag_activeMissionFSMs];
+[_text] call _outputText;
+
+
+_text = format ["
+------Player------
+typeOf = %1
+animationState = %2",
+if (isNull ace_player) then {"null"} else {typeOf ace_player},
+if (isNull ace_player) then {"null"} else {animationState ace_player}];
+[_text] call _outputText;
+
+
+_text = format ["
+------Array Info (count >= %1)------", MIN_ARRAY_SIZE];
+[_text] call _outputText;
+
+
+{
+ _var = missionNamespace getVariable [_x, nil];
+ if(!isnil "_var" && {(typeName _var) == "ARRAY"} && {(count _var) > MIN_ARRAY_SIZE}) then {
+ _text = format ["%1 - ARRAY SIZE: %2", _x, (count _var)];
+ [_text] call _outputText;
+ };
+} forEach (allVariables missionNamespace);
+
+{
+ _unit = _x;
+ {
+ _var = _unit getVariable [_x, nil];
+ if(!isnil "_var" && {(typeName _var) == "ARRAY"} && {(count _var) > MIN_ARRAY_SIZE}) then {
+ _text = format ["%1 on [%2] - ARRAY SIZE: %3", _x, _unit, (count _var)];
+ [_text] call _outputText;
+ };
+ } forEach (allVariables _unit);
+} forEach allUnits;
+
+"ace_clipboard" callExtension "--COMPLETE--";
diff --git a/addons/optionsmenu/gui/settingsMenu.hpp b/addons/optionsmenu/gui/settingsMenu.hpp
index 04e7ee5aaa..15eb411019 100644
--- a/addons/optionsmenu/gui/settingsMenu.hpp
+++ b/addons/optionsmenu/gui/settingsMenu.hpp
@@ -247,6 +247,13 @@ class ACE_settingsMenu {
text = "$STR_ACE_OptionsMenu_OpenExport";
x = X_PART(18);
action = QUOTE(if (GVAR(serverConfigGeneration) > 0) then {createDialog 'ACE_serverSettingsMenu'; });
+ };
+ class action_debug: actionClose {
+ idc = 1102;
+ text = "$STR_ACE_OptionsMenu_DumpDebug";
+ x = X_PART(26.5);
+ action = QUOTE([] call FUNC(debugDumpToClipboard));
+ tooltip = "$STR_ACE_OptionsMenu_DumpDebugTooltip";
};
};
};
diff --git a/addons/optionsmenu/stringtable.xml b/addons/optionsmenu/stringtable.xml
index 4dafaf1152..a878a33040 100644
--- a/addons/optionsmenu/stringtable.xml
+++ b/addons/optionsmenu/stringtable.xml
@@ -307,5 +307,11 @@
Abajo
Unten
+
+