I've been browsing around for a script that will allow me to hide the "New Game/Continue/Shut Down" box on the title screen until a key is pressed, and thus far
this one is the only one I've come across.
Unfortunately, there seems to be an argument error occurring in line 30, stating "wrong number of arguments (2 for 4)." While I'm no scripter myself, I usually understand enough of the logic to troubleshoot these kinds of errors, but this one has me stumped as to the arguments it's referring to. The original scripter, LiTTleDRAgo, doesn't seem to have been a very active member of the community, so I can't really contact him. Hence why I'm posting here.
I'm using virtually no other scripts on this project, and the one or two I am using aren't related to the title generation, so the chance that it's a conflict between scripts is slim to none. Does anyone have any idea what the problem might be?
For reference, line 30 is the fourth line in the following block:
alias init_drgprs_btn initialize unless method_defined?(:init_drgprs_btn)
def initialize *args
press_any_button if scene.is_a? Scene_Title
init_drgprs_btn *args
end