GithubHelp home page GithubHelp logo

kedaya's People

Contributors

qitoqito avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

kedaya's Issues

无线组队问题

鸭鸭老板,我现在用的是win版的docker,10分钟换一次ip,就是有个问题,无线在跑cj或者其他组队任务时,在助力前面2个ck之后,第三个ck开始助力 就会提示“可能是黑号或者黑ip,停止运行”,我ppoe重新拨号后 或者停止10分钟以后重新跑 还是可以运行。
我想请教下,可不可以给无线类的脚本增加一个 延时和使用IP代理(例如星空代理 http://www.xkdaili.com/ 之类的)的变量,在脚本提示黑号时候自动使用代理IP 切换IP地址,从而实现继续完成任务的功能呀,其次就是在助力过ck1的CK 就不要在重复去助力ck2。减少重复循环逻辑,降低黑号的风险。

在您有空的时候可以帮忙解答下,谢谢。Screenshot_20220923_223909.jpg

自动评价问题

看代码不知道怎么写 评语列表

Date: 2022/8/31 02:47:37
Script: jd_task_comment
Model: share
Task: local
Thread: 0
Help: 3
Loop: 1
Interval: 0
Cron: 54 13 */3 * *
Turn: 1
Send: 1
Program initialization...
没有评语列表,退出执行!
Program execution ...
End of program execution ...

通知单独用户不生效

大佬,我按频道的教程设置,不知为何就不生效。先在环境变量填了custom=IGOT_TOKEN,然后至执行了jd_task_user.js,再去jdUser.js填写IGOT_TOKEN的值,可是就不生效。
是我哪里填写错了吗,没领悟到你的意思

佬能否加个可爱猫的微信机器人推送变量

原sendNotify.js
环境变量了设定export WX_BOT="http://10.10.19.222:12345"
参数如下
=======================================WXBOT=======================================
let WX_BOT = '';

await Promise.all([
BarkNotify(text, desp, params),//iOS Bark APP
tgBotNotify(text, desp),//telegram 机器人
ddBotNotify(text, desp),//钉钉机器人
qywxBotNotify(text, desp), //企业微信机器人
qywxamNotify(text, desp), //企业微信应用消息推送
iGotNotify(text, desp, params),//iGot
wxBOT(text, desp)//微信机器人
//CoolPush(text, desp)//QQ酷推
])
}
} else {
//console.log('\n没有环境变量,或变量值为空,该通知直接推送')
await Promise.all([
serverNotify(text, desp),//微信server酱
pushPlusNotify(text, desp)//pushplus(推送加)
])
text = text.match(/.?(?=\s?-)/g) ? text.match(/.?(?=\s?-)/g)[0] : text;
await Promise.all([
BarkNotify(text, desp, params),//iOS Bark APP
tgBotNotify(text, desp),//telegram 机器人
ddBotNotify(text, desp),//钉钉机器人
qywxBotNotify(text, desp), //企业微信机器人
qywxamNotify(text, desp), //企业微信应用消息推送
iGotNotify(text, desp, params),//iGot
wxBOT(text, desp)//微信机器人
//CoolPush(text, desp)//QQ酷推
])
}
} else if (unblock_ck != 'false' && (text.indexOf("cookie已失效") != -1 || desp.indexOf("请重新登录获取cookie") != -1)) {
unblocks = process.env.my_unblock ?? "";
let thereg = /.账号(\d+)./gm
ck_num = thereg.exec(desp)[1];
if (unblocks.split(",").indexOf(ck_num) != -1) {
console.log('\n该cookie的失效通知,允许推送');
await Promise.all([
serverNotify(text, desp),//微信server酱
pushPlusNotify(text, desp)//pushplus(推送加)
])
text = text.match(/.?(?=\s?-)/g) ? text.match(/.?(?=\s?-)/g)[0] : text;
await Promise.all([
BarkNotify(text, desp, params),//iOS Bark APP
tgBotNotify(text, desp),//telegram 机器人
ddBotNotify(text, desp),//钉钉机器人
qywxBotNotify(text, desp), //企业微信机器人
qywxamNotify(text, desp), //企业微信应用消息推送
iGotNotify(text, desp, params),//iGot
wxBOT(text, desp)//微信机器人
//CoolPush(text, desp)//QQ酷推
])
}else{
console.log('\n该cookie的失效通知,不进行推送');
}
}
}

function wxBOT(text, desp) {
return new Promise(resolve => {
const options = {
url: ${WX_BOT},
json: {
boby: {
text: ${text},
content: ${desp},
},
},
headers: {
'Content-Type': 'application/json',
},
timeout
};
if (WX_BOT) {
$.post(options, (err, resp, data) => {
try {
if (err) {
console.log('微信机器人发送通知消息失败!!\n');
console.log(err);
} else {
data = JSON.parse(data);
if (data.errcode === 0) {
console.log('\n\n微信机器人发送通知消息成功🎉。\n');
} else {
// console.log(${data.errmsg}\n);
}
}
} catch (e) {
$.logErr(e, resp);
} finally {
resolve(data);
}
});
} else {
// console.log('您未提供微信机器人推送所需的环境变量,取消微信机器人推送消息通知🚫\n');
resolve();
}
});
}

谢谢佬

大佬 咨询一下农场变量问题

我想把农场的水全部都浇完,看到频道里jd.ini的TenWater变量,我把它设置成20,我的理解为做200次浇水。但是好像不生效。想咨询一下,如何才能实现多浇水,积攒的水滴太多了。

原变量
TenWater: 1 # 只做10次浇水的任务,后续不浇水

无线监控问题

鸭鸭老板,我无线是用的监控,自己跑,但是现在现在雷子上台后,全是积分车,豆子车就很少了,这种积分车有没有变量可以设置下,检测到是积分的就停止运行呀,谢谢~
1664617335603

农场怎么缓存JSON文件

农场有检测,号多容易黑ip,建议缓存JSON文件

大佬,农场跑出的日记有这个建议,具体是怎么缓存JSON文件,求教

token获取

电报上获取token,机器人不回复了,请问是通过什么方式获取的呢

关于脚本变量的一些疑问

老大,如何通过变量修改Thread值,避免拉库以后修改文件又恢复原样。


Turn: 1 Model: share Task: local Thread: 0 Loop: 1 Interval: 0

如果方便的话,想请教一下这几个值的作用以及用法

报错 不知道是不是我自己原因

🐯 导入跳过: jd_extra_wuxian.js 如需运行请手动添加定时
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
🐶 导入失败: jd_help_sendBean.js 已经添加过了
🐯 导入跳过: jd_help_videoBean.js 如需运行请手动添加定时
🐯 导入跳过: jd_help_yuanxiao.js 如需运行请手动添加定时
🐯 导入跳过: jd_reward_menghu.js 如需运行请手动添加定时
🐯 导入跳过: jd_task_addCart.js 如需运行请手动添加定时
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
🐶 导入失败: jd_task_assets.js 已经添加过了
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
🐶 导入失败: jd_task_beanLottery.js 已经添加过了
🐯 导入跳过: jd_task_carnivalCity.js 如需运行请手动添加定时
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
🐶 导入失败: jd_task_carplay.js 已经添加过了
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
🐶 导入失败: jd_task_checkCookie.js 已经添加过了
🐯 导入跳过: jd_task_chinaJoy.js 如需运行请手动添加定时
🐯 导入跳过: jd_task_chunwan.js 如需运行请手动添加定时
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
🐶 导入失败: jd_task_comment.js 已经添加过了
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
🐶 导入失败: jd_task_farm.js 已经添加过了
🐯 导入跳过: jd_task_goldCenter.js 如需运行请手动添加定时
🐯 导入跳过: jd_task_guangPlus.js 如需运行请手动添加定时
🐯 导入跳过: jd_task_hby.js 如需运行请手动添加定时
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
🐶 导入失败: jd_task_hudong.js 已经添加过了
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
🐶 导入失败: jd_task_ifanli.js 已经添加过了
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
🐶 导入失败: jd_task_invokeKey.js 已经添加过了
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
🐶 导入失败: jd_task_jd2xd.js 已经添加过了
🐯 导入跳过: jd_task_jdjoy.js 如需运行请手动添加定时
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
🐶 导入失败: jd_task_jimofang.js 已经添加过了
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
🐶 导入失败: jd_task_lottery.js 已经添加过了
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
🐶 导入失败: jd_task_manghe.js 已经添加过了
🐯 导入跳过: jd_task_morningBean.js 如需运行请手动添加定时
🐯 导入跳过: jd_task_nianhuo.js 如需运行请手动添加定时
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
TypeError: Cannot read properties of undefined (reading 'includes')
at /ql/scripts/qitoCreat.js:200:56
at processTicksAndRejections (node:internal/process/task_queues:96:5)
🐶 导入失败: jd_task_pet.js 已经添加过了

运行脚本时,提示this[_0x3665d8.iqLwd][_0x3cee68(...)] is not a function

环境:青龙面板 v2.13.8
任意定时任务运行时,日志显示如下:

## 开始执行... 2022-08-16 18:33:18

this[_0x3665d8.iqLwd][_0x3cee68(...)] is not a function

## 执行结束... 2022-08-16 18:33:20 耗时 2 秒

怀疑是加密后的代码没有换行,导致面板没有加载出完整的代码

农场脚本报错

农场部分号出现以下报错,明明就已经种了水果。鸭老大,还能修吗

正在播种
TypeError Cannot read properties of undefined (reading 'treeState')

鸭鸭大佬救救我

鸭鸭大佬救救我,我是群里的Nazh,TG号被注销了,这两天觉都睡不好,鸭鸭大佬能再给次机会拉我进群吗?谢谢!

task_user问题

从上月就出现这个问题了,
运行user脚本后生成的文件里面其中一个账号的pin是错误的,应该生成ptpin后面的值,但却是我的京东账户名,导致不能正常生成wskey。
麻烦佬查阅一下,谢谢

Tg监控

jd.ini里面,BOT_PROXY=socks5://Admin:[email protected]:108
然后socks-proxy-agent和https-proxy-agent依赖都有安装成功了mmexport1656513562208.png
还是显示这个问题・_・?求指导

每次拉库都会出现一部分脚本导入跳过

🐯 导入跳过: jd_help_videoBean.js 如需运行请手动添加定时
🐯 导入跳过: jd_task_beanLottery.js 如需运行请手动添加定时
🐯 导入跳过: jd_task_carnivalCity.js 如需运行请手动添加定时
🐯 导入跳过: jd_task_chaodian.js 如需运行请手动添加定时
🐯 导入跳过: jd_task_chinaJoy.js 如需运行请手动添加定时
🐯 导入跳过: jd_task_goldCenter.js 如需运行请手动添加定时
🐯 导入跳过: jd_task_guangPlus.js 如需运行请手动添加定时
🐯 导入跳过: jd_task_ini.js 如需运行请手动添加定时
🐯 导入跳过: jd_task_jd2xd.js 如需运行请手动添加定时
🐯 导入跳过: jd_task_jdjoy.js 如需运行请手动添加定时
🐯 导入跳过: jd_task_live.js 如需运行请手动添加定时
🐯 导入跳过: jd_task_morningBean.js 如需运行请手动添加定时
🐯 导入跳过: jd_task_motherDay.js 如需运行请手动添加定时
🐯 导入跳过: jd_task_nianhuo.js 如需运行请手动添加定时
🐯 导入跳过: jd_task_redRain2021.js 如需运行请手动添加定时
🐯 导入跳过: jd_task_rmCart.js 如需运行请手动添加定时
🐯 导入跳过: jd_task_rmFavorite.js 如需运行请手动添加定时
🐯 导入跳过: jd_task_sheng.js 如需运行请手动添加定时
🐯 导入跳过: jd_task_supBox.js 如需运行请手动添加定时
🐯 导入跳过: jd_task_telegram.js 如需运行请手动添加定时
🐯 导入跳过: jd_task_test.js 如需运行请手动添加定时
🐯 导入跳过: jd_task_united.js 如需运行请手动添加定时
🐯 导入跳过: jd_task_validate.js 如需运行请手动添加定时
🐯 导入跳过: jd_task_wskey.js 如需运行请手动添加定时
🐯 导入跳过: jr_task_pig.js 如需运行请手动添加定时
🐯 导入跳过: js_task_superRedBagDraw.js 如需运行请手动添加定时
🐯 导入跳过: jw_task_shareCart.js 如需运行请手动添加定时
🐯 导入跳过: jx_reward_eggBean.js 如需运行请手动添加定时
🐯 导入跳过: jx_reward_fortune.js 如需运行请手动添加定时
🐯 导入跳过: jx_task_nianhuo.js 如需运行请手动添加定时
🐯 导入跳过: jx_task_yyy.js 如需运行请手动添加定时
🐯 导入跳过: kejiwanjia_task_signin.js 如需运行请手动添加定时

开卡问题

现在好像h5st改了,容易出问题。微定制会 开卡中******* undefined,希望修复下

头文字j

Cannot find module 'fileCache'
Require stack:

  • /ql/scripts/util/common.js
  • /ql/scripts/template.js
  • /ql/scripts/parse/jd/jd_task_carplay.js
  • /ql/scripts/jd_task_carplay.js

代理问题

鸭叔 脚本proxy 为什么不能用啊
提示TypeError Cannot read properties of undefined (reading 'ip')

大牌集合任务助力

1658283606(1)
1658283166(1)

鸭老板,你看下大牌集合任务变量是这么写不呢,我主要是想请教下助力,我的hep=写的是我的pin,但是任务结束了也没有助力。是我没写对,还是暂时大牌集合不支持助力任务呢
这次的大牌是 custom=1f0a47f709f74784a_220720
谢谢~

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.