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]message window height

Status
Not open for further replies.

Mac

Member

Go into Window_Message.

The look for the line:-

Code:
    super(110, 302, 480, 160)

That is x, y, width, height...also note you can't change the y placement just with this part of code, but the rest is editable. If you want to change y, keep looking down till you get here:-

Code:
      case $game_system.message_position
      when 0  # up
        self.y = 16
      when 1  # middle
        self.y = 160
      when 2  # down
        self.y = 320
      end
    end

That sets placement for Up, Middle and Down when called upon using message placement.
 
In Window_Message search for the line:
Code:
...
super(80, 304, 480, 160)
...

Just change the 160 to something else to change the height.

Edit:
Hehe, seems like someone was faster.
 
This topic has been resolved. If chaos_killa or any other users have any questions or further problems regarding this topic, please create a new thread about them.

Thank you!
 
Status
Not open for further replies.

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