[dismiss]
This wiki is a copy of the original Skyrim CK wiki created and maintained by the UESP.net. See CreationKit:Copy Notice for more info.
GetGameSettingString - Game
Jump to navigation
Jump to search
Member of: Game Script
Obtains the value of the specified string game setting
Syntax[edit | edit source]
string Function GetGameSettingString(string asGameSetting) native global
Parameters[edit | edit source]
- asGameSetting: The name of the setting to get.
Return Value[edit | edit source]
None.
Examples[edit | edit source]
; Print out the value of a game setting to the log
Debug.Trace("sMySetting = " + Game.GetGameSettingString("sMySetting"))