- Aug 6, 2017
- 68
- 206
Which options you have to edit to allow cheats in all difficulties?
And to disabling time limit?
ok, i managed to find the answer myself for the "cheat menu always enable" :
in the the remtairyprison.js files, change this:
to this:JavaScript:Game_Party.prototype.cheatMode = function() { if(this.isEndlessBattle()) return false; return this.freeMode() || this.easyMode();
(add the // if you want it to affect endless battle).JavaScript:Game_Party.prototype.cheatMode = function() { //if(this.isEndlessBattle()) return false; return true;
But I didn't find anything for disabling the time limit. Anyone?