Envision, Create, Share

Welcome to HBGames, a leading amateur game development forum and Discord server. All are welcome, and amongst our ranks you will find experts in their field from all aspects of video game design and development.

'New Game' links to certain map?

Hey All!
Is it possible to link the 'New Game' option to a certain map?
For Example, if I select 'New Game' it will take me to 'MAP 003'?
Thanks,
  ~AdamationStudios

P.S. IM A TOTAL SCRIPTING NEWB SO PLEASE DONT FLAME ME!
 

EOG

Member

Set start position at map003

or if you got diffrent new game(for diffrent chices) here's script.

Code:
#==============================================================================
# ** Start Map script by EOG
# ** No credit need
#==============================================================================
class Scene_Title < Scene_Base
  def command_new_game
    map_id = $data_system.start_map_id  # put here id of map you want to start
    x = $data_system.start_x            # player x start position
    y = $data_system.start_y            # player y start position
    confirm_player_location
    Sound.play_decision
    $game_party.setup_starting_members            # Initial party
    $game_map.setup(map_id)    # Initial map position
    $game_player.moveto(x, y)
    $game_player.refresh
    $scene = Scene_Map.new
    RPG::BGM.fade(1500)
    close_command_window
    Graphics.fadeout(60)
    Graphics.wait(40)
    Graphics.frame_count = 0
    RPG::BGM.stop
    $game_map.autoplay
  end
end
 
Set start position at map003

or if you got diffrent new game(for diffrent chices) here's script.

Err... Well, my actor starts on my 'Credits Page' where the actor is invisible while the credits play, then, it goes to the menu. After that, when I hit 'New Game' it takes the player back to my credits (because that's where the player starting position is). What I want it to do is take the player to 'MAP 003'. Get it? 0_o confusing, I know.
 

Thank you for viewing

HBGames is a leading amateur video game development forum and Discord server open to all ability levels. Feel free to have a nosey around!

Discord

Join our growing and active Discord server to discuss all aspects of game making in a relaxed environment. Join Us

Content

  • Our Games
  • Games in Development
  • Emoji by Twemoji.
    Top