allVariables: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Bot: Replacing category Scripting Commands Arma 3 with Arma 3: Scripting Commands)
m (Bot: Reverted to revision 110472 by killzone_kid on 2018-11-13T16:19:05Z)
Line 44: Line 44:


<h3 style='display:none'>Bottom Section</h3>
<h3 style='display:none'>Bottom Section</h3>
[[Category:Arma_3:_New_Scripting_Commands_List|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Variables|{{uc:{{PAGENAME}}}}]]
<!-- CONTINUE Notes -->
<!-- CONTINUE Notes -->
<dl class="command_description">
<dl class="command_description">
Line 62: Line 67:
</dl>
</dl>
<!-- DISCONTINUE Notes -->
<!-- DISCONTINUE Notes -->
[[Category:Arma 3: New Scripting Commands List|{{uc:{{PAGENAME}}}}]]
[[Category:Arma 3: Scripting Commands]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Command Group: Variables|{{uc:{{PAGENAME}}}}]]

Revision as of 19:15, 3 December 2018

Hover & click on the images for description

Description

Description:
Returns a list of all variables from desired namespace. Namespaces supported:
Groups:
Uncategorised

Syntax

Syntax:
allVariables namespace
Parameters:
namespace: Control, Team Member, Namespace, Object, Group, Task, Location
Return Value:
Array of Strings - array of variable names. All names are in lower case (see toLower)

Examples

Example 1:
_allVarsUINamespace = allVariables uiNamespace;
Example 2:
_allVarsTrigger = allVariables trigger1;

Additional Information

See also:
allControlsallDisplaysallCuratorsallGroupsallDeadallDeadMen

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

Bottom Section

Posted on June 11, 2016 - 00:27 (UTC)
Benargee
Using profileNamespace and uiNamespace with this command has been disabled in multiplayer. [1]
Posted on October 1, 2016 - 23:54 (UTC)
longbow
One still can use allVariables in Multiplayer against profileNamespace and uiNamespace using config parser. In Description.ext _EXEC(somevar = allVariables profileNamespace) in code _allprofilevars = parsingNamespace getVariable "somevar" but list will be valid only at the moment of parsing config.