What do you mean by closer? Is it in-between? so I edit my toml file as: # { enabled = true, name = "Roll Input Buffer Fix", path = "C:\Programs\ModEngine2\mod\Game\mod" }
Notice that backslashes need to be escaped with an extra backslash.
The "Game" folder that the mod is included to give some context on where to extract it, since the ELDEN RING installation directory has a Game folder inside of it. Since you're running Mod Engine 2 outside of the Game folder, you should just extract the "Roll Input Buffer Fix" directly into the "C:\Programs\ModEngine2\mod" folder.
25 comments
# { enabled = true, name = "Roll Input Buffer Fix", path = "C:\Programs\ModEngine2\mod\Game\mod" }
It should be like this (remember to remove the # because that comments out the line):
{ enabled = true, name = "Roll Input Buffer Fix", path = "C:\\Programs\\ModEngine2\\mod\\Roll Input Buffer Fix" }
Notice that backslashes need to be escaped with an extra backslash.
The "Game" folder that the mod is included to give some context on where to extract it, since the ELDEN RING installation directory has a Game folder inside of it. Since you're running Mod Engine 2 outside of the Game folder, you should just extract the "Roll Input Buffer Fix" directly into the "C:\Programs\ModEngine2\mod" folder.