Project1

标题: 【限时显示选项】 [打印本页]

作者: VIPArcher    时间: 2014-10-27 15:44
标题: 【限时显示选项】
  1. #==============================================================================
  2. # ■ 限时显示选项
  3. # By :VIPArcher
  4. #  -- 本脚本来自 https://rpg.blue 使用或转载请保留以上信息。
  5. # 说明:
  6. #   在开始选择前开启计时器,如果计时器归0时自动调用“取消”的方法。要保证取消有效。
  7. #==============================================================================
  8. $VIPArcherScript ||= {};$VIPArcherScript[:time_choiceList] = 20141027
  9. class Window_ChoiceList < Window_Command
  10.   #--------------------------------------------------------------------------
  11.   # ● 调用“取消”的处理方法
  12.   #--------------------------------------------------------------------------
  13.   alias timer_call_cancel_handler call_cancel_handler
  14.   def call_cancel_handler
  15.     timer_call_cancel_handler
  16.     deactivate
  17.     $game_timer.stop
  18.   end
  19.   #--------------------------------------------------------------------------
  20.   # ● 更新画面
  21.   #--------------------------------------------------------------------------
  22.   def update
  23.     super
  24.     call_cancel_handler if cancel_enabled? &&
  25.     $game_timer.sec == 0 && $game_timer.working?
  26.   end
  27. end
复制代码





欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1