allVariables: Difference between revisions
Jump to navigation
Jump to search
USSRLongbow (talk | contribs) mNo edit summary |
Killzone Kid (talk | contribs) (does not work for control) |
||
Line 8: | Line 8: | ||
| Returns a list of all variables from desired namespace. Namespaces supported:<br> | | Returns a list of all variables from desired namespace. Namespaces supported:<br> | ||
* [[Control]] | * [[Control]] - '''does not work for control''' | ||
* [[Team_Member]] | * [[Team_Member]] | ||
* [[Namespace]] | * [[Namespace]] |
Revision as of 17:19, 13 November 2018
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
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.