- Joined
- Mar 17, 2012
- Messages
- 332
- Reaction score
- 154
- First Language
- Italy
- Primarily Uses
- RM2k
Hi all,
I use this script for skip the title:
It is possible in some way, if there is a save, start the game from title?
The operation has to be this:
- The game starts without the title, with an intro on the map.
- When the player makes the first save and close the game, when it re-opens, the title appears to start a new game or load your last save.
I use this script for skip the title:
Code:
#==============================================================================
# Skip Title Screen JV Master Script
#------------------------------------------------------------------------------
# Skip Title Screen, going to first game map.
#==============================================================================
#==============================================================================
# Scene Title
#==============================================================================
class Scene_Title < Scene_Base
def start
SceneManager.clear
Graphics.freeze
DataManager.setup_new_game
$game_map.autoplay
SceneManager.goto(Scene_Map)
end
def terminate
SceneManager.snapshot_for_background
Graphics.fadeout(Graphics.frame_rate)
end
end
#==============================================================================
The operation has to be this:
- The game starts without the title, with an intro on the map.
- When the player makes the first save and close the game, when it re-opens, the title appears to start a new game or load your last save.

