I'm trying to put something together that displays "Help" text for Menu Commands, and I've ran intro some problems (such as, it not working xD;).
This is what I have so far:
Defining the Text
Spoiler
class Window_MenuCommand < Window_Command #-------------------------------------------------------------------------- # * Update Help Text #-------------------------------------------------------------------------- def update_help text = "" if self.active case current_symbol when :item text = "View/use Collected Items." when :skill text = "View/Use Skills and Spells" when :equip text = "View/Equip Weapons and Armor" when :status text = "View Personal Information" when :formation text = "Change Battle Party" when :game_end text = "View/Manage System Settings" end end @help_window.set_text(text) endend
Spoiler
#-------------------------------------------------------------------------- # * Start Processing #-------------------------------------------------------------------------- def start super create_command_window create_gold_window create_status_window create_help_window end #-------------------------------------------------------------------------- # * Create Command Window #-------------------------------------------------------------------------- def create_command_window @command_window = Window_MenuCommand.new @command_window.set_handler:)item, method:)command_item)) @command_window.set_handler:)skill, method:)command_personal)) @command_window.set_handler:)equip, method:)command_personal)) @command_window.set_handler:)status, method:)command_personal)) @command_window.set_handler:)formation, method:)command_formation)) @command_window.set_handler:)game_end, method:)command_game_end)) @command_window.set_handler:)cancel, method:)return_scene)) @command_window.help_window = @help_window end