localNamespace: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (typo in description)
m (Some wiki formatting)
 
(24 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Command|Comments=
{{RV|type=command
____________________________________________________________________________________________


| arma3 |Game name=
|game1= arma3
|version1= 2.00


|2.00|Game version=
|gr1= Namespaces


|gr1= Variables |GROUP1=
|gr2= Variables


|gr2= Multiplayer |GROUP2=
|gr3= Multiplayer
____________________________________________________________________________________________


| Returns local [[Namespace]] attached to the mission. Has the same lifetime as [[missionNamespace]] but variables '''cannot be broadcasted''' out of or into this namespace in multiplayer and will not be serialized when game is saved. UI variables can be safely stored in this namespace. Use [[allVariables]] command to save the variables elsewhere if required. |DESCRIPTION=
|descr= Returns local [[Namespace]] attached to the mission.
____________________________________________________________________________________________
Has the same lifetime as [[missionNamespace]] but variables '''cannot be broadcasted''' out of or into this namespace in multiplayer and will not be serialized when game is saved. UI variables can be safely stored in this namespace.
Use [[allVariables]] command to save the variables elsewhere if required.


| [[localNamespace]] |SYNTAX=
|s1= [[localNamespace]]


|p1= |PARAMETER1=  
|r1= [[Namespace]]


|p2= |PARAMETER2=  
|x1= <sqf>localNamespace setVariable ["abc", 123];</sqf>


|p3= |PARAMETER3=  
|x2= <sqf>with localNamespace do { hint str abc };</sqf>


| [[Namespace]] |RETURNVALUE=
|seealso= [[missionNamespace]] [[uiNamespace]] [[parsingNamespace]] [[profileNamespace]] [[currentNamespace]] [[allVariables]]
 
 
|x1= <code>[[localNamespace]] [[setVariable]] ["abc", 123]</code>|EXAMPLE1=
|x2= <code>[[with]] [[localNamespace]] [[do]] {[[hint]] [[str]] abc};</code>|EXAMPLE2=  
 
____________________________________________________________________________________________
 
| [[missionNamespace]], [[uiNamespace]], [[parsingNamespace]], [[profileNamespace]], [[currentNamespace]], [[allVariables]] |SEEALSO=
 
|  |MPBEHAVIOUR=
____________________________________________________________________________________________
}}
}}
<h3 style='display:none'>Notes</h3>
<dl class='command_description'>
<!-- Note Section BEGIN -->
<!-- Note Section END -->
</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}}}}]]

Latest revision as of 13:01, 4 May 2022

Hover & click on the images for description

Description

Description:
Returns local Namespace attached to the mission. Has the same lifetime as missionNamespace but variables cannot be broadcasted out of or into this namespace in multiplayer and will not be serialized when game is saved. UI variables can be safely stored in this namespace. Use allVariables command to save the variables elsewhere if required.
Groups:
NamespacesVariablesMultiplayer

Syntax

Syntax:
localNamespace
Return Value:
Namespace

Examples

Example 1:
localNamespace setVariable ["abc", 123];
Example 2:
with localNamespace do { hint str abc };

Additional Information

See also:
missionNamespace uiNamespace parsingNamespace profileNamespace currentNamespace allVariables

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