class Game_Map
#--------------------------------------------------------------------------
# ● 判定普通角色是否可以通行
#--------------------------------------------------------------------------
alias taroxd_passable_without_region? passable?
def passable?(x, y, d)
r = region_id(x, y)
return true if Taroxd::PASSABLE_REGIONS.any? {|e| e === r }
return false if Taroxd::IMPASSABLE_REGIONS.any? {|e| e === r }
taroxd_passable_without_region?(x, y, d)
end
end 作者: 喵呜喵5 时间: 2015-11-19 19:23
脚本冲突,尝试在你用的所有外加脚本中搜索 def passable?
把这个脚本放到搜索到的脚本后面