Simple Title shutdown command

Schlangan

A madman with a computer
Veteran
Joined
May 20, 2015
Messages
1,421
Reaction score
1,701
First Language
French
Primarily Uses
RMMV
TitleShutdownCommand plugin

Version : 1.00

Introduction

This plugins adds a Shutdown command to the Title screen, for people who miss that functionality, and do not want to exit by ALT+F4 the game.



How to Use

Put the following code in a JS file named TitleShutdownCommand.js, that you insert in the plugin folder. Then, be sure to add the plugin to the project using the ProjectManager. You can then specify the name displayed on the command window. By default, Shutdown is set as text.

Script

Code:
//=============================================================================
// This plugin adds a shutdown command to the main menu
//=============================================================================
/*:
* @plugindesc Adds a Shutdown command to the Title screen
* @author Schlangan
*
* @param Name
* @desc The name displayed for the Shutdown command
* @default Shutdown
* @help No plugin command associated.
*/

Window_TitleCommand.prototype.makeCommandList = function() {
    var parameters = PluginManager.parameters('TitleShutdownCommand'); 
    var shutdown_name = parameters['Name'] || "Shutdown"; 
    this.addCommand(TextManager.newGame,   'newGame'); 
    this.addCommand(TextManager.continue_, 'continue', this.isContinueEnabled());     this.addCommand(TextManager.options,   'options'); 
    this.addCommand(shutdown_name,  'shutdown');
};

Scene_Title.prototype.createCommandWindow = function() { 
    this._commandWindow = new Window_TitleCommand(); 
    this._commandWindow.setHandler('newGame',  this.commandNewGame.bind(this));
    this._commandWindow.setHandler('continue', this.commandContinue.bind(this));
    this._commandWindow.setHandler('options',  this.commandOptions.bind(this));
    this._commandWindow.setHandler('shutdown',  this.commandShutdown.bind(this));
    this.addWindow(this._commandWindow);
};

Scene_Title.prototype.commandShutdown = function() {
    this._commandWindow.close(); 
    window.close();
};

Credits and Terms of Use


This plugin may be used in any kind of project, commercial or not. Credits are required for commercial projects, optional for non-commercial.

Remarks

I cannot test this plugin on something other than a Windows PC. If for some reason it induces crashes on mobile devices, I'll add a system to make the option only available on non mobile devices.
 
Last edited:

Rito

Veteran
Veteran
Joined
Jun 29, 2015
Messages
107
Reaction score
50
First Language
French
Because the game may be install on navigator (IE, Firefox, Chrome) so no need exit button  :D
 
Last edited by a moderator:

slimmmeiske2

Little Red Riding Hood
Global Mod
Joined
Sep 6, 2012
Messages
7,842
Reaction score
5,225
First Language
Dutch
Primarily Uses
RMXP
Hey Schlagan, the last forum move totally messed up the plugin's layout. Could you fix it please?
 

Schlangan

A madman with a computer
Veteran
Joined
May 20, 2015
Messages
1,421
Reaction score
1,701
First Language
French
Primarily Uses
RMMV
Here you go, I also added a code tag for a better formatting.
 

Users Who Are Viewing This Thread (Users: 0, Guests: 1)

Latest Threads

Latest Posts

Latest Profile Posts

Couple hours of work. Might use in my game as a secret find or something. Not sure. Fancy though no? :D
Holy stink, where have I been? Well, I started my temporary job this week. So less time to spend on game design... :(
Cartoonier cloud cover that better fits the art style, as well as (slightly) improved blending/fading... fading clouds when there are larger patterns is still somewhat abrupt for some reason.
Do you Find Tilesetting or Looking for Tilesets/Plugins more fun? Personally I like making my tileset for my Game (Cretaceous Park TM) xD
How many parameters is 'too many'??

Forum statistics

Threads
105,863
Messages
1,017,053
Members
137,571
Latest member
grr
Top