Return to Title after Saving your GameStatus:http://rmxp.us/alexanderpas/images/scripts/SDKonly.png[/IMG]http://rmxp.us/alexanderpas/images/scripts/ScriptOnly.png[/IMG]http://rmxp.us/alexanderpas/images/scripts/forums.png[/IMG]http://rmxp.us/alexanderpas/images/scripts/unsupported.png[/IMG]
Description:This script will return you to the title screen after you've saved your game.
Bugs:Forgot passing an argument (Fixed in 0.9.1)
Compability issues:Non Yet Again...
Version:Version 0.9.2
Considered finished... but waiting for something to happen.
SDK:This Script is SDK compatible and compliant!
A non-SDK version will also be availble with the release of v1.0
Credits:If you use it, credit the proper persons!
#==============================================================================
# ** Save To Title
#------------------------------------------------------------------------------
# alexanderpas
# Build Date - 2007-01-07
# Version 0.9 - alexanderpas - 2006-12-28
# Version 0.9.1 - alexanderpas - 2006-12-28 (bugfix)
# Version 0.9.2 - alexanderpas - 2007-01-07 (compability update)
#==============================================================================
#------------------------------------------------------------------------------
# * SDK Log Script
#------------------------------------------------------------------------------
SDK.log('Save To Title', 'alexanderpas', 0.9, '2007-01-07')
#----------------------------------------------------------------------------
# Begin SDK Enabled Check
#----------------------------------------------------------------------------
if SDK.state('Save To Title') == true
class Scene_Save < Scene_File
alias alx_stt_scene_save_on_decision on_decision
def on_decision(filename)
alx_stt_scene_save_on_decision(filename)
# Switch to title screen
$scene = Scene_Title.new
end
end
end
#----------------------------------------------------------------------------
# End SDK Enabled Test
#----------------------------------------------------------------------------
Expand to see the code.