另外,有没有等待的语法?(是脚本中的等待)
如 读了p “1”后,等5秒才读p “2” ,但其间,角色人物还可以移动
module ABC
p “1”
等待5秒
p “2”
end
==========
終於在戰鬥腳本發現,怪不得之前用wait(num) 會出錯
def wait(duration, no_fast = false)
for i in 0...duration
update_basic
break if not no_fast and i >= duration / 2 and show_fast?
end
end
===========