Skip Title Once VX + ACE
#1
Skip Title Once VX + ACE

by Kyonides

Introduction

This simple scriptlet was created after a fellow forumer had posted a thread asking for such a thing to be published here.

I don't recall any other script at this point so I'm simply posting it here.

This doesn't mean that there are not similar scripts on the web, guys. Happy with a sweat

VX Version
Code:
# * Skip Title Once VX * #
#  Plug & Play Script
#  Scripter : Kyonides Arkanthes
#  2024-01-06

class Scene_Title
  alias :kyon_skip_title_once_scn_ttl_main :main
  def main
    if $BTEST
      battle_test
    else
      check_continue
      @continue_enabled ? super : goto_first_map
    end
  end

  def goto_first_map
    load_database
    create_game_objects
    command_first_game
    Graphics.freeze
  end

  def command_first_game
    confirm_player_location
    $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
    $scene = Scene_Map.new
    Graphics.frame_count = 0
    $game_map.autoplay
  end
end

VX ACE Version
Code:
# * Skip Title Once ACE * #
#   Plug & Play Script
#   Scripter : Kyonides Arkanthes
#   2024-01-06

module SceneManager
  def self.run
    DataManager.init
    Audio.setup_midi if use_midi?
    @has_save_files = DataManager.save_file_exists?
    unless @has_save_files
      DataManager.setup_new_game
      $game_map.autoplay
    end
    @scene = first_scene_class.new
    @scene.main while @scene
  end

  def self.first_scene_class
    $BTEST ? Scene_Battle : @has_save_files ? Scene_Title : Scene_Map
  end
end

Terms & Conditions

Just grab it and use it as many times as possible. Grinning
That's it! Tongue sticking out
Really, that's all you need to know. Winking
"For God has not destined us for wrath, but for obtaining salvation through our Lord Jesus Christ," 1 Thessalonians 5:9

Maranatha!

The Internet might be either your friend or enemy. It just depends on whether or not she has a bad hair day.

[Image: SP1-Scripter.png]
[Image: SP1-Writer.png]
[Image: SP1-Poet.png]
[Image: SP1-PixelArtist.png]
[Image: SP1-Reporter.png]

My Original Stories (available in English and Spanish)

List of Compiled Binary Executables I have published...
HiddenChest & Roole

Give me a free copy of your completed game if you include at least 3 of my scripts! Laughing + Tongue sticking out

Just some scripts I've already published on the board...
KyoGemBoost XP VX & ACE, RandomEnkounters XP, KSkillShop XP, Kolloseum States XP, KEvents XP, KScenario XP & Gosu, KyoPrizeShop XP Mangostan, Kuests XP, KyoDiscounts XP VX, ACE & MV, KChest XP VX & ACE 2016, KTelePort XP, KSkillMax XP & VX & ACE, Gem Roulette XP VX & VX Ace, KRespawnPoint XP, VX & VX Ace, GiveAway XP VX & ACE, Klearance XP VX & ACE, KUnits XP VX, ACE & Gosu 2017, KLevel XP, KRumors XP & ACE, KMonsterPals XP VX & ACE, KStatsRefill XP VX & ACE, KLotto XP VX & ACE, KItemDesc XP & VX, KPocket XP & VX, OpenChest XP VX & ACE
Reply }


Possibly Related Threads…
Thread Author Replies Views Last Post
   Single Quest Title ACE kyonides 0 1,087 05-21-2023, 11:33 PM
Last Post: kyonides
   Skip Battle Messages Helladen 1 6,012 08-06-2012, 01:34 AM
Last Post: Helladen
   Skip Battle Log Helladen 0 4,784 08-02-2012, 10:49 AM
Last Post: Helladen
   Skip Party Command Window Helladen 0 4,905 07-27-2012, 06:43 AM
Last Post: Helladen
   Victor Engine - Skip Battle Log Victor Sant 0 4,954 01-09-2012, 05:27 AM
Last Post: Victor Sant
   Xenres' Title Skip Kirito 0 5,528 11-25-2010, 06:03 AM
Last Post: Kirito
   AWorks Frame Skip vgvgf 0 4,380 09-23-2009, 11:57 PM
Last Post: vgvgf
   Title Screen Replacer + Enhancer v1.0.1 [Exclusive] PK8 1 6,936 07-03-2009, 04:19 AM
Last Post: Hsia_Nu
   [Unsupported] Title Skip 2 VX PK8 0 4,868 12-07-2008, 12:36 PM
Last Post: PK8



Users browsing this thread: 2 Guest(s)