AxlDave Posted March 30, 2014 Share 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... Link to comment Share on other sites More sharing options...
jazzisparis Posted March 30, 2014 Share 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 Link to comment Share on other sites More sharing options...
AxlDave Posted March 30, 2014 Author Share Posted March 30, 2014 Cheers, that worked nicely. Link to comment Share on other sites More sharing options...
luthienanarion Posted March 30, 2014 Share Posted March 30, 2014 SetNumericGameSettingIf there was ever an NVSE function that should have had an abbreviated form... Link to comment Share on other sites More sharing options...
Recommended Posts