好友
阅读权限25
听众
最后登录1970-1-1
|
水木杉
发表于 2020-11-19 22:05
本帖最后由 水木杉 于 2020-11-28 17:36 编辑
虽然现在网上有很多聊天的软件,可自己不会聊天没有话题怎么办,既然现在AI技术那么火,能不能让他帮我们先走一段路。让机器人帮我们先聊一段时间,建立一定的好感度(可能吗?)我们在接着来,如果没时间也可以先让机器人给我们代劳。。。
脚本是用autoJS写的,调用的是青云客的免费api,表现得还不是很好,感兴趣的可以自己换成其他的试试
(参照:https://blog.csdn.net/wenxuhonghe/article/details/100703398)
放一张效果图:
如果违规请管理员删帖。。。
[JavaScript] 纯文本查看 复制代码 [/align][align=left]
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);
}
|
免费评分
-
查看全部评分
|
发帖前要善用【论坛搜索】功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。 |
|
|
|
|