
NPC对话内容
<防止脱机挂,请依次点击对应字符,回答错误将被踢下线!/SCOLOR=58> \<本次验证字符为:/SCOLOR=254> <→/SCOLOR=253> 6 B <←/SCOLOR=253>\ \ <1/@验1> <A/@验A> <2/@验2> <B/@验B> <3/@验3> <C/@验C> \ \ <4/@验4> <D/@验D> <5/@验5> <E/@验E> <6/@验6> <F/@验F> \ \ <7/@验7> <G/@验G> <8/@验8> <H/@验H> <9/@验9> <I/@验I>
/<
function 过验证()
local str=获取NPC对话内容()
if str:match("验证字符") then
local content=str:match("<→/SCOLOR=%d+>([^<]+)<←/SCOLOR=%d+>")
content=content:gsub(" ","")
if content then
for i=1,#content do
选择("@验"..content:sub(i,i))
if i==#content then 清空NPC对话内容() end
等待(1000)
end
end
end
end
过验证() -- 回收验证保留此行,删除下面一行
设置用户检测("过验证",2000) -- 脱机验证保留此行,删除上面一行
/>