GetGameSettingInt - Game

From the CreationKit Wiki
Revision as of 19:02, 21 February 2011 by imported>Jlundin (Created page with 'Category:Scripting Category:Papyrus '''Member of:''' Game Script Obtains the value of the specified int game setting == Syntax == <source lang="papyrus"> int Functi…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Member of: Game Script

Obtains the value of the specified int game setting

Syntax

int Function GetGameSettingInt(string asGameSetting) native global

Parameters

  • asGameSetting: The name of the setting to get.

Return Value

None.

Examples

; Print out the value of a game setting to the log
Debug.Trace("iMySetting = " + Game.GetGameSettingInt("iMySetting"))

See Also