#==============================================================================
# â—â— Simple Escape Command
#------------------------------------------------------------------------------
# Trickster (tricksterguy@hotmail.com)
# Version 1.0
# Date 4/2/07
# Goto rmxp.org for updates/support/bug reports
#------------------------------------------------------------------------------
# This script adds an Escape Command to the Battle Commands and when used
# It escapes from battle. Also removes the Attack Escape Window in battle (phase2)
#==============================================================================
#--------------------------------------------------------------------------
# Begin SDK Log
#--------------------------------------------------------------------------
SDK.log('Simple Escape Command', 'Trickster', 1.0, '4/2/07')
#--------------------------------------------------------------------------
# Begin SDK Requirement Check
#--------------------------------------------------------------------------
SDK.check_requirements(2.0, [1, 2, 3, 4])
#--------------------------------------------------------------------------
# Begin SDK Enabled Check
#--------------------------------------------------------------------------
if SDK.enabled?('Simple Escape Command')
class Scene_Battle
#--------------------------------------------------------------------------
# * Main Window
#--------------------------------------------------------------------------
alias_method :old_main_window, :main_window
def main_window
old_main_window
@actor_command_window.z = 9999
end
end
#--------------------------------------------------------------------------
# End SDK Enabled Check
#--------------------------------------------------------------------------
end