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.

cinematic cutscene and animated intro before title

Dadevster":3ah8y3we said:
Uh, you're not really giving us much info. A topic title won't suffice. What kind of cutscene? How long do you want the intro to be? Can you skip through it? Is it shown only once? What do you mean by cinematic? Give us enough information so someone can help you.

2 black bars top and bottom

not sure

how do i make it skippable?

like it to repeat itself after awhile at the menu screen
 
Uh, you're not really giving us much info. A topic title won't suffice. What kind of cutscene? How long do you want the intro to be? Can you skip through it? Is it shown only once? What do you mean by cinematic? Give us enough information so someone can help you.

Also, you don't exactly even need a new script for an intro before the title screen. Put this script:
Code:
#==============================================================================
# play events before title
# http://makegame.vn
#==============================================================================

class Scene_Title
    def main
    $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")
    $game_system = Game_System.new
    Graphics.frame_count = 0
    $game_temp          = Game_Temp.new
    $game_system        = Game_System.new
    $game_switches      = Game_Switches.new
    $game_variables     = Game_Variables.new
    $game_self_switches = Game_SelfSwitches.new
    $game_screen        = Game_Screen.new
    $game_actors        = Game_Actors.new
    $game_party         = Game_Party.new
    $game_troop         = Game_Troop.new
    $game_map           = Game_Map.new
    $game_player        = Game_Player.new
    $game_party.setup_starting_members
    $game_map.setup($data_system.start_map_id)
    $game_player.moveto($data_system.start_x, $data_system.start_y)
    $game_player.refresh
    $game_map.autoplay
    $game_map.update
    $scene = Scene_Map.new
  end
end
somewhere in the scripts thing. This will, instead of going straight to the title screen, go to the "Player Starting Position" place, just like if you pressed "New Game". From there you can event an intro and then go to the title screen.
 

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