赞 | 90 |
VIP | 350 |
好人卡 | 311 |
积分 | 101 |
经验 | 150139 |
最后登录 | 2024-7-17 |
在线时间 | 5020 小时 |
无限の剣制
- 梦石
- 0
- 星屑
- 10074
- 在线时间
- 5020 小时
- 注册时间
- 2013-2-28
- 帖子
- 5030
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
- #==============================================================================
- # ■ 限时显示选项
- # By :VIPArcher
- # -- 本脚本来自 https://rpg.blue 使用或转载请保留以上信息。
- # 说明:
- # 在开始选择前开启计时器,如果计时器归0时自动调用“取消”的方法。要保证取消有效。
- #==============================================================================
- $VIPArcherScript ||= {};$VIPArcherScript[:time_choiceList] = 20141027
- class Window_ChoiceList < Window_Command
- #--------------------------------------------------------------------------
- # ● 调用“取消”的处理方法
- #--------------------------------------------------------------------------
- alias timer_call_cancel_handler call_cancel_handler
- def call_cancel_handler
- timer_call_cancel_handler
- deactivate
- $game_timer.stop
- end
- #--------------------------------------------------------------------------
- # ● 更新画面
- #--------------------------------------------------------------------------
- def update
- super
- call_cancel_handler if cancel_enabled? &&
- $game_timer.sec == 0 && $game_timer.working?
- end
- end
复制代码 |
|