Background for Fallout 4
Member of the Game script
voidfunctionSetGameSettingBool(stringsetting, boolvalue)NativeGlobal

Description

Wiki Description

This function sets a Game Setting to the specified value.

These include all the variables listed under Gameplay->Settings menu in the creation kit, but *does not* include variables set in the ini files. To set ini variables see Utility.SetINIBool(...).


Caveats


Parameters

stringsetting

CK Wiki Description

Placeholder Description.

boolvalue

CK Wiki Description

Placeholder Description.


Examples

;Disables blinking while talking.
Game.SetGameSettingBool("bAllowBlinksDuringSpeech", false)

Auto-Generated Example

string myString__setting
bool myBool__value

Game.SetGameSettingBool(myString__setting, myBool__value)

Related Pages


Additional References

View this function’s page on the Fallout 4 Creation Kit Wiki

Some data provided by the Fallout 4 Creation Kit Wiki. Licensed under the Creative Commons Attribution-Share Alike 4.0 license.