jinger
发表于 2023-11-29 13:59:03
强烈呼吁论坛升级一下基础设施
jarlyyn
发表于 2023-12-6 13:26:00
加入批量命令概念,向所有服务器所有指定脚本发送指令
fullme 主动调用fullme等待打码
#afk 开会的话进入afk模式,哪怕有fullme也不做任务
#here 退出afk模式
jarlyyn
发表于 2023-12-6 13:27:50
查房模式,发红的就是还没临幸的。
点了打码消掉红色。全消完扶墙走人。
jarlyyn
发表于 2023-12-9 02:00:21
(function (App) {
App.Core.Notify={};
App.Core.Notify.TPush={};
App.Core.Notify.TPush.APIServer='api.tpns.sh.tencent.com/v3/push/app';
App.Core.Notify.TPush.Auth=function(success,script){
if (!script){
script=""
}
if (!success){
success=""
}
if (!world.CheckPermissions(["http"])){
world.RequestPermissions(["http"],"申请HTTP权限用发送腾讯推送通知",script)
return
}
if (!world.CheckTrustedDomains(["api.tpns.sh.tencent.com"])){
world.RequestTrustDomains(["api.tpns.sh.tencent.com"],"申请信任腾讯云api",script)
return
}
App.ExecuteCallback(success)
}
App.Core.Notify.TPush.SendAndroid=function(appid,appkey,token,title,content,server,game){
let u = HTTP.ParseURL(App.Core.Notify.TPush.APIServer)
u.Username=appid;
u.Password=appkey;
var body={
"audience_type":"token",
"token_list":,
"message_type":"notify",
"message":{
"title":title,
"content":content,
"android":{
"vibrate":1,
"lights":1,
"action":{
"action_type":3,
"intent":"hcnotify://hellclient.jarlyyn.com/notify/"+server+"#"+game,
}
}
}
}
api='https://'+appid+':'+appkey+"@"+App.Core.Notify.TPush.APIServer;
App.Core.Notify.TPush.Req = HTTP.New("POST", api)
App.Core.Notify.TPush.Req.SetBody(JSON.stringify(body))
Note(JSON.stringify(body));
Note("正在发送推送")
App.Core.Notify.TPush.Req.AsyncExecute('App.Core.Notify.TPush.Callback')
}
App.Core.Notify.TPush.Callback=function(){
let resp=App.Core.Notify.TPush.Req.ResponseBody();
let data=JSON.parse(resp);
if (data.ret_code==0){
Note('推送成功')
}else{
Note(resp)
}
}
})(App)
脚本加入腾讯云推送代码
jarlyyn
发表于 2023-12-9 02:01:07
授权请求
jarlyyn
发表于 2023-12-9 02:02:14
发送成功
jarlyyn
发表于 2023-12-9 02:04:20
收到通知
jarlyyn
发表于 2023-12-9 02:05:52
进入指定服务器,指定游戏,正常流程就是弹出验证码打码了,或者提示张三之类
jarlyyn
发表于 2023-12-9 02:06:46
计划中功能全部完成。
锁定功能,做稳定性测试,以及桌面端测试。
wxliu
发表于 2023-12-9 02:09:30
前排膜拜并留名yct51