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.
Help on Title Screen

0 Members and 1 Guest are viewing this topic.

*****
Rep:
Level 89
I'm back again. Again.
I've added a new command on the title screen "Battle Arena".

I it so when you click the button, it goes to a map I made. So, far, I have this.

So, far I have done this.

Code: [Select]
  # -------------------------------------------------------------------------
  #* Command: BattleArena
  #--------------------------------------------------------------------------
  def command_battlearena
     # Play decision SE
     $game_system.se_play($data_system.decision_se)
     # Stop BGM
     Audio.bgm_stop
     # Make title graphic
    @sprite = Sprite.new
    @sprite.bitmap = RPG::Cache.title($data_system.title_name)
     # Make command window
     s1= "Monster Squad"
     s2= "Boss Squad"
  end

I know it is not finished, don't worry about it. What do I need to add or take away to make it take the player to the map I made, like starting a new game, just taking me to that map, instead of the Players Starting Position.

I know this kind of topic was made somewhere before, but the author gave up.

******
Revolution is not a bed of roses.
Rep:
Level 91
Project of the Month winner for July 2009
Look around, someone wanted a script like this and I made one.

*****
Rep:
Level 89
I'm back again. Again.
Really? Ok, thanks.

*****
Rep:
Level 89
I'm back again. Again.
Im sorry I cant find it, do you know where it is?

******
Revolution is not a bed of roses.
Rep:
Level 91
Project of the Month winner for July 2009

*****
Rep:
Level 89
I'm back again. Again.
Thanks, it works now. All done.