
NPC对话内容
防脱机系统提示您:\请正确输入验证码才可以使用该NPC功能!\ \0 9 0 8\ \<输入验证码/@@InputString16>
过防脱机验证
/<
function 过验证()
local str=获取NPC对话内容()
if str:match("输入验证码") then
local cmd=str:match("/(@@[^>]+)>")
str=str:gsub(" ","")
local content=str:match("\\(%d+)\\")
if cmd and content then
合成命令(cmd,content)
清空NPC对话内容()
等待(1500)
end
end
end
过验证() -- 回收验证验证保留此行,删除下面一行
设置用户检测("过验证",2000) --脱机验证保留此行,删除上面一行。
/>