Its just the ini file that was in my config_templates folder but I deleted the semicolon before "dmnt_cheats_enabled_by_default = u8!0x1". After I got the first fatal error I also deleted the space that was in front of the line too but that did not work.
yup. the ; counts as a comment and it ignores the rest of the line. Beginning spaces should be fine. I double checked your file and these are the ONLY lines that are in play (uncommented)
Here they are in context with their instructions:
; Controls whether dmnt cheats should be toggled on or off by
; default. 1 = toggled on by default, 0 = toggled off by default.
dmnt_cheats_enabled_by_default = u8!0x1
; Controls whether dmnt should always save cheat toggle state
; for restoration on new game launch. 1 = always save toggles,
; 0 = only save toggles if toggle file exists.
dmnt_always_save_cheat_toggles = u8!0x0
The first one being set to 1 (u8!0x1) is turning on cheats at all times. Might not be what you want globally but let’s move on for now.
The second one sets up toggle files if turned on (u8!0x1) but yiu have it set to only update toggle files if they already exist. Again, just explaining what the lines do…let’s move on.
First things first:
Let’s make sure it’s nothing else it broken and simply comment (add ; at the beginning) to the two lines and make sure we can boot normally with none of that in play.