ADDING CUSTOM MENU OPTIONS

basic guide to adding menu options.

First off this is for in-game options, and also this is for the basic menu.

/------Starting off------\
1) Open the script editor.
2) Go to Scene_Menu.
3) Go down until you see lines 54-60.

4) make a new line after line 59 and add s7 = "Custom" <-- you can change it.
Also add s7 to the current line 60.


/------Making it work------\
1) Go to line 90-97

2) Add a line after line 97 and put
when 6
$scene = Scene_ And put what ever you want to open when you use the new option.
an example would be
when 6 # Achievements
$scene = Achievements.new


If you did everything correctly it should look like this:




Posts

Pages: 1
How did you get the style of the menu to be like that? I've searched for different scripts but couldn't find anything that explains how to do that...
author=BeFreeLikeMe
How did you get the style of the menu to be like that? I've searched for different scripts but couldn't find anything that explains how to do that...
I haven't used VX in a while, but here's the pic for the style shown here:
http://www.mediafire.com/view/65gk8859tccp4xc/Window.png
To use it Import it into your games system folder.

Edit: Tut on importing window skins: Click Here
Pages: 1