allVariables: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "\| *arma3 * \| +([0-2]\.[0-9]{2}) * " to "|game1= arma3 |version1= $1 ") |
Lou Montana (talk | contribs) m (Text replacement - "\|s1= +" to "|s1= ") |
||
Line 18: | Line 18: | ||
*[[Location]] | *[[Location]] | ||
|s1= | |s1= '''allVariables''' namespace | ||
|p1= namespace: [[Control]] (''Since {{arma3}} v2.01''), [[Display]] (''Since {{arma3}} v2.01'') [[Team Member]], [[Namespace]], [[Object]], [[Group]], [[Task]], [[Location]] | |p1= namespace: [[Control]] (''Since {{arma3}} v2.01''), [[Display]] (''Since {{arma3}} v2.01'') [[Team Member]], [[Namespace]], [[Object]], [[Group]], [[Task]], [[Location]] |
Revision as of 15:40, 19 June 2021
Description
- Description:
- Returns a list of all variables from desired namespace. Namespaces supported:
- Multiplayer:
- Using profileNamespace and uiNamespace with this command has been disabled in multiplayer. Changelog
- Groups:
- Variables
Syntax
- Syntax:
- allVariables namespace
- Parameters:
- namespace: Control (Since Arma 3 v2.01), Display (Since Arma 3 v2.01) 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
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
- 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.