profileNamespace: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "<tt>([a-zA-Z0-9\. _"']+)<\/tt>" to "{{hl|$1}}") |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
Line 1: | Line 1: | ||
{{RV|type=command | {{RV|type=command | ||
|game1= | |game1= tkoh | ||
|version1= 1.00 | |version1= 1.00 | ||
Line 12: | Line 12: | ||
|gr1= Variables | |gr1= Variables | ||
|descr= Returns the global namespace attached to the active user profile. Use [[setVariable]] and [[getVariable]] to save and load data to and from this [[Namespace]]. A variable can be deleted by setting its value to [[nil]]. By default the variables set in this namespace will exist while the game is running and variables are saved persistently when the game is closed. Saving can also be forced by using [[saveProfileNamespace]]. | |descr= Returns the global namespace attached to the active user profile. Use [[setVariable]] and [[getVariable]] to save and load data to and from this [[Namespace]]. A variable can be deleted by setting its value to [[nil]]. By default the variables set in this namespace will exist while the game is running, and variables are saved persistently when the game is closed. Saving can also be forced by using [[saveProfileNamespace]] to prevent data loss on e.g game crash.<br> | ||
The variables are stored next to the user profile in a file named {{hl|myUsername.vars.GAMENAME}}. | The variables are stored next to the user profile in a file named {{hl|myUsername.vars.GAMENAME}}. | ||
|s1= | |s1= [[profileNamespace]] | ||
|r1= [[Namespace]] | |r1= [[Namespace]] | ||
|x1= <code> | |x1= <code>[[profileNamespace]] [[setVariable]] ["TAG_kills", 10000]; | ||
{{cc|somewhere else in the code}} | |||
_kills = [[profileNamespace]] [[getVariable]] ["TAG_kills", 0];</code> | |||
|seealso= [[saveProfileNamespace]], [[missionNamespace]], [[uiNamespace]], [[parsingNamespace]], [[currentNamespace]], [[localNamespace]], [[allVariables]], [[with]], [[ArmA:_Editing#Forward_Compatibility|Forward Compatibility]] | |seealso= [[saveProfileNamespace]], [[missionNamespace]], [[uiNamespace]], [[parsingNamespace]], [[currentNamespace]], [[localNamespace]], [[allVariables]], [[with]], [[ArmA:_Editing#Forward_Compatibility|Forward Compatibility]] | ||
}} | }} | ||
{{Note | |||
|user= Joris | |||
|timestamp= 20111125173300 | |||
|text= The variables are loaded when the user profile is loaded or changed. | |||
}} |
Revision as of 00:59, 5 December 2021
Description
- Description:
- Returns the global namespace attached to the active user profile. Use setVariable and getVariable to save and load data to and from this Namespace. A variable can be deleted by setting its value to nil. By default the variables set in this namespace will exist while the game is running, and variables are saved persistently when the game is closed. Saving can also be forced by using saveProfileNamespace to prevent data loss on e.g game crash.
The variables are stored next to the user profile in a file named myUsername.vars.GAMENAME. - Groups:
- Variables
Syntax
- Syntax:
- profileNamespace
- Return Value:
- Namespace
Examples
- Example 1:
profileNamespace setVariable ["TAG_kills", 10000]; // somewhere else in the code _kills = profileNamespace getVariable ["TAG_kills", 0];
Additional Information
- See also:
- saveProfileNamespacemissionNamespaceuiNamespaceparsingNamespacecurrentNamespacelocalNamespaceallVariableswithForward 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
- Posted on Nov 25, 2011 - 17:33 (UTC)
- The variables are loaded when the user profile is loaded or changed.