AxlDave Posted March 30, 2014 Posted March 30, 2014 I can't for the life of me figure out how to implement the SetGS command. I have NVSE and am running the GECK through it. As far as I can tell, this should work: scn TESTBEGIN GameMode if ( Player.GetAV Dehydration >= 1000 ) SetGS fJumpHeightMin 45 endifEND But it doesn't. I have tested every other part of the script, and those function fine. This simple script does not, however. I can't see why that is...
jazzisparis Posted March 30, 2014 Posted March 30, 2014 SetGS only works for string-type setting. For numeric settings, you need to use the NVSE function SetNumericGameSetting: SetNumericGameSetting fJumpHeightMin 45
luthienanarion Posted March 30, 2014 Posted March 30, 2014 Quote SetNumericGameSettingIf there was ever an NVSE function that should have had an abbreviated form...
Recommended Posts