Posts

Base Script RMXP

 #============================================================================== # ** Game_Temp #------------------------------------------------------------------------------ #  This class handles temporary data that is not included with save data. #  Refer to "$game_temp" for the instance of this class. #============================================================================== class Game_Temp   #--------------------------------------------------------------------------   # * Public Instance Variables   #--------------------------------------------------------------------------   attr_accessor :map_bgm                  # map music (for battle memory)   attr_accessor :message_text             # message text   attr_accessor :message_proc             # message callback (Proc)   attr_accessor :choice_start    ...