Envision, Create, Share

Welcome to HBGames, a leading amateur game development forum and Discord server. All are welcome, and amongst our ranks you will find experts in their field from all aspects of video game design and development.

[resolved] How do I Change these commands!? HELP!

Alright, here's my problem. I need to know where in this script:

http://ragnarokvx.webs.com/test2.htm

That I can Change it from only the commands of "Item, Skill, Equip, Status, Save, Quit."
TO add one more command in between Status and save, which utilizes this script:

http://ragnarokvx.webs.com/test.htm

See my problem? I need The top script to allow access to the Lower script.

When I try to select the Option I put between STATUS and SAVE, it just goes to save, and save goes to quit and quit button does nothing, even though you can move to it.

I really need this to work
 
I'm not gonna be spoonfeeding you, I want you to learn something.

I assume selection 7 is GYLPH?
Then you'd had to change this part:
Code:
      when 0 #Item

     @menu_com.bitmap = Cache.menu("Menu_Com01")

      when 1 #Status

     @menu_com.bitmap = Cache.menu("Menu_Com02")

      when 2 #Equip

     @menu_com.bitmap = Cache.menu("Menu_Com03")

      when 3 #Skill

     @menu_com.bitmap = Cache.menu("Menu_Com04")

      when 4 # Save

     @menu_com.bitmap = Cache.menu("Menu_Com05")    

      when 5 # Exit

     @menu_com.bitmap = Cache.menu("Menu_Com06")

      when 6 # Exit

     @menu_com.bitmap = Cache.menu("Menu_Com07")

     when 7 # Exit

To:
Code:
      when 0 #Item

     @menu_com.bitmap = Cache.menu("Menu_Com01")

      when 1 #Status

     @menu_com.bitmap = Cache.menu("Menu_Com02")

      when 2 #Equip

     @menu_com.bitmap = Cache.menu("Menu_Com03")

      when 3 #Skill

     @menu_com.bitmap = Cache.menu("Menu_Com04")

      when 4 # Save

     @menu_com.bitmap = Cache.menu("Menu_Com05")    

      when 5 # Exit

     @menu_com.bitmap = Cache.menu("Menu_Com06")

      when 6 # Exit

     @menu_com.bitmap = Cache.menu("Scene_Gylph")
Change Scene_Gylph to the name of your Gylph script.

This should work. I don't know cause your menu is image based.
 
Okay, well listen, the part of script that you showed me didnt work, because it calls an image, not a script. maybe if I could change the line

@menu_com.bitmap = Cache.menu("Scene_Gylph")

to something that calls a script instead? But how would I do that? I'm not all that great with ruby script.

I'm also using this entire script:

http://ragnarokvx.webs.com/test.htm

So, is there any particualar part of the script I need to call? I'm sure there is.
 

Thank you for viewing

HBGames is a leading amateur video game development forum and Discord server open to all ability levels. Feel free to have a nosey around!

Discord

Join our growing and active Discord server to discuss all aspects of game making in a relaxed environment. Join Us

Content

  • Our Games
  • Games in Development
  • Emoji by Twemoji.
    Top