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
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
Installation
Paste this script above Main.
Script
#==============================================================================
# ■ 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
Installation
Paste this script above Main.
Script
#==============================================================================
# ■ 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
Installation
Paste this script above Main.
Script
#==============================================================================
# ■ 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, then follow the RPG Maker Developers Group to see these download links.
Log in to downloadLicense / 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.
Replies (0)
No replies yet.
Topic Summary
Loading summary...