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 编辑
class Scene_Battle
def update
super
($game_switches[1] ? 2 : 1).times {
if BattleManager.in_turn?
process_event
process_action
end
BattleManager.judge_win_loss
}
end
def update_basic
super
($game_switches[1] ? 2 : 1).times {
$game_timer.update
$game_troop.update
@spriteset.update
update_info_viewport
update_message_open
}
end
end
复制代码
大概像这样就可以了 开关1打开的时候速度变成2倍。
这个默认的update拆成2半了,合在一起写比较好。
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1