Skip Title Once XP
#1
Skip Title Once XP

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

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

class Scene_Title
  SAVE_FILENAME_FORMAT = "Save*.rxdata"
  alias :kyon_skip_title_once_scn_ttl_main :main
  def main
    if $BTEST or Dir[SAVE_FILENAME_FORMAT].any?
      kyon_skip_title_once_scn_ttl_main
    else
      goto_first_map
    end
  end

  def goto_first_map
    load_database
    command_first_game
    Graphics.freeze
  end

  def load_database
    $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")
  end

  def command_first_game
    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

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
   Title Skip for Lycan ABS JayRay 3 7,600 04-21-2014, 01:55 PM
Last Post: MetalRenard
   Xenres' Title Skip Kirito 0 7,199 11-25-2010, 05:59 AM
Last Post: Kirito
   Pre-title maps deValdr 3 10,420 04-22-2010, 05:24 PM
Last Post: yamina-chan
   TITLE KILLER by Villain Villain 5 10,345 03-04-2010, 05:49 PM
Last Post: Villain
   [Unsupported] Title Skip 2 XP PK8 3 9,436 02-17-2010, 12:01 PM
Last Post: Villain
   [Unsupported] Title Skip 1 PK8 2 6,958 09-15-2009, 10:44 PM
Last Post: DerVVulfman
   Title Screen Edit ParaDog 0 4,424 03-04-2008, 05:10 AM
Last Post: ParaDog
   Paradog's Custom Title Trickster 0 4,864 03-02-2008, 06:21 AM
Last Post: Trickster



Users browsing this thread: 1 Guest(s)