- Found in:
- SKSE
Description
Wiki Description
Modifies the value of string Game Settings. (This function requires SKSE)
Caveats
CK Wiki - Notes
- Edits to Game Settings are not saved. While they'll persist across consecutive save loads during the same game session, they'll be wiped when the game closes and will revert to their normal values the next time the game is loaded. One can maintain such edits via a maintenance function, reapplying the changes when necessary.
Parameters
stringsetting
CK Wiki Description
The Game Setting to modify
stringvalue
CK Wiki Description
The desired string value
Examples
Game.SetGameSettingString("sDwarven", "Dwemer")Auto-Generated Example
string myString__setting
string myString__value
Game.SetGameSettingString(myString__setting, myString__value)Related Pages
- Game
- Game Settings
- Game.GetGameSettingFloat(...)
- Game.SetGameSettingFloat(...)
- Game.GetGameSettingInt(...)
- Game.SetGameSettingInt(...)
- Game.GetGameSettingString(...)
