Global

From the Fallout4 CreationKit Wiki
Revision as of 20:16, 13 July 2016 by imported>Hitbts (Moved the editor image, and floated it.)
Jump to navigation Jump to search

Papyrus: GlobalVariable Script

A Global is a numeric variable that can be referenced from all over the game, including in conditions and Papyrus. Globals can represent predefined values, such as Dogmeat's attack ranges or how much of the game's introduction to skip (pictured); or they can be used to keep track of things that change over the course of the game, such as how long it's been since Cait has used chems. (No, really.)

Globals are usually created for use in conditions. Though conditions are capable of inspecting values in other systems, like conditional Papyrus properties, it's often better to keep things separate so that they can be edited independently.

Editor Dialog

Global Editor.png
  • ID: The editor ID that this form uses in the Creation Kit.
  • Value: The initial value of this global, when the game first starts (or the mod is first installed).
  • Constant: If this box is checked, the game will not allow the global's value to change. The global's value will still be written to save files, but that value will not be used if the global is flagged as constant when the save file is loaded. This is useful when updating a global that is meant to represent a predefined value.

See Also