Version 0.24
Gofile
This game download has been unlocked so you can save edit. I am not a premium member so this link will not be permeant.
To learn how to do it yourself.
How to edit your saves!
save edit
save
save lock
cant edit save
rpgedit
I spent time on this because forcing "save integrity" makes your game worse. Your grind is bullshit. You took it so far that it was worth my time disabling it. I have no RPGMaker experience before this.
You want supporters not people frustrated with your game.
I will disable it when you update. save yourself some time, focus on improving the game and and not hamstringing it.
HOW TODISABLE SAVE INTEGRITY CHECKS
Inside the Enc_Dat.js file found in the plugins folder. we need to disable the hash checks
Delete these lines.
if (savedHash !== hash) {
return false;
}
View attachment 3936842
--------------------------------------
if (!this._myData) {
}else{
if (this.checkSaveIntegrity(DataLoad)) {
} else {
showErrorMessage("Save integrity has been compromised!")
}}
View attachment 3936841
------------------------------------------------------------------
Then in the main.js
delete these lines
if (hashCalculado !== H) {
alert("El archivo Enc_Dat.js ha sido modificado. El juego se cerrará.");
SceneManager.terminate();
}
View attachment 3936845
SAVE THE FILES YOU HAVE EDITED.
WELL DONE YOU CAN SAVE EDIT NOW
View attachment 3936874