Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. =begin
  2.  
  3.   Script Name:   Skip Title Screen
  4.   Author:        Tajiin
  5.   Release Date:  11/11/2013 | mm/dd/yyyy
  6.  
  7.   Version: 2.0
  8.   Version Date: 01/16/2017
  9.  
  10.   Description:
  11.     This Script skips the Title Screen and starts a new game directly.
  12.     Perfect for your own Main menue.
  13.  
  14.   Have Fun
  15.  
  16.   SORRY FOR MY BAD ENGLISH SKILLS
  17.  
  18. =end
  19. #==============================================================================
  20. # ** Scene_Title
  21. #------------------------------------------------------------------------------
  22. #  This class performs the title screen processing.
  23. #==============================================================================
  24.  
  25. class Scene_Title < Scene_Base
  26.   #--------------------------------------------------------------------------
  27.   # * Start Processing
  28.   #--------------------------------------------------------------------------
  29.   def start
  30.     super
  31.     DataManager.setup_new_game
  32.     $game_map.autoplay
  33.     SceneManager.goto(Scene_Map)
  34.   end
  35.  
  36.   #--------------------------------------------------------------------------
  37.   # * Termination Processing
  38.   #--------------------------------------------------------------------------
  39.   def terminate
  40.    
  41.   end
  42. end