RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
sidescrolling Menu system

0 Members and 1 Guest are viewing this topic.

pokeball AiROffline
**
Rep:
Level 87
Would it be at all possible to create a sidescrolling character selector on the main menu screen?
"The Optimist believes that we live in the best possible world. The Pesimist fears this to be true."

*
Rep:
Level 102
2014 Biggest Narcissist Award2014 Biggest Forum Potato2014 Best Non-RM Creator2013 Best Game Creator (Non-RM)2013 Best IRC ChatterboxParticipant - GIAW 112012 Most Successful Troll2012 Funniest Member2012 Best Use Of Avatar and Signature space2012 Best IRC ChatterboxSecret Santa 2012 ParticipantProject of the Month winner for November 2009For being a noted contributor to the RMRK Wiki2010 Most Successful Troll2010 Biggest Forum Couch Potato2010 Best IRC Chatterbox
Almost anything is possible with scripting.
Yes it would be. But you would have to find a good scripter like Blizzard.

*
Rep:
Level 97
2014 Most Unsung Member2014 Best RPG Maker User - Engine2013 Best RPG Maker User (Scripting)2012 Most Mature Member2012 Favorite Staff Member2012 Best RPG Maker User (Scripting)2012 Best MemberSecret Santa 2012 ParticipantProject of the Month winner for July 20092011 Best Veteran2011 Favourite Staff Member2011 Most Mature Member2011 Best RPG Maker User (Scripting)2011 Best Use of Avatar and Signature Space2010 Most Mature Member2010 Favourite Staff Member
I'm not exactly sure what the question means?  :'( What is a sidescrolling character selector?

*
A Random Custom Title
Rep:
Level 96
wah
Uhhh... I'm guessing a sidescrolling Menu system is like the thing that happens in Final Fantasy Tactics when you're selecting a job for a character.

pokeball AiROffline
**
Rep:
Level 87
It's a menu screen where the character portraits and information scroll from side to side, rather than the usual up and down. Example:
+-++-+
|0||0|
+-++-+

As opposed to the typical:
+---+
|0-+|
+---+
+---+
|0-+|
+---+
"The Optimist believes that we live in the best possible world. The Pesimist fears this to be true."

***
Rep:
Level 90
Like this?
Code: [Select]
class Window_MenuStatus < Window_Selectable
  #--------------------------------------------------------------------------
  # * Object Initialization
  #--------------------------------------------------------------------------
  def initialize
    super(0, 0, 480, 128)
    self.contents = Bitmap.new($game_party.actors.size * 448, 96)
    refresh
    self.active = false
    self.index = -1
  end
  #--------------------------------------------------------------------------
  # * Refresh
  #--------------------------------------------------------------------------
  def refresh
    self.contents.clear
    @item_max = $game_party.actors.size
    for i in 0...$game_party.actors.size
      x = 448 * i + 64
      y = 0
      actor = $game_party.actors[i]
      draw_actor_graphic(actor, x - 40, y + 80)
      draw_actor_name(actor, x, y)
      draw_actor_class(actor, x + 144, y)
      draw_actor_level(actor, x, y + 32)
      draw_actor_state(actor, x + 90, y + 32)
      draw_actor_exp(actor, x, y + 64)
      draw_actor_hp(actor, x + 236, y + 32)
      draw_actor_sp(actor, x + 236, y + 64)
    end
  end
  #--------------------------------------------------------------------------
  # * Cursor Rectangle Update
  #--------------------------------------------------------------------------
  def update_cursor_rect
    if @index < 0
      self.cursor_rect.empty
    else
      self.ox = 448 * @index
      self.cursor_rect.set(0, 0, width - 32, height - 32)
    end
  end
  #--------------------------------------------------------------------------
  # * Frame Update
  #--------------------------------------------------------------------------
  def update
    super
    if self.active
      if Input.repeat?(Input::RIGHT)
        $game_system.se_play($data.system.cursor_se)
        @index += 1
        @index %= $game_party.actors.size
      end
      if Input.repeat?(Input::LEFT)
        $game_system.se_play($data.system.cursor_se)
        @index -= 1
        @index %= $game_party.actors.size
      end
      update_cursor_rect
    end
  end
end

pokeball AiROffline
**
Rep:
Level 87
Possibly, but what I'm most looking for are reference materials and/or tutorials teaching the procces of creating a CMS.  I currently have (most of) the system designed in Photoshop, but am unaware how to turn those mock-ups into the end product.

I've read the manual, which was of little help, and unfortuantely most of the tutorials linked on the main thread lead to private forums that no longer allow new members. :\ Internet searches have also gleened little to no help on the subject.  That said, any sites, tips, and/or reference materials you could lend to help me learn this particular type of scripting would be greatly appreciated.
"The Optimist believes that we live in the best possible world. The Pesimist fears this to be true."

***
Rep:
Level 90
The best way to learn to edit CMS is to view and edit other CMS.