We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using the ace_clipboard extension and a piece of code similar to this:
{ private["_var"]; _var = missionNamespace getVariable [_x, nil]; if(!isnil "_var" && {(typeName _var) == "ARRAY"} ) then { diag_log text format["%1 - ARRAY SIZE: %2", _x, (count _var)]; }; } forEach (allVariables missionNamespace); { { private["_var"]; _var = missionNamespace getVariable [_x, nil]; if(!isnil "_var" && {(typeName _var) == "ARRAY"} ) then { diag_log text format["%1 - ARRAY SIZE: %2", _x, (count _var)]; }; } forEach allVariables(_x); } forEach allUnits;
export all the current values of variables to the clipboard. Usefull for debugging
The text was updated successfully, but these errors were encountered:
PabstMirror
No branches or pull requests
Using the ace_clipboard extension and a piece of code similar to this:
export all the current values of variables to the clipboard. Usefull for debugging
The text was updated successfully, but these errors were encountered: