class Window_BEGGARWIN < Window_Command def initialize() super(544/4,416/4) create_command_list end def create_command_list add_command("Pay ### coins", :Hi) add_command("Pay Nothing", :Hi) add_command("Pay 100 coins", :Hi) end def window_height return 300 end def window_width return 300 end endclass Scene_Beggar < Scene_MenuBase def start super create_command_window end def create_command_window @command_window = Window_BEGGARWIN.new() @command_window.set_handler

Hi, method

command_hi)) end def command_hi #Process to run when "Hi" is selected end end #This is so frustratingSo i made this code quickly, and i didn't wanted to execute some command until my window shows up.
I used a script call to initiate the scene, and the options DO show up, but text doesn't. I can scroll between options, but not with text.
Yes, until i fiddled with those sizes i couldn't even see the options, nothing's wrong with that.
EDIT: I can't help it, it has been days...
Any help would be appreciated a lot.