Jump to content
Sign in to follow this  
Grafer

How to customize menu

Recommended Posts

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

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%.

  • Like 1

Share this post


Link to post
Share on other sites

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 by Wraith the Red
  • Like 1

Share this post


Link to post
Share on other sites

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

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 by Wraith the Red

Share this post


Link to post
Share on other sites

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
Guest
This topic is now closed to further replies.
Sign in to follow this  

  • Recently Browsing   0 members

    No registered users viewing this page.

×
Top ArrowTop Arrow Highlighted