eltucu Posted March 9, 2012 Share Posted March 9, 2012 (edited) Hi! I was trying to test a few things for a quest mod that i wanted to do, its kinda crucial for the mod editing GameSettings on the fly. There is a way to edit any GameSettings from Papyrus? Or i'd need to use SKSE? Maybe a .bat file? PD: By GameSettings i mean the variables that are displayed in Gameplay>Settings in the CreationKit. I thought those were Globals but it seems they're a different kind of data >_< Edited March 9, 2012 by eltucu Link to comment Share on other sites More sharing options...
trees415 Posted March 9, 2012 Share Posted March 9, 2012 Why not just edit the values from within the game settings window? Scripting would only be necessary if you want game settings to be changing during runtime. If you're seeking to tweek the settings more permanently, then just go into the game settings menu and change the values and save the plugin. Link to comment Share on other sites More sharing options...
eltucu Posted March 10, 2012 Author Share Posted March 10, 2012 (edited) Scripting would only be necessary if you want game settings to be changing during runtime.Thats exactly what i meant by "its crucial for my mod editing GameSettings on the fly" :D Edited March 10, 2012 by eltucu Link to comment Share on other sites More sharing options...
trees415 Posted March 10, 2012 Share Posted March 10, 2012 Scripting would only be necessary if you want game settings to be changing during runtime.Thats exactly what i meant by "its crucial for my mod editing GameSettings on the fly" :Dlol i don't know how i missed that, i need to get my eyes checked...Anyways, all i can think of are the game script functions, or a good imagination... Link to comment Share on other sites More sharing options...
eltucu Posted March 10, 2012 Author Share Posted March 10, 2012 (edited) lol i don't know how i missed that, i need to get my eyes checked...Anyways, all i can think of are the game script functionsWhich ones? I cant find one, thats the point. GetValue or SetValue dont work because those are just to edit globals, not GameSettings. EDIT: Found these three: ; Obtains the value of a game setting - one for each type of game setting float Function GetGameSettingFloat(string asGameSetting) native global int Function GetGameSettingInt(string asGameSetting) native global string Function GetGameSettingString(string asGameSetting) native global But, no set, just get :( Edited March 10, 2012 by eltucu Link to comment Share on other sites More sharing options...
haganinc Posted March 17, 2012 Share Posted March 17, 2012 I too would like to know if this is possible, but from the lack of replies I am guessing that it isn't? Link to comment Share on other sites More sharing options...
eltucu Posted March 17, 2012 Author Share Posted March 17, 2012 It looks like it isnt possible : / Luckily for what i wanted to do (edit enchantment power) there are perks and probably abilities that can affect it. I just wanted to edit the gamesettings so the change isnt noticed by the player. Though i did made a perk and a lever that added it to the player and didnt worked at all for some reason, started a thread about it but no one answered me. Link to comment Share on other sites More sharing options...
BlazesRus Posted April 17, 2012 Share Posted April 17, 2012 SetGS GameSetting can be used in the console to Change the GameSetting Link to comment Share on other sites More sharing options...
eltucu Posted April 17, 2012 Author Share Posted April 17, 2012 Thanks but as i said, i wanted it to be changed on the fly with Papyrus. Its for a mod so i cant tell the player "hey, when you complete the quest, put this on the console!" Well, i can do that but it would be a horrible design for a quest lol Anyway, i found a work around with Perks and i havent been doing anything else since i dont have much time now. Link to comment Share on other sites More sharing options...
gulogulo Posted April 17, 2012 Share Posted April 17, 2012 You could use Dragon Script and "ExecuteConsoleCommand" command, but I havent tested it myself. Goodluck Link to comment Share on other sites More sharing options...
Recommended Posts