Main Menu
  • Welcome to The RPG Maker Resource Kit.

Here's how to bypass the title screen

Started by Soul, July 05, 2005, 12:06:58 PM

0 Members and 1 Guest are viewing this topic.

Soul

ok here is a script that totaly bypass the title screan.. now i take no credit for it i did not creat it in any way i am only posting it here for people to use..
credit should go to  Killswitch (he dos not say his realy name) ok here it is


- just replace the entire "MAIN" in the script editor with this





#==============================================================================
# â–  Main
#------------------------------------------------------------------------------
#  å,,ã,¯ãƒ©ã,¹ã®å®šç¾©ãŒçµ,ã,ã£ãŸå¾Œã€ã"ã"かã,‰å®Ÿéš›ã®å‡¦ç†ãŒå§‹ã¼br />?ã,Šã¾ã™ã€,
#==============================================================================

begin

# This variable determines the default font type
$defaultfonttype = "Arial"
# This variable determines the default font size
$defaultfontsize = 24

# トランã,¸ã,·ãƒ§ãƒ³æº–å,™
Graphics.freeze
# ã,·ãƒ¼ãƒ³ã,ªãƒ–ã,¸ã,§ã,¯ãƒˆ (ã,¿ã,¤ãƒˆãƒ«ç"»é¢) ã,'作成
#loading stuffs---------------------------
 # デーã,¿ãƒ™ãƒ¼ã,¹ã,'ロード
  $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
  # ã,¿ã,¤ãƒˆãƒ«ã,°ãƒ©ãƒ•ã,£ãƒƒã,¯ã,'作成
  @sprite = Sprite.new
 
  #end of loading stuffs-----------------------------------
  $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
  # マップに設定さã,Œã¦ã,,ã,‹ BGM と BGS の自動切ã,Šæ›¿ãˆã,'実行
  $game_map.autoplay
  # マップã,'æ›´æ–° (並列ã,¤ãƒ™ãƒ³ãƒˆå®Ÿè¡Œ)
  $game_map.update
  #マップç"»é¢ã«åˆ‡ã,Šæ›¿ãˆ
$scene = Scene_Map.new
   

# $scene が有効な限ã,Š main メã,½ãƒƒãƒ‰ã,'å'¼ã³å‡ºã™
while $scene != nil
  $scene.main
end
# フã,§ãƒ¼ãƒ‰ã,¢ã,¦ãƒˆ
Graphics.transition(20)
rescue Errno::ENOENT
# 例外 Errno::ENOENT ã,'補足
# フã,¡ã,¤ãƒ«ãŒã,ªãƒ¼ãƒ—ンできなかった場合、メッã,»ãƒ¼ã,¸ã,'表示ぼbr />?てçµ,了すã,‹
filename = $!.message.sub("No such file or directory - ", "")
print("File #{filename} not found.")
end
#====================================================

Tsunokiette

does it replace the title screen with a cts, or does it just delete it, so you play the game imediately, cause the later wouldn't make too much since, (how would you load? lol)
"The wonderful thing about Tiggers
Is Tiggers are wonderful things
Their tops are made out of rubber
Their bottoms are made out of springs

They're bouncy, trouncy, flouncy, pouncy
Fun, fun, fun, fun, fun!
But the most wonderful thing about Tiggers
Is I'm the only one, I'm the only one."

Soul

i think it just delets the title alltogether but i havent tested it.. ill test it now

Tsunokiette

nm, I figured it out, theres a few extra lines, that you add making it quicker to test you game and then when your game is complete, you get rid of the lines of code
"The wonderful thing about Tiggers
Is Tiggers are wonderful things
Their tops are made out of rubber
Their bottoms are made out of springs

They're bouncy, trouncy, flouncy, pouncy
Fun, fun, fun, fun, fun!
But the most wonderful thing about Tiggers
Is I'm the only one, I'm the only one."

Mr. DJ

Quote from: Tsunokiettenm, I figured it out, theres a few extra lines, that you add making it quicker to test you game and then when your game is complete, you get rid of the lines of code

it dont delete it, it really is a bypass, try to go menu>exit>return to title ... hehe