Create and Fuck your AI Cum Slut –70% OFF
x

Tool RPGM RPG Maker MV Hide Message box

5.00 star(s) 1 Vote
Apr 3, 2019
138
58
192
can you please explain how do i use this? the instaler ask for the game path but when i copy and past the path and press enter the instaler close
It's probably an MZ game the installer only works for MV games use these files instead, you'll have to install manually and make sure to backup plugins.js before doing anything, also if there is an entry in plugins,js that already hides the message window then just use the txt file to modify the parameter that controls what buttons are used to hide the message window.
 

Skyral

New Member
Mar 1, 2018
8
3
210
It's probably an MZ game the installer only works for MV games use these files instead, you'll have to install manually and make sure to backup plugins.js before doing anything, also if there is an entry in plugins,js that already hides the message window then just use the txt file to modify the parameter that controls what buttons are used to hide the message window.
didn't work for me, i pasted the 2 files in the js/plugins, what i do next?
 
  • Like
Reactions: 1Kishi

1Kishi

New Member
Nov 3, 2017
13
27
165
didn't work for me, i pasted the 2 files in the js/plugins, what i do next?
I think you need to actually unwrap game and install it in RPG Maker MZ app? I am not sure, lol. Doesnt work for me either.
 

Insomnimaniac Games

Degenerate Handholder
Game Developer
May 25, 2017
5,854
11,046
921
didn't work for me, i pasted the 2 files in the js/plugins, what i do next?
I think you need to actually unwrap game and install it in RPG Maker MZ app? I am not sure, lol. Doesnt work for me either.
You need to manually add the plugin in plugins.js, that's what the text file is for. Add the line in the txt to the end of plugins.js (You may need to add ; to the line before if it doesn't have one. Follow the format of the other lines in plugins.js)
 

burnerzone

New Member
Nov 27, 2025
7
4
3
So I am playing a game that announces the ability to change speed with the L button (i don't know if this is default or not). But it works, changing from 1, 1.25, 1.5, 2, 3, 5 and 10x speed. The problem is, the perfect speed for me for this game is 2x, but when I install the script to hide the text box, it only works on certain speeds.. most speeds, if counting the doubleclick necessary on 1.5 speed. It works on 3x. BUT NOT ON 2X - so I have to toggle speed around 7 options to alter between hide text and then back to my appropriate speed.
This sucks, is there anything I can do ?
 

Zippix

Well-Known Member
Sep 7, 2017
1,852
1,260
325
So I am playing a game that announces the ability to change speed with the L button (i don't know if this is default or not). But it works, changing from 1, 1.25, 1.5, 2, 3, 5 and 10x speed. The problem is, the perfect speed for me for this game is 2x, but when I install the script to hide the text box, it only works on certain speeds.. most speeds, if counting the doubleclick necessary on 1.5 speed. It works on 3x. BUT NOT ON 2X - so I have to toggle speed around 7 options to alter between hide text and then back to my appropriate speed.
This sucks, is there anything I can do ?
So, as far as I know, these plugins work by copying the *.js file (in this case the HIME_HMSblabla.js) into www\js\plugins and creating a line in the game's 'plugins.js' that makes the game load said plugin at start, too.

And as such, the plugin you add through the steps laid out in the OP, will be loaded as last (because that's just how the .bat file rolls - adds the line needed to load the plugin to the end of plugins.js).
You can try moving that line

{"name":"HIME_HMSHideMessageWindow","status":true,"description":"","parameters":{"Hide Button":"shift"}}

to other places in plugins.js, like first line in the plugins list, or maybe somewhere in the middle - just remember that apart from the very last, all plugins listed there (in a similar format) will have to have a ',' (a comma) at the end of their lines, because yeah, it's a list. Maybe it won't clash with whatever it's clashing with, then. (though not really hopeful)

It (plugins.js) has to end though as such:
{"name":"anotherblabla","status":true,"description":"","parameters":{}},
{"name":"blablabla","status":true,"description":"","parameters":{}},
{"name":"blabla","status":true,"description":"","parameters":{}}
];

So ',' at the end for every line but for the last item in the plugins list...
...and I think I'm making this unnecessarily over-complicated maybe lol.

TLDR: I just happened here at the right time to see your new post, I'd suggest a good reading through the thread here (e.g. first page, 6th post!), maybe give the other such plugin in here a try too; also, what I wrote in this post a little bit up, too xD
 
5.00 star(s) 1 Vote