粗略的统计全地图全事件全文本总字数
使用方法: 事件脚本调用 统计字数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
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.size
end
end
end
end
end
end
end
end
msgbox(total)
end
end
本帖来自P1论坛作者alexncf125,因Project1站服务器在国外有时候访问缓慢不方便作者交流学习,经联系P1站长fux2同意署名转载一起分享游戏制作经验,共同为国内独立游戏作者共同创造良好交流环境,原文地址:https://rpg. blue/forum.php?mod=viewthread&tid=484810若有侵权,发帖作者可联系底部站长QQ在线咨询功能删除,谢谢。
页:
[1]