Main Menu
  • Welcome to The RPG Maker Resource Kit.

Help on Title Screen

Started by nevfx, December 09, 2006, 05:48:46 PM

0 Members and 1 Guest are viewing this topic.

nevfx

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.


  # -------------------------------------------------------------------------
  #* 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.

Falcon

Look around, someone wanted a script like this and I made one.

nevfx


nevfx

Im sorry I cant find it, do you know where it is?

Falcon


nevfx

Thanks, it works now. All done.