changelets 1 Posted July 21, 2016 Hi guys! has anybody found a solution for this problem yet? from this topic: http://herc.ws/board/topic/5776-bgm-volume-isnt-saving-with-client/ Quote Share this post Link to post Share on other sites
0 Ridley 295 Posted July 21, 2016 That's caused by missing registry entries Quote Share this post Link to post Share on other sites
0 evilpuncker 503 Posted July 21, 2016 use this one and see if the problem persists Quote Share this post Link to post Share on other sites
0 changelets 1 Posted July 21, 2016 (edited) That's caused by missing registry entries Hi, Could you explain in detail what you mean? use this one and see if the problem persists Hello, I have already tried this and the problem was not solved. Am I the only one here who face this ? Edited July 21, 2016 by changelets Quote Share this post Link to post Share on other sites
0 Ridley 295 Posted July 21, 2016 First try to run your setup as admin. Be sure your ro folder is not in a program files folder For regedit if this doesn't I write tomorrow, currently on phone Quote Share this post Link to post Share on other sites
0 changelets 1 Posted July 23, 2016 First try to run your setup as admin. Be sure your ro folder is not in a program files folder For regedit if this doesn't I write tomorrow, currently on phone Doesn't work. Quote Share this post Link to post Share on other sites
0 changelets 1 Posted July 27, 2016 I still have the problem Quote Share this post Link to post Share on other sites
0 Ridley 295 Posted July 27, 2016 (edited) I still have the problem in your grf, in luafiles514\lua files\optioninfo open the optioninfo_f.lub look for the function SaveToFileCmdOnOffValueEx(nID) tell me what it contains (or provide the whole code of it) Edited July 27, 2016 by Ridley Quote Share this post Link to post Share on other sites
0 changelets 1 Posted July 27, 2016 (edited) I still have the problem in your grf, in luafiles514\lua files\optioninfo open the optioninfo_f.lub look for the function SaveToFileCmdOnOffValueEx(nID) tell me what it contains (or provide the whole code of it) Hi Ridley, I use the one in this link: https://github.com/zackdreaver/ROenglishRE/tree/master/data/lua%20files/optioninfo Edited July 27, 2016 by changelets Quote Share this post Link to post Share on other sites
0 Ridley 295 Posted July 27, 2016 (edited) replace function SaveToFileCmdOnOffValueEx(nID) if nID == 0 then saveFile = io.open("SaveData\\OptionInfo.lua", "w") else saveFile = io.open("data\\OptionInfo.lua", "w") end if saveFile ~= nil then for k, v in pairs(CmdOnOffOderList) do local value = c_GetCmdOnOffValue(v) if value ~= -1 then saveFile:write(string.format("CmdOnOffList[\"%s\"] = %d\n", v, value)) end end saveFile:write("\n") io.close(saveFile) end end with function SaveToFileCmdOnOffValueEx(nID) if nID == 0 then saveFile = io.open("SaveData\\OptionInfo.lua", "w") else saveFile = io.open("data\\OptionInfo.lua", "w") end if saveFile ~= nil then saveFile:write("CmdOnOffList = {}\n") saveFile:write("OptionInfoList = {}\n") for k, v in pairs(CmdOnOffOderList) do local value = c_GetCmdOnOffValue(v) if value ~= -1 then saveFile:write(string.format("CmdOnOffList[\"%s\"] = %d\n", v, value)) end end saveFile:write("\n") io.close(saveFile) end end Edited July 27, 2016 by Ridley 1 kukayasko reacted to this Quote Share this post Link to post Share on other sites
0 changelets 1 Posted July 28, 2016 (edited) replace function SaveToFileCmdOnOffValueEx(nID) if nID == 0 then saveFile = io.open("SaveData\\OptionInfo.lua", "w") else saveFile = io.open("data\\OptionInfo.lua", "w") end if saveFile ~= nil then for k, v in pairs(CmdOnOffOderList) do local value = c_GetCmdOnOffValue(v) if value ~= -1 then saveFile:write(string.format("CmdOnOffList[\"%s\"] = %d\n", v, value)) end end saveFile:write("\n") io.close(saveFile) end end with function SaveToFileCmdOnOffValueEx(nID) if nID == 0 then saveFile = io.open("SaveData\\OptionInfo.lua", "w") else saveFile = io.open("data\\OptionInfo.lua", "w") end if saveFile ~= nil then saveFile:write("CmdOnOffList = {}\n") saveFile:write("OptionInfoList = {}\n") for k, v in pairs(CmdOnOffOderList) do local value = c_GetCmdOnOffValue(v) if value ~= -1 then saveFile:write(string.format("CmdOnOffList[\"%s\"] = %d\n", v, value)) end end saveFile:write("\n") io.close(saveFile) end end Hi Ridley, The problem is still faced. Edited July 28, 2016 by changelets Quote Share this post Link to post Share on other sites
0 Ridley 295 Posted July 28, 2016 Is this a problem only for you, or do your players face the same? What client do you use? Quote Share this post Link to post Share on other sites
0 changelets 1 Posted July 28, 2016 Is this a problem only for you, or do your players face the same? What client do you use? Yes, they face it as well . Quote Share this post Link to post Share on other sites
0 Ridley 295 Posted July 28, 2016 If it's not in program files folder and ran as admin, all I can think of is you use one of those clients where it was bugged in general. @.@ but I'm not exactly sure. Some clients also required UAC to be disabled. Quote Share this post Link to post Share on other sites
Hi guys!
has anybody found a solution for this problem yet?
from this topic: http://herc.ws/board/topic/5776-bgm-volume-isnt-saving-with-client/
Share this post
Link to post
Share on other sites