Project1
标题:
粗略的统计全地图全事件全文本总字数
[打印本页]
作者:
alexncf125
时间:
2021-2-27 18:05
标题:
粗略的统计全地图全事件全文本总字数
本帖最后由 alexncf125 于 2021-2-27 18:08 编辑
使用方法: 事件脚本调用 统计字数
class Game_Interpreter
def 统计字数
total = 0
for map_id in 1..999
map_name = sprintf("Data/Map%03d.rvdata2", map_id)
if FileTest.exist?(map_name)
map = load_data(map_name)
for i in 1..999
event = map.events[i]
if event != nil
event.pages.each do |page|
if page.list.length > 0
page.list.each do |command|
case command.code
when 401
total += command.parameters[0].size
end
end
end
end
end
end
end
end
msgbox(total)
end
end
复制代码
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1