missionNamespace: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Command Group: Variables)
m (Text replacement - "‎" to "")
 
(47 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| arma2 |= Game name
|game1= arma2
|version1= 1.00


|1.00|= Game version
|game2= arma2oa
____________________________________________________________________________________________
|version2= 1.50


| Returns the global namespace attached to mission. |= Description
|game3= tkoh
____________________________________________________________________________________________
|version3= 1.00


| '''missionNamespace''' |= Syntax
|game4= arma3
|version4= 0.50


|p1= |= PARAMETER1
|gr1= Namespaces
|gr2= Variables


|p2= |= PARAMETER2
|descr= Returns the global namespace attached to mission.


|p3= |= PARAMETER3
|s1= [[missionNamespace]]


| [[Namespace]] |= RETURNVALUE
|r1= [[Namespace]]


|x1= <sqf>
missionNamespace setVariable ["StringVariable", "myString"]; // same as: StringVariable = "myString";
_myStringValue = missionNamespace getVariable "StringVariable";
hint _myStringValue; // hints "myString"
</sqf>


|x1= <code>[[missionNamespace]] [[setVariable]] ["YourString",3];//Same as: YourString = 3;
|seealso= [[currentNamespace]] [[uiNamespace]] [[parsingNamespace]] [[profileNamespace]] [[localNamespace]] [[serverNamespace]] [[allVariables]] [[with]] [[ArmA:_Editing#Forward_Compatibility|Forward Compatibility]]
_yourString = [[missionNamespace]] [[getVariable]] "YourString";</code>|= EXAMPLE1
 
____________________________________________________________________________________________
 
| [[currentNamespace]], [[uiNamespace]], [[parsingNamespace]], [[profileNamespace]], [[with]], [[ArmA:_Editing#Forward_Compatibility|Forward Compatibility]] |= 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 2: New Scripting Commands List|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Variables|{{uc:{{PAGENAME}}}}]]

Latest revision as of 12:54, 26 April 2023

Hover & click on the images for description

Description

Description:
Returns the global namespace attached to mission.
Groups:
NamespacesVariables

Syntax

Syntax:
missionNamespace
Return Value:
Namespace

Examples

Example 1:
missionNamespace setVariable ["StringVariable", "myString"]; // same as: StringVariable = "myString"; _myStringValue = missionNamespace getVariable "StringVariable"; hint _myStringValue; // hints "myString"

Additional Information

See also:
currentNamespace uiNamespace parsingNamespace profileNamespace localNamespace serverNamespace allVariables with Forward Compatibility

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