加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
#============================================================================== # ■ 限时显示选项 # By :VIPArcher # -- 本脚本来自 [url=https://rpg.blue]https://rpg.blue[/url] 使用或转载请保留以上信息。 # 说明: # 在开始选择前开启计时器,如果计时器归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
#==============================================================================
# ■ 限时显示选项
# By :VIPArcher
# -- 本脚本来自 [url=https://rpg.blue]https://rpg.blue[/url] 使用或转载请保留以上信息。
# 说明:
# 在开始选择前开启计时器,如果计时器归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
這是我使用的腳本。
這個腳本是時間到,選項會自動被取消,玩家也可以手動取消。
想要改成,「玩家不可手動取消」。一直改不出來,所以上來請教前輩們。
|