Hi all,

This plugin provides the option to change the Game Over scene image/music based on a variable, and also allows you to add a command window to the Game Over scene which the player can use to quickly get back into the game.

Please see terms of use here: Terms of Use

Requires CGMZ Core plugin: CGMZ Core

Happy RPG Making!

StatusReleased
CategoryTool
PlatformsHTML5
Rating
Rated 5.0 out of 5 stars
(2 total ratings)
AuthorCasper Gaming
Made withPixiJS, RPG Maker
TagsRPG Maker
Average sessionA few minutes
LanguagesEnglish, Spanish; Latin America
InputsKeyboard, Mouse, Gamepad (any), Touchscreen
LinksHomepage, Community, Patreon, YouTube

Download

Download NowName your own price

Click download now to get access to the following files:

CGMZ Game Over
External

Development log

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!