O TEMA DO FÓRUM ESTÁ EM MANUTENÇÃO. FEEDBACKS AQUI: ACESSAR

Adicionar Opção Sair

Iniciado por Lima, 06/01/2016 às 12:41

Adicionar Opção Sair

Compativel com: RMMV
Compatibilidade: Boa (acho)
Facilidade de uso: Fácil
Lag gerado: Desprezível

[box class=titlebg]
Condições de Uso
[/box]
Pode usar em seus projetos, basta dar os devidos créditos.

[box class=titlebg]
Para que serve o plugin
[/box]
O plugin serve para adicionar a opção sair na tela de título bem como no menu

[box class=titlebg]
Características
[/box]



  • O jogador pode sair do jogo;
  • Podem adicionar o nome que pretenderem, neste caso tenho quit mas no gerenciador de plugins inserem o nome que desejam;

[box class=titlebg]
Imagens
[/box]



[box class=titlebg]
Download e Script
[/box]

[box class=titlebg]
Créditos e Avisos
[/box]
Criador: Lima

Simples porém útil!
Muito bom cara, só te vejo evoluir nessa área em!? Prevejo ótimos Plugins ainda à vir de você  :XD:

Citação de: Ven online 06/01/2016 às 18:51
Simples porém útil!
Muito bom cara, só te vejo evoluir nessa área em!? Prevejo ótimos Plugins ainda à vir de você  :XD:
Ahahaha ainda bem que vê evolução deve ser dos poucos kkkk
Eu era(sou) eventer, só que com a nova versão fica bastante pesado, então eu estou no superior a tirar licenciatura em informática e vou aprendendo umas coisinhas e aplico pa javascript ahahha xD

22/04/2017 às 12:13 #3 Última edição: 22/04/2017 às 13:00 por senhor azul
pode deixar o codigo?

Citação de: senhor azul online 22/04/2017 às 12:13
pode deixar o codigo?

/*:
 * @plugindesc Permite que o jogo seja encerrado
 *
 * @author Lima
 *
 * @param ShutDownName
 * @desc Nome do comando para encerrar o jogo
 * @default Sair
 *=============================================================================*/
 

var params = PluginManager.parameters('sair');


Window_TitleCommand.prototype.makeCommandList = function(name) {
    this.addCommand(TextManager.newGame,   'newGame');
    this.addCommand(TextManager.continue_, 'continue', this.isContinueEnabled());
    this.addCommand(TextManager.options,   'options');
	this.addCommand(String(params['ShutDownName'] || 'Sair'),   'sair');
};

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('sair',  this.commandSair.bind(this));
    this.addWindow(this._commandWindow);
};

Scene_Title.prototype.commandSair = function() {
this.fadeOutAll()
  SceneManager.exit()
}

Scene_GameEnd.prototype.createCommandWindow = function() {
    this._commandWindow = new Window_GameEnd();
    this._commandWindow.setHandler('toTitle',  this.commandToTitle.bind(this));
    this._commandWindow.setHandler('cancel',   this.popScene.bind(this));
	this._commandWindow.setHandler('sair',   this.commandSair.bind(this));
	
    this.addWindow(this._commandWindow);
};

Scene_GameEnd.prototype.commandSair = function() {
this.fadeOutAll()
  SceneManager.exit()
}

Window_GameEnd.prototype.makeCommandList = function() {
    this.addCommand(TextManager.toTitle, 'toTitle');
    this.addCommand(TextManager.cancel,  'cancel');
	this.addCommand(String(params['ShutDownName'] || 'Sair'),   'sair');
};

Tem como colocar essa opção no menu de opções?
M                         E                        M                         E                         S