A title screen showing only a single command

● ARCHIVED · READ-ONLY
Started by CarlosDavilla 3 posts View original ↗
  1. Hello. It's me again.

    I'm here once again asking for a script (or some other way to do that) that changes the command box in the title screen to have only one single command showing, and, if you press up and down, it'll show the other ones.

    Here's a fine example (I think it is, okay? I did my best at using Paint.)

    SDdHyOi.png

    I'm pretty sure that's possible to do, as I've seen other RMVXA games doing it, like Amort. I just don't know how.
  2. This miiight work.
    Code:
    class Window_TitleCommand
    
      def update_placement
        self.x = 0 # Set X Position here
        self.y = 0 # Set Y Position here
      end
    
      def visible_line_number
        return 1
      end
    
    end
  3. Worked like a charm. Thank you, Theo.
    This thread can now be closed.