Vai al contenuto

Rilevato Ad-Blocker. Per favore disabilita il tuo adblocker quando navighi su makerando.com - Non c'è nessun annuncio invasivo.

Cerca nel Forum

Showing results for tags 'Game Over con scelta'.



More search options

  • Search By Tags

    Tag separati da virgole.
  • Search By Author

Tipo di contenuto


Forums

  • Comunità
    • Cancello di Ingresso
    • Bacheca
    • Colisseum
  • DevTeam
    • CyberTeam
  • Giochi e Progetti RPG Maker
    • Resa Grafica
    • Concept e Bozze
    • Progetti
    • Giochi RPG Maker Completi e Demo
    • Il Making Oltreoceano
  • Assistenza e Supporto RPG Maker
    • Biblioteca
    • BrainStorming
    • Chiedi Aiuto alla Comunity
    • RPG Maker Scripting
    • PlugIn e AddOn RPG Maker
    • Musica e Suoni
    • Risorse Grafiche RPG Maker
    • Mak - Resources
  • Beyond Making - Oltre RPG Maker
    • Altri Tool

Find results in...

Find results that contain...


Data di creazione

  • Start

    End


Ultimo Aggiornamento

  • Start

    End


Filter by number of...

Iscritto

  • Start

    End


Gruppo


AIM


Indirizzo Web


ICQ


Yahoo


Skype


Location


Interests

Trovato 1 risultato

  1. Nome Script: Game Over con scelta Versione: N/D Autore/i: regendo Informazioni: Questo script aggiunge una finestra nella scena del Game Over, che da la possibilità di uscire dal gioco, di ritornare al titolo o di caricare una partita. Screenshot: Istruzioni: Inserite lo script sotto Material. Se volete poi cambiare posizione della finestra, fare riferimento alle linee 26 e 27, mentre se volete allargarla, fate riferimento alla linea 22. Script: # by bStefan aka. regendo # please give credit if used # for use with RMVX ACE #============================================ # GameOver with choices #============================================ # adds three choices to Scene_Gameover: # Load Savegame, Return to Title, Quit Game # implement over Main #============================================ class Window_GameOver < Window_Command def initialize super(0, 0) update_placement self.openness = 0 open end def window_width return 225 end def update_placement self.x = (Graphics.width - width) / 2 self.y = (Graphics.height - height) / 1.1 end def make_command_list add_command("Load Savestate", :load, load_enabled) add_command(Vocab::to_title, :to_title) add_command(Vocab::shutdown, :shutdown) end def load_enabled DataManager.save_file_exists? end end class Scene_Gameover < Scene_Base alias start_old start def start start_old create_command_window end def pre_terminate super close_command_window end def update super end def create_command_window @command_window = Window_GameOver.new @command_window.set_handler(:load, method(:command_load)) @command_window.set_handler(:to_title, method(:goto_title)) @command_window.set_handler(:shutdown, method(:command_shutdown)) end def close_command_window @command_window.close if @command_window update until @command_window.close? end def command_load close_command_window fadeout_all SceneManager.call(Scene_Load) end def goto_title close_command_window fadeout_all SceneManager.goto(Scene_Title) end def command_shutdown close_command_window fadeout_all SceneManager.exit end end
×