11-25-2010, 06:03 AM (This post was last modified: 09-02-2024, 05:31 PM by DerVVulfman.)
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, for XP, please look here
Instructions:
Place script above main, no configuration necessary. Should not interfere with any script that doesn't effect scene_title.
script
Code:
#==============================================================================
# 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