Project1

标题: 限時選項腳本的修改( [VIPArcher] 【限时显示选项】 ) [打印本页]

作者: whiltshire    时间: 2015-11-2 22:56
标题: 限時選項腳本的修改( [VIPArcher] 【限时显示选项】 )
RUBY 代码复制
  1. #==============================================================================
  2. # ■ 限时显示选项
  3. # By :VIPArcher
  4. #  -- 本脚本来自 [url=https://rpg.blue]https://rpg.blue[/url] 使用或转载请保留以上信息。
  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



這是我使用的腳本。

這個腳本是時間到,選項會自動被取消,玩家也可以手動取消。

想要改成,「玩家不可手動取消」。一直改不出來,所以上來請教前輩們。


作者: 喵呜喵5    时间: 2015-11-2 23:09
未测试
扔到这个脚本后面
  1. class Window_ChoiceList
  2.   def cancel_enabled?; false; end
  3.   def update
  4.     super
  5.     call_cancel_handler if $game_timer.sec == 0 && $game_timer.working?
  6.   end
  7. end
复制代码

作者: whiltshire    时间: 2015-11-3 07:10
喵呜喵5 发表于 2015-11-2 23:09
未测试
扔到这个脚本后面

使用後會跳出。








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