RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
is there a script that

0 Members and 1 Guest are viewing this topic.

**
Rep:
Level 88
I R 3V1L!!111!!1
when you are at the title screen i can show multiple screens. IE a screen with credits, then switches rto another than the title?

*****
Rep:
Level 89
I'm back again. Again.
I do know what you mean, but I'm sure this can be done with eventing, but I dont know how...

**
Rep:
Level 88
I think he means opening scene before like the actual title of the game comes up.....LIke for example



*Game opens and shows a prettiful landscape and a few credits to the maker(s)
*Some action and then a clash then...
*BAM title screen comes along in there....


Was that slightly understandable?

**
Rep:
Level 88
I R 3V1L!!111!!1
I think he means opening scene before like the actual title of the game comes up.....LIke for example



*Game opens and shows a prettiful landscape and a few credits to the maker(s)
*Some action and then a clash then...
*BAM title screen comes along in there....


Was that slightly understandable?


thats exactly what i meant.....


i need one like this....

*
Rep:
Level 102
2014 Biggest Narcissist Award2014 Biggest Forum Potato2014 Best Non-RM Creator2013 Best Game Creator (Non-RM)2013 Best IRC ChatterboxParticipant - GIAW 112012 Most Successful Troll2012 Funniest Member2012 Best Use Of Avatar and Signature space2012 Best IRC ChatterboxSecret Santa 2012 ParticipantProject of the Month winner for November 2009For being a noted contributor to the RMRK Wiki2010 Most Successful Troll2010 Biggest Forum Couch Potato2010 Best IRC Chatterbox
Yes. I'll get the script...
Code: [Select]
class Scene_Cutscene
def main
    $data_actors        = load_data("Data/Actors.rxdata")
    $data_tilesets      = load_data("Data/Tilesets.rxdata")
    $data_common_events = load_data("Data/CommonEvents.rxdata")
    $data_system        = load_data("Data/System.rxdata")
    $data_mapInfos     = load_data("Data/MapInfos.rxdata")
    $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_map           = Game_Map.new
    $game_player        = Game_Player.new
    @save_max = 3
    for i in 0..@save_max     
      if FileTest.exist?("Save#{i+1}.rxdata") : $scene = Scene_Title.new end
    end

    $game_map.setup(14)
    $game_player.moveto(0, 0)
    $game_player.refresh
    $game_map.update
    $scene = Scene_Map.new
  end
end
14 is the map ID you want the cutscene to take place.
    $game_map.setup(14)

When you want to go to the title screen use the event command.
« Last Edit: February 17, 2007, 12:24:14 AM by Irockman1 »

**
Rep:
Level 88
I R 3V1L!!111!!1
THANK YOU!!!!!!!

*
Rep:
Level 102
2014 Biggest Narcissist Award2014 Biggest Forum Potato2014 Best Non-RM Creator2013 Best Game Creator (Non-RM)2013 Best IRC ChatterboxParticipant - GIAW 112012 Most Successful Troll2012 Funniest Member2012 Best Use Of Avatar and Signature space2012 Best IRC ChatterboxSecret Santa 2012 ParticipantProject of the Month winner for November 2009For being a noted contributor to the RMRK Wiki2010 Most Successful Troll2010 Biggest Forum Couch Potato2010 Best IRC Chatterbox
No probleme. I can't remember who made it though.