- Joined
- Oct 17, 2017
- Messages
- 4
- Reaction score
- 0
- First Language
- English
- Primarily Uses
- RMVXA
I have RPG Maker VX Ace and after a while, I keep getting this error and idk why. It keeps saying
Script 'Scene_Title' line 92: ArgumentError Occurred.
Wrong number of arguments (0 for 2)
But this is my code that I have in the script
What's wrong? Is there something I need to change? What do I need to do?
Script 'Scene_Title' line 92: ArgumentError Occurred.
Wrong number of arguments (0 for 2)
But this is my code that I have in the script
Code:
# * 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))
end
Last edited:


