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] Charlie Lee Custom Weapon Vers 5

I been using this script for a while and i need help on a edit.

http://www.rmxp.org/forums/index.php?topic=33324.0

When you use the call script you will be at the Echanting Menu. When you cancel/leave the Echant Menu you will be place in the Party Menu screen and it will highlight the Equip Menu. What i want is that when you leave teh Enchat Menu it will go back to the Map screen instead of the menu screen.

kay thxs

I will post up play by play screen shot if needed.
 
i didn't download it because its pretty simple to do this
just find a line thats looks like the follow:
Code:
    # If B button was pressed
    if Input.trigger?(Input::B)
      # Play cancel SE
      $game_system.se_play($data_system.cancel_se)
      # Switch to menu screen
      $scene = Scene_Menu.new(2)
      return
    end
it should be something like that not sure.
Now replace it with:
Code:
    # If B button was pressed
    if Input.trigger?(Input::B)
      # Play cancel SE
      $game_system.se_play($data_system.cancel_se)
      # Switch to menu screen
      $scene = Scene_Map.new
      return
    end
 

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