Advertisement
Guest User

Untitled

a guest
Oct 29th, 2013
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.89 KB | None | 0 0
  1. #==============================================================================
  2. # Skip Title Screen                                           JV Master Script
  3. #------------------------------------------------------------------------------
  4. # Skip Title Screen, going to first game map.
  5. #==============================================================================
  6.  
  7. #==============================================================================
  8. # Scene Title
  9. #==============================================================================
  10. class Scene_Title < Scene_Base
  11.   def start
  12.     SceneManager.clear
  13.     Graphics.freeze
  14.     DataManager.setup_new_game
  15.     $game_map.autoplay
  16.     SceneManager.goto(Scene_Map)
  17.   end
  18.  
  19.   def terminate
  20.     SceneManager.snapshot_for_background
  21.     Graphics.fadeout(Graphics.frame_rate)
  22.   end
  23. end
  24. #==============================================================================
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement