Jump to content
Sign in to follow this  
Tandinos

Title screen editing help menu box (start continue etc)

Recommended Posts

Hello friends, i am looking for some help with changing the title screen menu box to well not be a box, and to be custom text that I have created myself, i would like to get rid of the defult box and text, to replace with my own New Game, Continue and options text, i have found videos on how to change picture back ground making animated title screens etc, but nothing really about the menu box other than how to move it, thanks for your help

Share this post


Link to post
Share on other sites

title screen background can do the trick xD

insert this script below material, above main

class Scene_Title < Scene_Base
  alias alias_create_command create_command_window
  def create_command_window
    alias_create_command  
    @command_window.back_opacity = 0
  end
end
class Window_TitleCommand < Window_Command
  alias title_initialize initialize
  def initialize
    title_initialize
    self.opacity = 0
  end
end

that code is to erase the title box, for the command, you can just leave the title command in the Database/Terms (New Game, Continue, and Shutdown) to be blank.

and now edit your title screen graphic, put the command/text there, but you should look at the size too, don't be too big, make sure the text is fit with title cursor.

and it's done.

I have done this before, it works perfectly xD

titel.png

  • Like 3

Share this post


Link to post
Share on other sites

Undawtitled_zpsbe66e451.png

am wanting the text commands to be where it is now but as can see that style does not fit it at all, ( scale is all stuffed on that atm but will be fixed won't be using the icons either)

 

 

Thanks heaps for the script to remove the box :)

 

Yeh i have created own title screen just thought would need to create separate graphics for the "New Game" etc that would be called from a graphics folder, how do i control where the Cursor goes as i assume when you highlight your Load Game Quit Game the box will move to the right ? im not looking to step my text just want it straight down but yeh, just wondering how to cursor will know what to highlight ?  

Edited by Tandinos

Share this post


Link to post
Share on other sites

my lack of understanding Indonesian does not help with that haha ( tho i think i understand the code)  :P  , i was just asking how you go about steeping your selections ?  or is that selection box on it just move up and down like the default and  you are hiding the old text box but using the selector ? 

Edited by Tandinos

Share this post


Link to post
Share on other sites

how do you move the Selections in positions you want ?? also can you customize the size of the letters and format ?

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