把脚本扔到main以上,Window_Message以下,然后按照注释修改脚本
class Window_Message < Window_Base def wait_for_one_character update_show_fast if $game_switches[1] then #默认1号开关开启的时候对话速度放慢,修改上面的数字可以更换使用的开关 10.times {Fiber.yield unless @show_fast || @line_show_fast} #开头的数字越大停顿时间越长 else Fiber.yield unless @show_fast || @line_show_fast end end end
class Window_Message < Window_Base
def wait_for_one_character
update_show_fast
if $game_switches[1] then
#默认1号开关开启的时候对话速度放慢,修改上面的数字可以更换使用的开关
10.times {Fiber.yield unless @show_fast || @line_show_fast}
#开头的数字越大停顿时间越长
else
Fiber.yield unless @show_fast || @line_show_fast
end
end
end
|