Long story short, I am trying to apply Game Settings changes via script instead of the non-script way, i.e., change the value via the Gameplay-->Settings... and then save the mod.
1.) Will "console" commands work when executed from inside a script?
2.) Is SetNumericGameSetting broken?
For (2) above, I've tried it both in my script and also by typing it directly into the console, but neither had any effect. (In the console, the command was recognized, i.e., I got no error. It just had no effect.)
The setting I am trying to tweak (for testing purposes) is the following:
SetNumericGameSetting fMoveRunMult 8.0
I also tried the following (since the documentation does not state if quotes are required or not for string parameters):
SetNumericGameSetting "fMoveRunMult" 8.0
If I create a mod "the normal way" changing that setting to 8.0, the player runs twice as fast. If I try to set that setting via SetNumericGameSetting, there is no change in movement speed. (And, yes, in the script, I am ensuring that the game is loaded first before making that call.)
