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.

title( i dont want a title screen )

how can i make it so i dont have a title screen.
i just want the game to start.

but how do i make events
1.shut down game
2.load saved games
3. start new game
 
Use this script to skip the title screen (Taken from a post by Sephiroth Spawn)

Code:
#==============================================================================

# ** Scene_Title

#------------------------------------------------------------------------------

#  This class performs title screen processing.

#==============================================================================

 

class Scene_Title

  #--------------------------------------------------------------------------

  # * Main Processing

  #--------------------------------------------------------------------------

  def main

    # If battle test

    if $BTEST

      battle_test

      return

    end

    # Load database

    $data_actors        = load_data("Data/Actors.rxdata")

    $data_classes       = load_data("Data/Classes.rxdata")

    $data_skills        = load_data("Data/Skills.rxdata")

    $data_items         = load_data("Data/Items.rxdata")

    $data_weapons       = load_data("Data/Weapons.rxdata")

    $data_armors        = load_data("Data/Armors.rxdata")

    $data_enemies       = load_data("Data/Enemies.rxdata")

    $data_troops        = load_data("Data/Troops.rxdata")

    $data_states        = load_data("Data/States.rxdata")

    $data_animations    = load_data("Data/Animations.rxdata")

    $data_tilesets      = load_data("Data/Tilesets.rxdata")

    $data_common_events = load_data("Data/CommonEvents.rxdata")

    $data_system        = load_data("Data/System.rxdata")

    # Make system object

    $game_system = Game_System.new

    command_new_game

  end

end

Then to do those events simply make a script call event command like so:

Load Game: $scene = Scene_Load.new
Quit Game: exit
New Game: This doesn't need a script call event command, simply transfer the character to where the game begins.

Hope this helps!
 

Star

Sponsor

leadbelly":1pqu15i3 said:
not wrking
It works for me. Either you have a script that's interfering which I highly doubt. Or you didn't put it on there right. Make sure when you copy the script to turn the line numbers off. Right click on your script database at the bottom on Main and click insert. Then paste the script. Save. And it should work
 

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