Grafer 0 Posted March 31, 2013 Hello once again. I have 2 questions 1. How can I change text shown in title screen menu. ( I want to translate "New Game" etc into my language). 2. How can I customize in-game menu. I want to delete some useless options like "equipment" or "status" etc. I will be grateful for any help. Share this post Link to post Share on other sites
Fafnir 34 Posted March 31, 2013 For the first one just go to Terms in the Database and where it says New Game just change the text. The second one I think you'll need to just delete those parts from your scripts but I can't take a look right now so I'm not 100%. 1 Share this post Link to post Share on other sites
+ Dark Influence 251 Posted March 31, 2013 (edited) 1. Go into Database>Terms and you'll find things like New Game, Continue, Shutdown etc, just erase whatever you want and type it in your native language. 2. You can remove those things by changing the default script related to it, bring up the Script Editor and find Scene_Menu then add a # next to anything you don't want on the in-game menu. Edited March 31, 2013 by Wraith the Red 1 Share this post Link to post Share on other sites
Grafer 0 Posted March 31, 2013 First point works perfectly. Thank you both. Unfortunately I got still some issues with in-game menu. I put "#" in Scene_Menu before "@command_window.set_handler(:equip, method(:command_personal))" and "#when :equip #SceneManager.call(Scene_Equip)" But instead of deleting "Equipment" button, it just make it doesnt work. There is still useless button in menu. Share this post Link to post Share on other sites
Chaos17 31 Posted March 31, 2013 I recommend you to use this script : http://yanflychannel.wordpress.com/rmvxa/menu-scripts/ace-menu-engine/ It will allow you to easely remove the options you wish without editing the core scripts of rpg maker. Share this post Link to post Share on other sites
+ Dark Influence 251 Posted March 31, 2013 (edited) Come to think of it that's not right actually, I don't like working with scripts personally but I'll deal with this as best I can - Sorry about the confusion. Window_MenuCommand, scroll down until you see 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) Add a # infront of the ones you want to erase, THAT should get rid of them. Edited March 31, 2013 by Wraith the Red Share this post Link to post Share on other sites
Grafer 0 Posted March 31, 2013 Yan Fly script works, but I dont think I need such an advanced script, so I tried your option Wraith and it works as well. So thank you both once again Share this post Link to post Share on other sites