/<
lastmsg=""
function 过验证()
local str=获取NPC对话内容()
if lastmsg==str then return end
lastmsg=str
if str:match("脱机") then
gn = str:match("<ITEMBOX:[^>]+:([^A-Z]+)[A-Z]+>")
local goods = 获取背包信息(1,gn.."*")
local ABCD=nil
local t={}
for v in str:gmatch("/(@[^>]+)>") do
table.insert(t,v)
end
for k,v in pairs(goods) do
ABCD = string.match(v.名称,"(%u+)")
end
if not ABCD then return end
local id=nil
if ABCD=="A" then id=1
elseif ABCD=="B" then id=2
elseif ABCD=="C" then id=3
elseif ABCD=="D" then id=4
end
if id then
放入物品(id,gn.."*")
等待(1000)
选择(t[id])
等待(1000)
end
end
end
过验证() --回收验证保留此行,删除下面一行
设置用户检测("过验证",2000) -- 脱机验证保留此行,删除上面一行
/>