Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 12/29/18 in all areas

  1. 1 point
    4144

    Nemo patcher

    yes i undestand. i mean people reported what this date completely broken, but it really can be fixed in server side. But different options is good Will push into nemo after nemo site pipeline will complete.
  2. 1 point
    Functor

    Nemo patcher

    @4144 I prepared the patch which changes the type of time displaying by which the character deletion is delayed. It works for 2018 EXE versions. You can add it to your fork. Thanks https://mega.nz/#!cVtw3C6R!FMyyHx-CCwkjWL6s-zB2a1EFBsxu9bfIj2-GEtZy3fI Before: it shows the date and time when the player will be able to delete character. After: it shows the remaining time when the player will be able to delete character. >>>>>>>>>>
  3. 1 point
    Ridley

    A solution?

    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
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.