/ Published in: Ruby
URL: http://mark.haktstudios.com/
Simple script to skip the title screen and go to the first map which you can then use events to make custom title screens that can be animated or whatever. This script DOES NOT give you an actual title screen, you have to make your own. This is the VX version.
Instructions:
Place script above main, no configuration necessary. Should not interfere with any script that doesn't effect scene_title.
Expand |
Embed | Plain Text
#============================================================================== # Xenres' Title Skip # Version 1.0 # 2010-11-24 #------------------------------------------------------------------------------ # Loads necessary objects and skips to the start map to use as a title screen # or whatever. #============================================================================== class Scene_Title < Scene_Base #-------------------------------------------------------------------------- # * Main Processing #-------------------------------------------------------------------------- def main if $BTEST # If battle test battle_test # Start battle test else # If normal play load_database # Load database create_game_objects # Create game objects load_title_screen # Load title screen ( loads first map ) end end #-------------------------------------------------------------------------- # * Command: Load Title Screen #-------------------------------------------------------------------------- def load_title_screen confirm_player_location Sound.play_decision $game_party.setup_starting_members # Initial party $game_map.setup($data_system.start_map_id) # Initial map position $game_player.moveto($data_system.start_x, $data_system.start_y) $game_player.refresh $scene = Scene_Map.new Graphics.frame_count = 0 $game_map.autoplay end end
You need to login to post a comment.
