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.

i need help! please

how would i go about making a custom menu where you can still see the map?
I already know how to make the windows but the background is just black.
 

Atoa

Member

Code:
class Scene_Menu

  alias main_menu_back main

  def main

    @spriteset = Spriteset_Map.new

    main_menu_back

    @spriteset.dispose

  end

end
Paste this bellow the menu script.
 

Atoa

Member

If you also need to add the background to the Equip, Item and Status, add this to the code i posted

Code:
class Scene_Item

  alias main_menu_back main

  def main

    @spriteset = Spriteset_Map.new

    main_menu_back

    @spriteset.dispose

  end

end

 

class Scene_Equip

  alias main_menu_back main

  def main

    @spriteset = Spriteset_Map.new

    main_menu_back

    @spriteset.dispose

  end

end

 

class Scene_Status

  alias main_menu_back main

  def main

    @spriteset = Spriteset_Map.new

    main_menu_back

    @spriteset.dispose

  end

end

 

class Scene_End

  alias main_menu_back main

  def main

    @spriteset = Spriteset_Map.new

    main_menu_back

    @spriteset.dispose

  end

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