SetGlobalVariable

From the Fallout3 GECK Wiki
Revision as of 00:30, 28 March 2015 by imported>Jazzisparis (Created page with "{{Function |origin = JIP |summary = Sets the value of a global variable. |name = SetGlobalVariable |returnType = value:float |arguments = {{FunctionArgument |Name =...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
< [[::Category:Functions|Category:Functions]]

A function added by the JIP NVSE Plugin.

Description

Sets the value of a global variable.

Syntax

[help]
(value:float) SetGlobalVariable global:ref newValue:float

Example

int	iModIndex
ref	rGlobalVar


set iModIndex to GetModIndex "LonesomeRoad.esm"
set rGlobalVar to BuildRef iModIndex 13842

SetGlobalVariable rGlobalVar 15.6

Notes

  • This function is meant to be used for setting the values of external global variables (i.e. from other mods). You first use BuildRef and create a reference to the global, on which this function can then be called.

See Also