allVariables: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Bot: Reverted to revision 110472 by killzone_kid on 2018-11-13T16:19:05Z)
m (Some wiki formatting)
 
(49 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| arma3 |= Game name
|game1= arma3
|version1= 1.38


| 1.38 |= Game version
|gr1= Namespaces
____________________________________________________________________________________________
|gr2= Variables


| Returns a list of all variables from desired namespace. Namespaces supported:<br>
|mp= {{Feature|important|Using [[profileNamespace]] and [[uiNamespace]] with this command has been disabled in multiplayer in {{GVI|arma3|1.40}} - see {{Link|https://forums.bohemia.net/forums/topic/140837-development-branch-changelog/?do{{=}}findComment&comment{{=}}2869646|Changelog}}.}}
* [[Control]] - '''does not work for control'''
* [[Team_Member]]
* [[Namespace]]
* [[Object]]
* [[Group]]
* [[Task]]
* [[Location]]
|= Description
____________________________________________________________________________________________


|descr= Returns a list of all variables from the desired namespace.


| '''allVariables''' namespace |= Syntax
|s1= [[allVariables]] namespace


| p1= namespace: [[Control]], [[Team Member]], [[Namespace]], [[Object]], [[Group]], [[Task]], [[Location]] |=
|p1= namespace: [[Namespace]], [[Object]], [[Group]], [[Task]], [[Location]], [[Team Member]], {{GVI|arma3|2.02|size= 0.75}} [[Control]], {{GVI|arma3|2.02|size= 0.75}} [[Display]]


| [[Array]] of [[String]]s - array of variable names. All names are in lower case (see [[toLower]])|= RETURNVALUE
|r1= [[Array]] of [[String]]s - array of variable names. All names are in lower case (see [[toLower]])
____________________________________________________________________________________________


| x1= <code>_allVarsUINamespace = [[allVariables]] [[uiNamespace]];</code>|= EXAMPLE1
|x1= <sqf>_allVarsUINamespace = allVariables uiNamespace;</sqf>
| x2= <code>_allVarsTrigger = [[allVariables]] trigger1;</code>|= EXAMPLE2
____________________________________________________________________________________________


| [[allControls]], [[allDisplays]], [[allCurators]], [[allGroups]], [[allDead]], [[allDeadMen]] |= SEEALSO
|x2= <sqf>_allVarsTrigger = allVariables trigger1;</sqf>


| |= MPBEHAVIOUR
|seealso= [[allControls]] [[allDisplays]] [[allCurators]] [[allGroups]] [[allDead]] [[allDeadMen]]
____________________________________________________________________________________________
}}
}}


<h3 style='display:none'>Notes</h3>
{{Note
<dl class='command_description'>
|user= longbow
<!-- Note Section BEGIN -->
|timestamp= 20161001235400
 
|text= One still can use [[allVariables]] in Multiplayer against [[profileNamespace]] and [[uiNamespace]] using config parser. In [[Description.ext]]
<!-- Note Section END -->
<sqf>_EXEC(someVar = allVariables profileNamespace)</sqf>
</dl>
 
<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 -->
<dl class="command_description">
<dd class="notedate">Posted on June 11, 2016 - 00:27 (UTC)</dd>
<dt class="note">[[User:Benargee|Benargee]]</dt>
<dd class="note">Using [[profileNamespace]] and [[uiNamespace]] with this command has been disabled in multiplayer. [https://forums.bistudio.com/topic/140837-development-branch-changelog/page-28#entry2869646]
</dd>
</dl>
<dl class="command_description">
<dd class="notedate">Posted on October 1, 2016 - 23:54 (UTC)</dd>
<dt class="note">[[User:longbow|longbow]]</dt>
<dd class="note">One still can use [[allVariables]] in Multiplayer against [[profileNamespace]] and [[uiNamespace]] using config parser. In [[Description.ext]]
<code>_EXEC(somevar = allVariables profileNamespace)</code>
in code
in code
<code>_allprofilevars = parsingNamespace getVariable "somevar"</code>
<sqf>_allProfileVars = parsingNamespace getVariable "someVar"</sqf>
but list will be valid only at the moment of parsing config.
but this list will be valid only at the moment of config parsing.
</dd>
}}
</dl>
<!-- DISCONTINUE Notes -->

Latest revision as of 17:11, 15 March 2023

Hover & click on the images for description

Description

Description:
Returns a list of all variables from the desired namespace.
Multiplayer:
Using profileNamespace and uiNamespace with this command has been disabled in multiplayer in Arma 3 logo black.png1.40 - see Changelog.
Groups:
NamespacesVariables

Syntax

Syntax:
allVariables namespace
Parameters:
namespace: Namespace, Object, Group, Task, Location, Team Member, Arma 3 logo black.png2.02 Control, Arma 3 logo black.png2.02 Display
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:
allControls allDisplays allCurators allGroups allDead allDeadMen

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
longbow - c
Posted on Oct 01, 2016 - 23:54 (UTC)
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 this list will be valid only at the moment of config parsing.