Advertisement
Skyloftian_Link

Esteem - Scene_Title Skip

May 2nd, 2017
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.63 KB | None | 0 0
  1. #===============================================================================
  2. # Esteem - Scene_Title Skip
  3. #-------------------------------------------------------------------------------
  4. # Script por: Revali
  5. #===============================================================================
  6. # Não há comentários adicionais
  7. #===============================================================================
  8. class Scene_Title < Scene_Base
  9.  
  10.   def start
  11.     super
  12.     DataManager.setup_new_game
  13.     fadeout_all
  14.     $game_map.autoplay
  15.     SceneManager.goto(Scene_Map)
  16.   end
  17.  
  18.   def terminate
  19.     super
  20.   end
  21.  
  22. end # Scene_Title
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement