视频教程   Support
联系我们   Contact

屠城辅助过绿色方块验证

2018/6/15 20:06:30      点击:


 绿色方块的:
B版

/<
lastmsg=""
function 过验证()
  local str=获取NPC对话内容()
  if str==lastmsg then return end
  lastmsg = str
  if str:match("(方块有几个)") then 
    local cmd=str:match("/(@@[^>]+)>")
    if cmd then 
      local c=0
      for a in str:gmatch("<■/SCOLOR") do
        c=c+1
      end
      if c>0 then
        local content=tostring(c)
        content=content:match("%d+")
        合成命令(cmd,content)
        等待(1000)
      end
    end
  end
end
过验证()
/>