I did some testing, the real problem is this function in scripts\MiniGame\GridMoving.rpy
It calls some other checks, and mainly 2 sources of "crash" : _core_logic() for console/developer mode, IsRenpyInit() for URM
(Funnily the DetectURM() in the other script seems unusued for now)
Python:
define IsPythonInit = lambda: all([
dd4(), ee5(), ff6(), gg7(), _core_logic(), IsRenpyInit()
])
So making it always True works for me, even using multiples mod/cheat files :
Python:
define IsPythonInit = lambda: True#all([
#dd4(), ee5(), ff6(), gg7(), _core_logic(), IsRenpyInit()
#])
Also for some reason, I need to bypass all the splashscreens
Here are my files, if you want to try