HOW TO MOVE THE TITLE SCREEN BOX?

Posts

Pages: 1
Adon237
if i had an allowance, i would give it to rmn
1743

I want to move the title box, you know the one that has the "New Game" and "Load Game" and stuff like that, down more. It's VX, and I am guessing Scene_Title would have the Y coords in the script, could someone help direct me to this? And also, would moving the box affect the title screen in a bad way?
#--------------------------------------------------------------------------
  # * Create Command Window
  #--------------------------------------------------------------------------
  def create_command_window
    s1 = Vocab::new_game
    s2 = Vocab::continue
    s3 = Vocab::shutdown
    @command_window = Window_Command.new(172, [s1, s2, s3])
    @command_window.x = (544 - @command_window.width) / 2
    @command_window.y = 288
    if @continue_enabled                    # If continue is enabled
      @command_window.index = 1             # Move cursor over command
    else                                    # If disabled
      @command_window.draw_item(1, false)   # Make command semi-transparent
    end
    @command_window.openness = 0
    @command_window.open
  end
This is found inside Scene_Title. @command_window.x and @command_window.y control the coordinates.
Adon237
if i had an allowance, i would give it to rmn
1743
Alright, thanks KreadEX, I am new to scripting, obviously. Thanks. :)
Pages: 1