帮你找到女朋友
本帖最后由 水木杉 于 2020-11-28 17:36 编辑虽然现在网上有很多聊天的软件,可自己不会聊天没有话题怎么办,既然现在AI技术那么火,能不能让他帮我们先走一段路。让机器人帮我们先聊一段时间,建立一定的好感度(可能吗?)我们在接着来,如果没时间也可以先让机器人给我们代劳。。。
脚本是用autoJS写的,调用的是青云客的免费api,表现得还不是很好,感兴趣的可以自己换成其他的试试
(参照:https://blog.csdn.net/wenxuhonghe/article/details/100703398)
放一张效果图:
如果违规请管理员删帖。。。
auto.waitFor();
var height = device.height;
var width = device.width;
toast("\n设备宽" + width + "\n" + "设备高" + height + "\n" + "手机型号" + device.model + "\n安卓版本" + device.release)
if (height == 1920) { //设置脚本坐标点击所适合的屏幕宽高。
setScreenMetrics(1080, 1920);
toast("设备高" + height);
} else if (height == 2340) {
setScreenMetrics(1080, 2340);
toast("设备高"+height);
}
while(true){
click(50,height-100);//点击星球
sleep(1000);
click(60,height-300);//点击灵魂匹配
sleep(10000);
setText("你好啊,小姐姐");
id("btn_send").findOne().click();
sleep(2000);
setText("在干嘛啊");
id("btn_send").findOne().click();
sleep(2000);
//调用青云客的聊天机器人
var url="http://api.qingyunke.com/api.php?key=free&msg=";
var oldtxt="在干嘛啊";
var n=0;
while(true){
if(n>10){break;} //还不回?换一家吧
var list=id("list_conversation").findOne().children();
list.pop();
var newchildq=list.pop();
try{
var target = newchildq.findOne(id("content_text"));
var txt=target.getText();
}
catch(err)
{txt="我们换个话题吧"}
if(oldtxt==txt)
{
n=n+1;
sleep(10000);
continue;
}
else
{
n=0;
oldtxt=txt;
if(txt){
var res=http.get(url+txt);
var resjson=res.body.json();
setText(resjson["content"]);
id("btn_send").findOne().click();
oldtxt=resjson["content"];
sleep(2000);
}
}
sleep(10000);
}
click(100, 150);
}
谢谢分享 收下了 谢谢分享 收藏下了 谢谢分享 如果有个成熟的聊天库那就猛了{:301_997:} {:1_908:}以后是不是没人什么事了? 楼主很牛啊 能发个成品么~! qiuhai523 发表于 2020-11-19 22:55
能发个成品么~!
你上网搜一下autoJS,这已经能直接用了 {:301_997:}在加上那所谓的聊天宝典,是不是不用自己就能拿下小姐姐了
页:
[1]
2