[SOLVED][SCRIPTING][RMVX ACE] HOW TO EDIT SCENE_TITLE TO ADD/REMOVE OPTIONS

Posts

Pages: 1
I was trying to remove the function of continue on the title screen, I found what I thought was what added and removed these options. Only to find it mainly just disabled. What I'm talking about is the script part in Scene_Title in *Create Command Window


def create_command_window
@command_window = Window_TitleCommand.new
@command_window.set_handler(:new_game, method(:command_new_game))
@command_window.set_handler(:continue, method(:command_continue))
@command_window.set_handler(:shutdown, method(:command_shutdown))
end


I deleted the line for continue, but when I run it still appears in the title screen... How do I remove this? There will be no save function in the game I'm currently working on.

EDIT: Wait, I solved it. Apparently to remove/add you need to under Window_TitleCommand in *Create Command List

Hope this also helped someone...
Pages: 1