Project1

标题: 粗略的统计全地图全事件全文本总字数 [打印本页]

作者: alexncf125    时间: 2021-2-27 18:05
标题: 粗略的统计全地图全事件全文本总字数
本帖最后由 alexncf125 于 2021-2-27 18:08 编辑

使用方法: 事件脚本调用 统计字数
  1. class Game_Interpreter
  2.   def 统计字数
  3.     total = 0
  4.     for map_id in 1..999
  5.       map_name = sprintf("Data/Map%03d.rvdata2", map_id)
  6.       if FileTest.exist?(map_name)
  7.         map = load_data(map_name)
  8.         for i in 1..999
  9.           event = map.events[i]
  10.           if event != nil
  11.             event.pages.each do |page|
  12.               if page.list.length > 0
  13.                 page.list.each do |command|
  14.                   case command.code
  15.                   when 401
  16.                     total += command.parameters[0].size
  17.                   end
  18.                 end
  19.               end
  20.             end
  21.           end
  22.         end
  23.       end
  24.     end
  25.     msgbox(total)
  26.   end
  27. end
复制代码





欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1