@bgillisp and
@Kuro DCupu
Your suggested option will need some testing, as I use a pre-title splash screen script, so I don't know how they will play together.
I have Napoleon's script, which is no longer accessible since the demo went down. So here it is, for your information, after which I will put my query about it.
Code:
#sb:skip_title [debug]
#==============================================================================
# Skip Title Screen
# Version 1.00
# By Napoleon
#
# About:
# - Skips the title screen.
#
# Instructions:
# - Place below "▼ Materials" but above "▼ Main Process".
# - Use $skip_title_screen = true/false. If not set then the title screen is
# skipped.
#
# Requires:
# - RPG Maker VX Ace
#
# Terms of Use:
# - Attribution 3.0 Unported (CC BY 3.0)
# http://creativecommons.org/licenses/by/3.0/
# - Attribution is not required. This overrules what's stated in the above
# license.
#
# Version History:
# 1.00 (03 Januari 2013)
# - First Release
#===============================================================================
# Configurable section
#===============================================================================
if $skip_title_screen || $skip_title_screen.nil?
$imported ||= {}
$imported[:nap_skip_title] = 1.00
class Scene_Title < Scene_Base
#--------------------------------------------------------------------------
# * Start Processing [OVERWRITE]
#--------------------------------------------------------------------------
def start
DataManager.setup_new_game
$game_map.autoplay
SceneManager.goto(Scene_Map)
end
#--------------------------------------------------------------------------
# Terminate [OVERWRITE]
#--------------------------------------------------------------------------
def terminate; end
end # Scene_Title
end
A quick test with no alternative title screen set up automatically assumes that it is a new game.
That's fine, I can set up a blank map which does all the graphics etc. But how do I put in the command window with New Game/Continue/Quit in it? Could you point me at a tutorial or something?