Project1

标题: 请问有没有加快战斗速度的脚本? [打印本页]

作者: lirn    时间: 2013-6-23 17:43
标题: 请问有没有加快战斗速度的脚本?
如题,只要能加速到像按住A键那样就行了,只针对某些特定技能,可以通过开关临时开启关闭。
作者: Sion    时间: 2013-6-23 18:06
如果按下A键,update 两次数据,应该就会快一倍了。
作者: bobcaocheng    时间: 2013-6-23 20:41
貌似不能个别加速把
作者: Sion    时间: 2013-6-23 22:54
本帖最后由 Sion 于 2013-6-23 23:00 编辑
  1. class Scene_Battle
  2.   def update
  3.     super
  4.     ($game_switches[1] ? 2 : 1).times {
  5.       if BattleManager.in_turn?
  6.         process_event
  7.         process_action
  8.       end
  9.       BattleManager.judge_win_loss
  10.     }
  11.   end
  12.   def update_basic
  13.     super
  14.     ($game_switches[1] ? 2 : 1).times {
  15.       $game_timer.update
  16.       $game_troop.update
  17.       @spriteset.update
  18.       update_info_viewport
  19.       update_message_open
  20.     }
  21.   end
  22. end
复制代码
大概像这样就可以了 开关1打开的时候速度变成2倍。
这个默认的update拆成2半了,合在一起写比较好。




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