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 screen animation

sorry im not exactly sure where to request this..
what i want is to have an animation play as soon as you press the button on new game...
well i dont know how to explain that any better or detailed.. please if someone can help me that would be great..
thanx.

also - if its not possible to have an animation play at that point, can someone help to make it so i can use a transition there..
thanx.
 
I have reported this to moderator to be moved to script requests.
I haven't seen a script like you have said, though I clearly don't understand
what your talking about.
Try being more detailed, and less grammar errors.

Note: I have seen some close, but not exactly here's some links to some examples.

This one is what your looking for, but kind of hard for someone who's new to move, and
understand how to use it.
Just download this on the page, hard to miss it.
http://upokecenter.com/projects/pokestarter/

Next one is animated, but not by button, or picture. Just text there's
2 types side ways, and front ways (normal)
Normal one is second post by me, and first is kind of weird.
These weren't made by me, or the link above, so don't credit me.
http://forums.rmrevolution.com/index.ph ... 173.0.html
 
You can make a title screen like a map with events

add this script before main:

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

I have a demo (encryted) using this script
Screenshots:
http://img186.imageshack.us/img186/6332/99894536nl4.jpg[/img]
http://img170.imageshack.us/img170/7060/97986616es6.jpg[/img]

Download: Here
pass: makegamevn
 
sorry about being unclear.. all i want is to play a battle animation once the player presses enter on the title screen, so when you press the enter button a battle animation will play while the title screen fades away..
thats all i want.. i dont want an animated title screen or anything like that.. although @minhhieuleo - that looks amazing... but sorry thats not exactly what i was looking for.. and @hellladen - neither of those two websites loaded for me...
i hope its a little more clear now..
sorry... and thanks
 

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