foolenough 发表于 2017-7-12 19:48:47

fullme插件地址net改com方法

文件->插件->选fullme插件编辑
把第一个触发器改成如下
<trigger
   enabled="y"
   group="fullme"
   match="^http://pkuxkx.com/antirobot/(.+)$"
   name="fullme_code_from_web"
   regexp="y"
   send_to="12"
   sequence="100"
>
<send>show_fullme_code_from_web("http://pkuxkx.com/antirobot/%1")</send>
</trigger>


北大侠客行MUD,中国最好的MUD

longzaitian 发表于 2017-7-13 09:10:25

另外还要注意的是,下面有一个函数里面也要改一下,要不然没有办法在小框里面显示,只会一直弹出网页来显示。


function get_jpg_url(from_html_text)
if from_html_text == nil or from_html_text == "" then
return nil
end -- if

local html_text, jpg_url

local html_length = string.len(from_html_text)
if html_length >= 25 then

jpg_url = string.match(from_html_text, "/b2evo_captcha_tmp.-jpg")
if jpg_url==nil then return nil end
jpg_url = "http://pkuxkx.com/antirobot" .. jpg_url    <----------就是这一行

else
jpg_url = nil
close_window()
--Note("\n本插件靠“fullme”触发。“fullme验证码图片”仅在之后的1分钟内输入有效。")
--Note("本插件不能正确获得Web页面文件。\n")
end -- if

--print(jpg_url)
return jpg_url
end -- get_jpg_url()

foolenough 发表于 2017-7-13 11:48:42

回复 2# longzaitian
是的,忘记说了。

zues 发表于 2017-7-13 12:41:41

ios手机端的不能fullme了 .
链接拷贝不了,改不了。。

syhillll 发表于 2017-12-19 09:07:16

462的这个在哪改?
页: [1]
查看完整版本: fullme插件地址net改com方法