Tandinos 0 Posted December 25, 2014 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
Zeon013 21 Posted December 25, 2014 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 3 Share this post Link to post Share on other sites
Tandinos 0 Posted December 25, 2014 (edited) 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 December 26, 2014 by Tandinos Share this post Link to post Share on other sites
Zeon013 21 Posted December 26, 2014 Well, I think you should use Theo's script then, you can adjust each command (new game, continue, and shutdown) Theo - Custom Title Command Share this post Link to post Share on other sites
Tandinos 0 Posted December 27, 2014 (edited) my lack of understanding Indonesian does not help with that haha ( tho i think i understand the code) , 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 December 27, 2014 by Tandinos Share this post Link to post Share on other sites
PotatoGangsta 0 Posted April 7, 2015 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