#==============================================================================
# ** Direct Saving
#------------------------------------------------------------------------------
# alexanderpas
# Build Date - 2005-12-23
# Version 0.9 - alexanderpas - 2006-12-23
#==============================================================================
#------------------------------------------------------------------------------
# * SDK Log Script
#------------------------------------------------------------------------------
SDK.log('Direct Saving', 'alexanderpas', 0.9, '2006-12-23')
#----------------------------------------------------------------------------
# Begin SDK Enabled Check
#----------------------------------------------------------------------------
if SDK.state('Direct Saving') == true
class Scene_Save < Scene_File
def main
# If we already have saved this game we can safely assume that
# $game_temp.last_file_index is the previous save of this game.
unless ($game_system.save_count == 0)
on_decision(make_filename($game_temp.last_file_index))
return
end
super
end
end
end
#----------------------------------------------------------------------------
# End SDK Enabled Test
#----------------------------------------------------------------------------