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.

Command box

Can someone make a script or tell me what to do to move the command box in battle that says fight/skill/defend/ and item to the very bottom right fo the screen, i dont mid if it covers up a persons sprite or anything.
 
You can edit Scene_Battle3, phase3_setup_command_window to match the code below,
or just paste the whole script right above main.

Code:
class Scene_Battle
  #--------------------------------------------------------------------------
  # * Actor Command Window Setup
  #--------------------------------------------------------------------------
  def phase3_setup_command_window
    # Disable party command window
    @party_command_window.active = false
    @party_command_window.visible = false
    # Enable actor command window
    @actor_command_window.active = true
    @actor_command_window.visible = true
    # Set actor command window position
    @actor_command_window.x = 480
    @actor_command_window.y = 320
    # If you need to make the window opaque
    @actor_command_window.z = 103
    @actor_command_window.opacity = 255
    @actor_command_window.back_opacity = 255
    # Set index to 0
    @actor_command_window.index = 0
  end
end

be well
 

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