Tool RPGM RPG Maker MV Cheat Menu Plugin

Jokey

Newbie
Sep 17, 2017
29
4
FYI Party All HP/MP/TP 1 and 0 are swapped in the calls;

Code:
// handler for the party hp cheat to 0 all
Cheat_Menu.party_hp_cheat_4 = function() {
    Cheat_Menu.set_party_hp(1, false);
    SoundManager.playSystemSound(1);
};

// handler for the party hp cheat to 1 all
Cheat_Menu.party_hp_cheat_5 = function() {
    Cheat_Menu.set_party_hp(0, false);
    SoundManager.playSystemSound(1);
};
Those should be flipped, same issue w/ the MP and TP functions.
 

forgotp

Member
Nov 4, 2019
398
418
how can I use this with Nymphomania Priestess? it doesn't come with a www folder and using decryptor on .rgss file didnt help.
 

Tevildo77

Member
Dec 23, 2017
174
59
The JS folder auto-changes back to read only when I try to edit it soo I guess I can't use this XD. (I couldn't find a way to fix it.)
 

Bip

Active Member
Donor
May 4, 2017
735
2,106
any way to change keybinds? I want to change the key for opening it from 1 to something else.
You can do it by editing the www/js/plugins/cheat_menu.js.
Look for Cheat_Menu.keyCodes (it's nearly at the end of the file), you'll find the list of key codes used.

If I'm not talking wrong, you just have to change the value of keyCode and not touch the value of key_listener.
 

forgotp

Member
Nov 4, 2019
398
418
You can do it by editing the www/js/plugins/cheat_menu.js.
Look for Cheat_Menu.keyCodes (it's nearly at the end of the file), you'll find the list of key codes used.

If I'm not talking wrong, you just have to change the value of keyCode and not touch the value of key_listener.
Thanks, you are correct!

was useful to find out what the keycode is for the key you want to use. for example: numpad1 is keycode 97
 
  • Like
Reactions: Bip

alithanar8

Newbie
Oct 27, 2017
92
42
any idea how to make this work with The Island? I keep not being able to make it work because all the javascript files keep coming in as bin
 

chrisrlink

Newbie
Oct 24, 2017
70
46
sorry if this thread is old but i was wondering do i need to manually patch on Linux/steam OS 3) trying to play a few mv games on wine on my steam deck
 

taglag

Well-Known Member
Aug 6, 2019
1,307
1,073
Is there a simple way to fix this to run in games that use the two or choice .exe files as in Game.exe and Game_en.exe.

When installed it always seems to defaults to the Japanese Game.exe, and never works for the Game_en.exe

I hope I explained that right :)
 
  • Like
Reactions: GentlyUsedCondom