Comments

Log in with itch.io to leave a comment.

Quick question, is there a way to make the music accept subfolders in the bgm? You have that in the menu music plugin and I would need that here, too :)

Thanks :)

Hi, this plugin was initially coded before subfolders were supported by rpg maker. It is a little complicated to change for this plugin compared to the menu theme plugin because this one allows for SE/ME/BGS/BGM. In the CGMZ_GameOver_playSound function, you could try replacing the first 3 lines with this:

const file = CGMZ.GameOver.Music[$gameVariables.value(CGMZ.GameOver.MusicVariable) - 1].split("/");
const type = file.shift();
const sound = {name: file.join('/'), pan: 0, pitch: 100, volume: 90};

I did not test it for all environments but on initial tests it worked in my playtest

Works, perfect! Thanks :)

How do you actually install the plugins? I'm trying to use them on the trial version of RPG Maker MZ and I still see the demo game over image.

Hi, you unzip the zip file that it comes in, and put it in your games js -> plugins folder. Then you will open up the editor and navigate to tools -> plugin manager. From here, you will double click and then select the plugin from the name field. Some plugins come with additional parameters you need to configure before you can use it, any special instructions for CGMZ plugins will be in the Help part of the plugin manager window.

I also have demos for all of my fully released plugins on my website, if you are having problems getting set up, you can download the demo and open it in the editor to see how something was done.

Thanks!