[ACE] Saltar pantalla de titulo.

OP

Basil

Platinum User
Mensajes
2.961
Reacciones
338
Puntos
924
Ubicación
República independiente de Baja California
Saltar pantalla de titulo
Creditos: JV Master
El script no necesita configuración, simplemente se coloca sobre Main y al iniciar el juego te llevará directamente al primer mapa.

Código:
#==============================================================================
# Skip Title Screen                                           JV Master Script
#------------------------------------------------------------------------------
# Skip Title Screen, going to first game map.
#==============================================================================

#==============================================================================
# Scene Title
#==============================================================================
class Scene_Title < Scene_Base
  def start
    SceneManager.clear
    Graphics.freeze
    DataManager.setup_new_game
    $game_map.autoplay
    SceneManager.goto(Scene_Map)
  end
  
  def terminate
    SceneManager.snapshot_for_background
    Graphics.fadeout(Graphics.frame_rate)
  end
end
#==============================================================================
 
Arriba Pie