The RPG Maker Resource Kit

RMRK RPG Maker Creation => RPG Maker General => General Tutorials and Eventing => Topic started by: SonicJ on February 13, 2006, 11:45:25 PM

Title: Help option in pause menu.
Post by: SonicJ on February 13, 2006, 11:45:25 PM
Hi everyone!
I want to make a help option in the pause menu to replace the save option.
I already got the first part down in the script editor
Quotedef main
   # ã,³ãƒžãƒ³ãƒ‰ã,¦ã,£ãƒ³ãƒ‰ã,¦ã,'作成
   s1 = $data_system.words.item
   s2 = $data_system.words.skill
   s3 = $data_system.words.equip
   s4 = "Status"
   s5 = "Help"(Replaced save)
   s6 = "Exit"
   @command_window = Window_Command.new(160, [s1, s2, s3, s4, s5, s6,])
   @command_window.index = @menu_index
   # ãƒ'ーテã,£äººæ•°ãŒ 0 人の場合
So what I did so far was just change the "save" to "help"
But what I need to know is where do I go from here? How do I actually make a command for help so it will replace the save function?
Title: Help option in pause menu.
Post by: thatsmypie on February 14, 2006, 02:57:07 PM
The only way to do that is to edit a big chunk of the script, your best bet would be to have to book that you obtain at the start of the game, call it something like "Book of Guidence" Then just have a common event for when it is used telling you... well.. help I guess!