• To improve security, we will soon start forcing password resets for any account that uses a weak password on the next login. If you have a weak password or a defunct email, please update it now to prevent future disruption.

Tool RPGM RPG Maker MV MZ, CheatMenu [v2.1.1]

5.00 star(s) 8 Votes

Urusaisenpai

Walkthough-mod Creators are a godsent <3
Donor
Apr 30, 2017
1,495
2,769
Just downloaded previous version of A struggle with sin & the cheat menu aint working either. So it's me that is something wrong with.. Damn.. It works with other games atleast.
 
  • Like
Reactions: dudu691337

apsentibus

Member
Jun 22, 2019
148
432
How do I uninstall it from a game?
Delete the following items:
Folder: www\CheatData
File: www\Cheat.html
File: www\js\plugins\CheatMenu.js

And one last step: open file www\js\plugins.js with any text editor, delete this line which should be at the end
{"name":"CheatMenu","status":true,"description":"External cheat window, for easy item and variable modification.","parameters":{}}
IMO the author really should be the one providing the uninstallation method, instead of ignoring people asking how to do it. For some reason it messed up some part of the game speed for me in all saves and I can't find the uninstallation method, I had to figure it out myself.
 
Last edited:
  • Like
Reactions: Manx86

Akaibu

New Member
Apr 11, 2019
14
8
The reason it doesnt work is simple, the person/people who made the translation for those games modified the plugin.js file and left it unescaped afterwards causing the cheat to install incorrectly and breaking the game.

If you want you can always add the files manually to the correct folders and then add the following code into plugins.js, however if your unsure how to do it i dont recommend you do it.
Code:
{"name":"CheatMenu","status":true,"description":"External cheat window, for easy item and variable modification.","parameters":{}}
in this case i was able to fix this by replace all instances of "{," with "{"
it now works
 
  • Like
Reactions: snazzlefrazzle

Лешка0

New Member
Jan 17, 2023
1
0
Обновлено до версии 1.1, пожалуйста, дайте мне отзыв.
[/ЦИТИРОВАТЬ]
привет что делать если я открываю через чит или просто запускаю игру она мне выдает черный икран и все хотя раньше ни что такова не была с вашей программой Screenshot_29.png Screenshot_29.png
 

latrop16

Member
May 12, 2018
247
509
Can you please fix the installer? It makes plugins.js json invalid by putting a "," behind each "{".
 

ascokaowk

New Member
Oct 11, 2022
1
0
some plugins can't dealing with set move speed.
i suggest remove this js code inside of js/plugins/CheatMenu.js at line 232 or write new one which can provide optional functionality.
JavaScript:
//  Only player can set move speed
Game_CharacterBase.prototype.setMoveSpeed = function(moveSpeed, isCheat = false) {
    if (isCheat){
        this._moveSpeed = moveSpeed;
    }
};
 
Last edited:
5.00 star(s) 8 Votes