Save-Point
Kingdom Hearts Menu - Printable Version

+- Save-Point (https://www.save-point.org)
+-- Forum: Archives (https://www.save-point.org/forum-105.html)
+--- Forum: Creation Asylum Archives (https://www.save-point.org/forum-90.html)
+---- Forum: Scripts & Code Snippets (https://www.save-point.org/forum-92.html)
+----- Forum: RPG Maker XP Code (https://www.save-point.org/forum-93.html)
+------ Forum: Menu/Title System (CMS) (https://www.save-point.org/forum-95.html)
+------ Thread: Kingdom Hearts Menu (/thread-6342.html)



Kingdom Hearts Menu - Leon Blade - 12-29-2006

Kingdom Hearts Menu
Leon Blade
Dec 29 2006

This is a locked, single-post thread from Creation Asylum.  Archived here to prevent its loss.
No support is given.  If you are the owner of the thread, please contact administration.


Hello, I got the Kingdom Hearts Menu system finally to work. I would like some credit on this to!

Kingdom Hearts Menu


More on the next post!

.zip   KH_Menu.zip (Size: 356.84 KB / Downloads: 6)


That last script was to go above main, you can call it KH Menu. Now place this script above main and the KH Menu...

Party Command


One more thing on next post!


----------------------
Okay now I will explain to you how everything works...

First off there is the two different items scenes, Item and Item2.

Item one displays only regular items.

Item two displays only synthesis items, which are defined by a new attribute in the systems tab, ID 17 called Synth. Items.

After you do all of that there is the party command. You may not see it yet so turn on Switch[1] and you will get the command.

Now the last thing to discuss took me about 23 min to make. Its the journal scene. To use this press LEFT or RIGHT to flip between 3 pages. This works by using variables and switches.

Variable[1] is called Page Number. When Variable[1] = 0 you are on page 1, Var[1] = 1 your on page 2. This keeps going on like this. The maximum page is set in Scene_Journal. It will say

Code:
if $game_variables[1] == 3
change the 3 to the maximum page number. The switches are for when you do certain things a switch activates and it gets writen in your Journal. The journal writing is well explained in Window_Journal. But ill explain it again. The writing goes onto the paper. The lines increse 32 Y cordinates every line and 42 every small break. Switches activate the journal entrys and variables determine what page your on so if you see a

Code:
if $game_variables[1] == 0

that means the writing following this if command are on page 1 untill the if statment ends. Then it will most likly change to variables[1] == 1, then the following would be page 2 writing.

Thats all that you need to know to use this menu. The only trouble I had was making the different Item sections because I couldn't fine the code for armor element. But I found it and you can now use it.

-Leon Blade-

!REMEMBER GIVE ME CREDIT!