- Joined
- Jan 8, 2015
- Messages
- 155
- Reaction score
- 22
- Primarily Uses
I'm using a skip title screen script, I'm showing 2 images at the beggining then transfer player to the real "start game" map, but when I try to use the same image number which was used "at the beggining" , it won't show. Any other number works, but those two numbers which images at the begginig used, won't work.
I tried other skip title scripts too, but it happens the same.
What can I do?
This is the script I'm using:
I tried other skip title scripts too, but it happens the same.
What can I do?
This is the script I'm using:
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
#==============================================================================

