#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>## ## Script Title ## Version 0.1 ## ##~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~## Written By: Name ## Last Edited: Month Day, Year ##~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~## Special Thanks: ## Vindaca~ For the Template. ##<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>># #==============================================================================##------------------------------------------------------------------------------## ** Disclaimer ##------------------------------------------------------------------------------## ## This is where you should write your disclaimer or user usage agreements. ## ##------------------------------------------------------------------------------## ** How To Use ##~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~## ## * A note of how to use this script. ## ##------------------------------------------------------------------------------## ** Updates / Version Notes ##------------------------------------------------------------------------------## ## v0.1 ## ~=~=~=~ ## * Describe what the script does. ## ## v0.2 ## ~=~=~=~ ## * Just describe any changes or fixes that were made to the script. ## ## v1.0 ## ~=~=~=~ ## * There are two reasons to update the first digit, if you have added or ## changed the script's function dramatically or changing the script from a ## beta version of the script to a finalized or an Alpha version. ## ##------------------------------------------------------------------------------##==============================================================================##==============================================================================# ** Module Name #------------------------------------------------------------------------------# Description of the Module. #==============================================================================module Module_Name module Specs#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>## ## Start Customizable Area. ## ##~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~## ## ONLY EDIT THE DESIGNATED AREAS. ## ##<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>># #============================================================================= # * Describe the category of options #============================================================================= #------------------------------------------------------------------------ # * Describe the option itself. #------------------------------------------------------------------------ Option_Var = #<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>## ## DO NOT EDIT PAST THIS POINT UNLESS YOU KNOW WHAT YOUR DOING. ## ##<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>># end end #<--- End Module===========================================================#==============================================================================# ** Window Name#------------------------------------------------------------------------------# Description of the class. #==============================================================================class Window_Name < Window_Base #-------------------------------------------------------------------------- # * Public Instance Variables #-------------------------------------------------------------------------- attr_accessor :acc_var # Note attr_reader :rdr_var # Note attr_writer :wtr_var # Note #-------------------------------------------------------------------------- # * Object Initialization #-------------------------------------------------------------------------- def initialize @acc_var = @rdr_var = @wtr_var = end end #<--- End Class============================================================#==============================================================================# ** Scene Name#------------------------------------------------------------------------------# Description of the class. #==============================================================================class Scene_Name < Scene_Base #-------------------------------------------------------------------------- # * Object Initialization #-------------------------------------------------------------------------- def initialize @acc_var = @rdr_var = @wtr_var = end end #<--- End Class============================================================