Hi.
I have been trying to adjust the regular menu in my game, not the main menu. I would simply like to remove Equip, Skills and some stuff.
I have searched online and found out that I have to edit the default script, under Window_MenuCommand. There I find the lines:
add_command(Vocab::item, :item, main_commands_enabled)
add_command(Vocab::skill, :skill, main_commands_enabled)
add_command(Vocab::equip, :equip, main_commands_enabled)
add_command(Vocab::status, :status, main_commands_enabled)
-and people say to either delete the ones you want to, or put a # in front of the lines.
Neither works, I`m sure I`m at the right place in the script and have edited some
scripts before. And have found several places online where they say this without saying more.
Sorry but what am I doing wrong?