profileNamespace

From Bohemia Interactive Community
Revision as of 11:24, 13 May 2022 by Lou Montana (talk | contribs) (Text replacement - "\|x([0-9])= *<code>([^<]*)<\/code>" to "|x$1= <sqf>$2</sqf>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Hover & click on the images for description

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:
NamespacesVariables

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:
saveProfileNamespace missionNamespace uiNamespace parsingNamespace currentNamespace localNamespace 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
Joris - c
Posted on Nov 25, 2011 - 17:33 (UTC)
The variables are loaded when the user profile is loaded or changed.