public

Rpg Maker Developers Group

Simple enough for a child, powerful enough for a developer

2 Followers

VXACETweaks: Skip First Title, Quick Swap, Timer Resume

BMM Archive · July 15, 2026

Preserved forum archive. This topic stores the original first post and locally mirrored RPG Maker Web attachments when available. It is posted by the BMMPlay archive account, not by the original creator.

Original Source

  • Original title: Tweaks: Skip First Title, Quick Swap, Timer Resume
  • Original author: ovate
  • Original date: January 30, 2022
  • Source thread: https://forums.rpgmakerweb.com/threads/tweaks-skip-first-title-quick-swap-timer-resume.144462/
  • Source forum path: Game Development Engines > Ruby Game System (RGSS) Scripts > RGSS3 Scripts (RMVX Ace)

Summary

Skip First Title If there's no save file, the game starts a new game without a title screen. Note: The event command [Return to Title Screen], will be displayed as usual. Preview

Archived First Post

Skip First Title

If there's no save file, the game starts a new game without a title screen.

Note: The event command [Return to Title Screen], will be displayed as usual.

Preview
2a0Djoz.gif


Installation
Paste this script above Main.

Script
Code:
#==============================================================================
# ■ Skip first title RGSS3 v1.1        MIT License; see git.io/tic
#------------------------------------------------------------------------------
# If there's no save file, the game starts a new game without a title screen.
# The event command [Return to Title Screen], will be displayed as usual.
#==============================================================================

class << SceneManager
  #--------------------------------------------------------------------------
  # ● First scene class 【Alias】
  #--------------------------------------------------------------------------
  alias tic_first_scene_class first_scene_class
  def first_scene_class
    result = tic_first_scene_class
    if result == Scene_Title && !DataManager.save_file_exists?
      DataManager.setup_new_game
      Graphics.brightness = 0
      $game_map.autoplay
      result = Scene_Map
    end
    result
  end
end

__________

Quick Swap

For solo party- you can select skills, equipment, and stats directly.

Note:
2 member party, select Formation and it will immediately swap the two.

Preview
RcS0Hlf.gif


Installation
Paste this script above Main.

Script
Code:
#==============================================================================
# ■ Quick swap RGSS3 v2.0        MIT License; see git.io/tic
#------------------------------------------------------------------------------
#  For solo party- you can select skills, equipment, and stats directly.
#  2 member party, select Formation and it will immediately swap the two.
#==============================================================================

class Scene_Menu
  #--------------------------------------------------------------------------
  # ● Command [Skill] [Equipment] [Status] 【Alias】
  #--------------------------------------------------------------------------
  alias toruic_command_personal command_personal
  def command_personal
    if $game_party.members.size == 1
      $game_party.menu_actor = $game_party.members[0]
      on_personal_ok
      return
    end
    toruic_command_personal
  end
  #--------------------------------------------------------------------------
  # ● Command [Sort] 【Alias】
  #--------------------------------------------------------------------------
  alias toruic_command_formation command_formation
  def command_formation
    if $game_party.members.size == 2
      $game_party.swap_order(0, 1)
      @status_window.refresh
      @command_window.activate
      return
    end
    toruic_command_formation
  end
end

__________

Timer Resume

After timer stopped, can be resume by starting the timer at 0 min and 0 sec

Preview
FIFDZfD.png


Installation
Paste this script above Main.

Script
Code:
#==============================================================================
# ■ Resume Timer RGSS3 v1.1                  MIT License; see git.io/tic
#------------------------------------------------------------------------------
#  After timer stopped, can be resume by starting the timer at 0 min and 0 sec
#==============================================================================

class Game_Timer
  #--------------------------------------------------------------------------
  # ● Start 【Alias】
  #--------------------------------------------------------------------------
  alias toruic_start start
  def start(count)
    toruic_start(count > 0 ? count : @count)
  end
end

__________________________________________________

Credit and Thanks: Toru Higuruma

Terms of Use- Free for commercial and non-commercial use.

License - MIT License: http://opensource.org/licenses/mit-license.php

Source
https://github.com/neofuji/RGSS3-Plugins

Downloads / Referenced Files

Log in to download

Log in, then follow the RPG Maker Developers Group to see these download links.

Log in to download

License / Terms Note

# ■ Skip first title RGSS3 v1.1 MIT License; see git.io/tic #------------------------------------------------------------------------------ # If there's no save file, the game starts a new game without a title screen. # The event command [Return to Title Screen], will be displayed as usual.

Creator Claims / Removal

If you are the original creator and want this listing reassigned, edited, or removed, join BMMPlay and contact the moderators with proof that matches the original RPG Maker Web profile, linked GitHub, itch.io page, or another public creator identity.

#039#rgss3#script-archive

Replies (0)

No replies yet.

0 replies 1 view

Log in to reply.

User Avatar