设为首页收藏本站同能贴吧 切换语言 繁体中文
开启辅助访问 切换到窄版
扫描二维码关注官方公众号
返回列表
+ 发新帖
查看: 137|回复: 0

[转载发布] Tweaks: Skip First Title, Quick Swap, Timer Resume

[复制链接]
累计送礼:
0 个
累计收礼:
1 个
  • TA的每日心情
    开心
    2026-7-12 04:10
  • 签到天数: 209 天

    连续签到: 2 天

    [LV.7]常住居民III

    9071

    主题

    864

    回帖

    6万

    积分

    管理员

    Rank: 9Rank: 9Rank: 9

    VIP
    7
    卡币
    58883
    OK点
    16
    推广点
    0
    同能卷
    50
    积分
    68848

    灌水之王

    发表于 2026-8-2 19:02:03 | 显示全部楼层 |阅读模式
    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




    Installation
    Paste this script above Main.

    Script
                    Code:       
    1. #==============================================================================
    2. # ■ Skip first title RGSS3 v1.1        MIT License; see git.io/tic
    3. #------------------------------------------------------------------------------
    4. # If there's no save file, the game starts a new game without a title screen.
    5. # The event command [Return to Title Screen], will be displayed as usual.
    6. #==============================================================================
    7. class << SceneManager
    8.   #--------------------------------------------------------------------------
    9.   # ● First scene class 【Alias】
    10.   #--------------------------------------------------------------------------
    11.   alias tic_first_scene_class first_scene_class
    12.   def first_scene_class
    13.     result = tic_first_scene_class
    14.     if result == Scene_Title && !DataManager.save_file_exists?
    15.       DataManager.setup_new_game
    16.       Graphics.brightness = 0
    17.       $game_map.autoplay
    18.       result = Scene_Map
    19.     end
    20.     result
    21.   end
    22. 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
                    Code:       
    1. #==============================================================================
    2. # ■ Quick swap RGSS3 v2.0        MIT License; see git.io/tic
    3. #------------------------------------------------------------------------------
    4. #  For solo party- you can select skills, equipment, and stats directly.
    5. #  2 member party, select Formation and it will immediately swap the two.
    6. #==============================================================================
    7. class Scene_Menu
    8.   #--------------------------------------------------------------------------
    9.   # ● Command [Skill] [Equipment] [Status] 【Alias】
    10.   #--------------------------------------------------------------------------
    11.   alias toruic_command_personal command_personal
    12.   def command_personal
    13.     if $game_party.members.size == 1
    14.       $game_party.menu_actor = $game_party.members[0]
    15.       on_personal_ok
    16.       return
    17.     end
    18.     toruic_command_personal
    19.   end
    20.   #--------------------------------------------------------------------------
    21.   # ● Command [Sort] 【Alias】
    22.   #--------------------------------------------------------------------------
    23.   alias toruic_command_formation command_formation
    24.   def command_formation
    25.     if $game_party.members.size == 2
    26.       $game_party.swap_order(0, 1)
    27.       @status_window.refresh
    28.       @command_window.activate
    29.       return
    30.     end
    31.     toruic_command_formation
    32.   end
    33. 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
                    Code:       
    1. #==============================================================================
    2. # ■ Resume Timer RGSS3 v1.1                  MIT License; see git.io/tic
    3. #------------------------------------------------------------------------------
    4. #  After timer stopped, can be resume by starting the timer at 0 min and 0 sec
    5. #==============================================================================
    6. class Game_Timer
    7.   #--------------------------------------------------------------------------
    8.   # ● Start 【Alias】
    9.   #--------------------------------------------------------------------------
    10.   alias toruic_start start
    11.   def start(count)
    12.     toruic_start(count > 0 ? count : @count)
    13.   end
    14. 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


    本贴来自国际rpgmaker官方论坛作者:ovate处,因国际论坛即将永久关站,为了存档多年珍贵资料,署名转载到本论坛存档,由于官方帖子为英文原帖,需要中文翻译请点击论坛顶部切换语言为中文就可以将帖子翻译成中文浏览,方便大家随时查看,原文地址:https://forums.rpgmakerweb.com/threads/tweaks-skip-first-title-quick-swap-timer-resume.144462/

    本帖子中包含更多资源

    您需要 登录 才可以下载或查看,没有账号?立即注册

    x
    天天去同能,天天有童年!
    回复 送礼论坛版权

    使用道具 举报

    文明发言,和谐互动
    文明发言,和谐互动
    高级模式
    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    简体中文
    繁體中文
    English(英语)
    日本語(日语)
    Deutsch(德语)
    Русский язык(俄语)
    بالعربية(阿拉伯语)
    Türkçe(土耳其语)
    Português(葡萄牙语)
    ภาษาไทย(泰国语)
    한어(朝鲜语/韩语)
    Français(法语)
    关闭

    幸运抽奖

    社区每日抽奖来袭,快来试试你是欧皇还是非酋~

    立即查看

    聊天机器人
    Loading...

    QQ|Archiver|手机版|小黑屋|同能RPG制作大师 ( 沪ICP备12027754号-3 )

    GMT+8, 2026-8-17 09:25 , Processed in 0.133918 second(s), 55 queries .

    Powered by Discuz! X3.4

    Copyright © 2001-2020, Tencent Cloud.

    快速回复 返回顶部 返回列表