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.
[RESOLVED]Getting past the title screen

0 Members and 1 Guest are viewing this topic.

***
Rep:
Level 87
RMU Admin
I need help on getting past the title screen. What i mean is i want no title screen, i want my game to go straight to the 1st map.If you need more info just ask. thanks.
« Last Edit: May 03, 2007, 01:08:15 PM by Nouman »

*
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
I didn't make this.

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
      #Place the ID of the map here
    $game_map.setup(##)
    #Place the coordinates here
    $game_player.moveto(0, 0)
    $game_player.refresh
    $game_map.update
    $scene = Scene_Map.new
  end
end

And in main replace   $scene = Scene_Title.new with   $scene = Scene_Cutscene.new
« Last Edit: May 01, 2007, 11:42:00 PM by Irockman1 »

***
Rep:
Level 87
RMU Admin
i got it to work but it don't show the Char i have for the starting party. i even made an event that gives me the char and it gives me an error

?????'Game_Actor'?67 ??? NoMethodError?????????
unidefined method `[]'for nil:NilClass

*
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
What scripts are you using?

***
Rep:
Level 87
RMU Admin
just this one

***
Rep:
Level 88
http://www.rukinet.com
Maybe you need SDK...?

EDIT: But at a second thought... I totally, totally SUCK at scripting and stuff like that so... I've got just no idea, át all, what you should do ^^'


Rukinet. - the dot's included!

***
Rep:
Level 90
Skilled Scripter, Shitty Mapper, Decent Writer.
There is no SDK dependency in the script above. Who ever made that script screwed up with the loading of data. Several $data variables I saw in Scene_Title are missing. I've already got numerous requests going but it shouldn't take me more than 20-30 minutes to fix this.

EDIT:Make that 5 minutes. I think the main thing missing was that whoever scripted this didn't call the method that sets up your starting party. Hence the error you got but regardless, time for instructions on using this. Just insert right above main and inside main, replace $scene = Scene_Title.new with $scene = Scene_Cutscene.new
The script will take the player to where ever you have the starting location set to.

Code: [Select]
class Scene_Cutscene
  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_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
      #Place the ID of the map here
    $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

EDIT#2:I gotta admit this script is handy when you're working on a script project. coughcardcoughbattlecoughsystemcough
« Last Edit: May 02, 2007, 03:13:13 PM by Shinami »

***
Rep:
Level 87
RMU Admin
i will try it when i get home thanks  :)
Who do i give credit to?
« Last Edit: May 02, 2007, 07:07:06 PM by Polraudio »


***
Rep:
Level 87
RMU Admin
Thanks for all your help everyone ;)