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.

Resize Battle Window

Hi all,

I'm looking for a script that will allow me to resize the battle command window, so I can fit extra commands without the player having to scroll downwards.

I'm using Trickster's Advanced IP script (rage attacks), so I have a total of five battle commands:

-Attack
-Skills
-Items
-Defend
-Rage

But at the moment, the window only shows the first 4, and you have to scroll down to see Rage.

Does anyone have a script or some advice to make the command window taller? Any help at all will be greatly appreciated!

Thanks!
 
Give me a second will edit with script later

Add this in a new script below my Ip Skills Script

Code:
class Scene_Battle
  def main_window
    # The Usual
    trick_ip_battle_main_window
    # Get Commands
    commands = @actor_command_window.commands.dup
    # Push Escape
    commands << Ip_Setup::Name
    # Increase Height
    @actor_command_window.height += 32
    # Decrease Y
    @actor_command_window.y -= 32
    # Push Escape
    @actor_command_window.commands = commands
  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