-
Notifications
You must be signed in to change notification settings - Fork 137
/
dygy.js
1094 lines (891 loc) · 48.6 KB
/
dygy.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
作者:临渊
日期:6-21
抖音小程序:抖抖果园
功能:签到领水滴、肥料,收取水瓶,每日五次水滴,选择及领取挑战,开宝箱,浇水,三餐礼包,戳鸭子。(浏览任务抓不到包,暂时做不了)
抓包:进去小程序浇水后抓一个Cookie
变量格式:export ddgyCk='xxx@xxx ' 多个账号用@或者换行分割
定时:一天五次
cron:15 8,10,12,18,20 * * *
可以自己抓User-Agent填到 UA 变量里面,或者懒得抓直接改脚本里面的uaNum也行
[task_local]
#抖抖果园
15 8,10,12,18,20 * * * https://raw.githubusercontent.com/LinYuanovo/scripts/main/dygy.js, tag=抖音果园, enabled=true
[rewrite_local]
https://minigame.zijieapi.com/ttgame/game_orchard_ecom/polling_info url script-request-header https://raw.githubusercontent.com/LinYuanovo/scripts/main/dygy.js
[MITM]
hostname = minigame.zijieapi.com
*/
const $ = new Env('抖抖果园');
const notify = $.isNode() ? require('./sendNotify') : '';
const {log} = console;
const Notify = 1; //0为关闭通知,1为打开通知,默认为1
const debug = 0; //0为关闭调试,1为打开调试,默认为0
const uaNum = 1; //随机UA,从0-20随便选一个填上去
//////////////////////
let scriptVersion = "1.1.1";
let scriptVersionLatest = '';
let ddgyCk = ($.isNode() ? process.env.ddgyCk : $.getdata("ddgyCk")) || "";
let UA = ($.isNode() ? process.env.UA : $.getdata("UA")) || "";
let ck;
let UAArr = [];
let ddgyCkArr = [];
let msg = '';
let loginBack = 0;
let boxTimes = 0;
let boxState = 0;
let challengeTimes = 0;
let challengeState = 0;
let waterBack = 0;
let nutrientSignDay = 0;
let liteFertilizerType = 0;
let normalFertilizerType = 0;
let progress = 0.00;
let hour = parseInt(new Date().getHours());
let touchDuckBack = 0;
let giftBack = 0;
let challengeBack = 0;
let boxBack = 0;
let nutrientBack = 0;
const User_Agents = [
"Mozilla/5.0 (Linux; Android 10; ONEPLUS A5010 Build/QKQ1.191014.012; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/77.0.3865.120 MQQBrowser/6.2 TBS/045230 Mobile Safari/537.36",
"Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148",
"Mozilla/5.0 (Linux; Android 9; Mi Note 3 Build/PKQ1.181007.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 MQQBrowser/6.2 TBS/045131 Mobile Safari/537.36",
"Mozilla/5.0 (Linux; Android 10; GM1910 Build/QKQ1.190716.003; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/77.0.3865.120 MQQBrowser/6.2 TBS/045230 Mobile Safari/537.36",
"Mozilla/5.0 (Linux; Android 9; 16T Build/PKQ1.190616.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 MQQBrowser/6.2 TBS/044942 Mobile Safari/537.36",
"Mozilla/5.0 (iPhone; CPU iPhone OS 13_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148",
"Mozilla/5.0 (iPhone; CPU iPhone OS 13_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148",
"Mozilla/5.0 (iPhone; CPU iPhone OS 14_2 like Mac OS X) AppleWebKit/532.0 (KHTML, like Gecko) CriOS/43.0.823.0 Mobile/65M532 Safari/532.0",
"Mozilla/5.0 (iPod; U; CPU iPhone OS 3_1 like Mac OS X; rw-RW) AppleWebKit/531.9.3 (KHTML, like Gecko) Version/4.0.5 Mobile/8B118 Safari/6531.9.3",
"Mozilla/5.0 (Linux; Android 9; MI 6 Build/PKQ1.190118.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 MQQBrowser/6.2 TBS/044942 Mobile Safari/537.36",
"Mozilla/5.0 (Linux; Android 11; Redmi K30 5G Build/RKQ1.200826.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/77.0.3865.120 MQQBrowser/6.2 TBS/045511 Mobile Safari/537.36",
"Mozilla/5.0 (Linux; Android 10; ONEPLUS A6000 Build/QKQ1.190716.003; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/77.0.3865.120 MQQBrowser/6.2 TBS/045224 Mobile Safari/537.36",
"Mozilla/5.0 (Linux; Android 9; MHA-AL00 Build/HUAWEIMHA-AL00; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 MQQBrowser/6.2 TBS/044942 Mobile Safari/537.36",
"Mozilla/5.0 (Linux; Android 8.0.0; HTC U-3w Build/OPR6.170623.013; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 MQQBrowser/6.2 TBS/044942 Mobile Safari/537.36",
"Mozilla/5.0 (Linux; Android 10; LYA-AL00 Build/HUAWEILYA-AL00L; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/77.0.3865.120 MQQBrowser/6.2 TBS/045230 Mobile Safari/537.36",
"Mozilla/5.0 (Linux; Android 8.1.0; MI 8 Build/OPM1.171019.026; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 MQQBrowser/6.2 TBS/045131 Mobile Safari/537.36",
"Mozilla/5.0 (Linux; Android 10; Redmi K20 Pro Premium Edition Build/QKQ1.190825.002; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/77.0.3865.120 MQQBrowser/6.2 TBS/045227 Mobile Safari/537.36",
"Mozilla/5.0 (Linux; Android 8.1.0; 16 X Build/OPM1.171019.026; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 MQQBrowser/6.2 TBS/044942 Mobile Safari/537.36",
"Mozilla/5.0 (Linux; Android 10; M2006J10C Build/QP1A.190711.020; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/77.0.3865.120 MQQBrowser/6.2 TBS/045230 Mobile Safari/537.36",
"Mozilla/5.0 (iPhone; CPU iPhone OS 13_7 like Mac OS X) AppleWebKit/532.0 (KHTML, like Gecko) FxiOS/18.2n0520.0 Mobile/50C216 Safari/532.0",
"Mozilla/5.0 (iPhone; CPU iPhone OS 13_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148",
"Mozilla/5.0 (iPhone; CPU iPhone OS 13_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148"
]
let ua = User_Agents[uaNum];
!(async () => {
if (typeof $request !== "undefined") {
await GetRewrite();
} else {
if (!(await Envs()))
return;
else {
log(`\n\n============================================= \n脚本执行 - 北京时间(UTC+8):${new Date(
new Date().getTime() + new Date().getTimezoneOffset() * 60 * 1000 +
8 * 60 * 60 * 1000).toLocaleString()} \n=============================================\n`);
await poem();
await getVersion();
log(`\n============ 当前版本:${scriptVersion} 最新版本:${scriptVersionLatest} ============`)
log(`\n=================== 共找到 ${ddgyCkArr.length} 个账号 ===================`)
if (debug) {
log(`【debug】 这是你的全部账号数组:\n ${ddgyCkArr}`);
}
for (let index = 0; index < ddgyCkArr.length; index++) {
ua = User_Agents[uaNum+index];
if (UA) {
if (index >= UAArr.length){
let i = UAArr.length+randomInt(0,2)
ua = User_Agents[uaNum+i];
} else ua = UAArr[index];
}
let num = index + 1
log(`\n========= 开始【第 ${num} 个账号】=========\n`)
ddgyCk = ddgyCkArr[index];
if (debug) {
log(`\n 【debug】 这是你第 ${num} 账号信息:\n ${ddgyCk}\n`);
}
msg += `\n第${num}个账号运行结果:`
log('开始获取信息');
await getInfo();
await $.wait(2 * 1000);
if (loginBack) {
if (giftBack) {
log('开始领取新人礼物');
await getGift();
await $.wait(2 * 1000);
}
log('开始签到');
await doSignin();
await $.wait(2 * 1000);
log('开始收取水瓶奖励');
await getBottle();
await $.wait(2 * 1000);
log('开始领取每日水滴');
await getTask1();
await $.wait(2 * 1000);
log('开始戳鸭子');
do {
await touchDuck();
await $.wait(2 * 1000);
} while (touchDuckBack);
if (hour >=7 && hour <9) {
log('开始领取早餐礼包');
await getTask2();
await $.wait(2 * 1000);
} else if (hour >=12 && hour<14) {
log('开始领取午餐礼包');
await getTask2();
await $.wait(2 * 1000);
} else if (hour >=18 && hour <21) {
log('开始领取晚餐礼包');
await getTask2();
await $.wait(2 * 1000);
}
log('开始选择挑战');
await chooseChallenge();
await $.wait(2 * 1000);
if (nutrientBack) {
log('开始肥料签到');
await nutrientSignin();
await $.wait(2 * 1000);
log('开始获取肥料列表');
await getNutrientList();
await $.wait(2 * 1000);
if (liteFertilizerType == 1) {
log('开始使用小袋化肥');
await useLiteNutrient();
await $.wait(2 * 1000);
}
}
log('开始浇水');
while (waterBack == 0) {
await giveWater();
await $.wait(2 * 1000);
if (boxBack == 1 && boxTimes == 0 && boxState !=7) {
log('开始开宝箱');
await openBox();
await $.wait(2 * 1000);
}
}
waterBack = 0; //置0
if (challengeTimes == 0 && challengeState !=5) {
log('开始领取挑战');
await getChallengeReward();
await $.wait(2 * 1000);
}
log('开始获取信息');
await getHomeInfo();
await $.wait(2 * 1000);
}
loginBack = 0; //置0
}
await SendMsg(msg);
}
}
})()
.catch((e) => log(e))
.finally(() => $.done())
/**
* 签到
*/
function doSignin(timeout = 3 * 1000) {
return new Promise((resolve) => {
let url = {
url: `http://minigame.zijieapi.com/ttgame/game_orchard_ecom/sign_in/reward`,
headers: {"referer":"https://tmaservice.developer.toutiao.com/?appid=tte684903979bdf21a02&version=1.0.18","User-Agent":`${ua}`,"content-type":"application/json","Accept-Encoding":"br, gzip","Host":"minigame.zijieapi.com","Connection":"Keep-Alive","Cookie":`${ddgyCk}`},
}
if (debug) {
log(`\n【debug】=============== 这是 签到 请求 url ===============`);
log(JSON.stringify(url));
}
$.get(url, async (error, response, data) => {
try {
if (debug) {
log(`\n\n【debug】===============这是 签到 返回data==============`);
log(data)
}
let result = JSON.parse(data);
if (result.status_code == 0) {
log(`签到成功,获得:${result.data.reward_item.num}${result.data.reward_item.name}`)
} else if (result.status_code == 1001) {
log(`签到失败,原因是:已签到`)
} else {
log(`签到失败,原因是:${result.message}`)
}
} catch (e) {
log(e)
} finally {
resolve();
}
}, timeout)
})
}
/**
* 收取水瓶奖励
*/
function getBottle(timeout = 3 * 1000) {
return new Promise((resolve) => {
let url = {
url: `http://minigame.zijieapi.com/ttgame/game_orchard_ecom/water_bottle/reward`,
headers: {"referer":"https://tmaservice.developer.toutiao.com/?appid=tte684903979bdf21a02&version=1.0.18","User-Agent":`${ua}`,"content-type":"application/json","Accept-Encoding":"br, gzip","Host":"minigame.zijieapi.com","Connection":"Keep-Alive","Cookie":`${ddgyCk}`},
}
if (debug) {
log(`\n【debug】=============== 这是 收取水瓶奖励 请求 url ===============`);
log(JSON.stringify(url));
}
$.get(url, async (error, response, data) => {
try {
if (debug) {
log(`\n\n【debug】===============这是 收取水瓶奖励 返回data==============`);
log(data)
}
let result = JSON.parse(data);
if (result.status_code == 0) {
log(`收取水瓶奖励成功,获得:${result.data.reward_item.num}水滴`)
} else if (result.status_code == 1001) {
log(`收取水瓶奖励失败,原因是:已收取过`)
} else {
log(`收取水瓶奖励失败,原因是:${result.message}`)
}
} catch (e) {
log(e)
} finally {
resolve();
}
}, timeout)
})
}
/**
* 选择挑战
*/
function chooseChallenge(timeout = 3 * 1000) {
return new Promise((resolve) => {
let url = {
url: `http://minigame.zijieapi.com/ttgame/game_orchard_ecom/challenge/choose?task_id=2`,
headers: {"referer":"https://tmaservice.developer.toutiao.com/?appid=tte684903979bdf21a02&version=1.0.18","User-Agent":`${ua}`,"content-type":"application/json","Accept-Encoding":"br, gzip","Host":"minigame.zijieapi.com","Connection":"Keep-Alive","Cookie":`${ddgyCk}`},
}
if (debug) {
log(`\n【debug】=============== 这是 选择挑战 请求 url ===============`);
log(JSON.stringify(url));
}
$.get(url, async (error, response, data) => {
try {
if (debug) {
log(`\n\n【debug】===============这是 选择挑战 返回data==============`);
log(data)
}
let result = JSON.parse(data);
if (result.status_code == 0) {
log(`选择挑战成功,需要浇水${result.data.red_point.times}次`)
} else if (result.status_code == 1001) {
log(`选择挑战失败,原因是:已选择过`)
} else {
log(`选择挑战失败,原因是:${result.message}`)
}
} catch (e) {
log(e)
} finally {
resolve();
}
}, timeout)
})
}
/**
* 领取挑战奖励 (达到次数后再执行)
*/
function getChallengeReward(timeout = 3 * 1000) {
return new Promise((resolve) => {
let url = {
url: `http://minigame.zijieapi.com/ttgame/game_orchard_ecom/challenge/reward`,
headers: {"referer":"https://tmaservice.developer.toutiao.com/?appid=tte684903979bdf21a02&version=1.0.18","User-Agent":`${ua}`,"content-type":"application/json","Accept-Encoding":"br, gzip","Host":"minigame.zijieapi.com","Connection":"Keep-Alive","Cookie":`${ddgyCk}`},
}
if (debug) {
log(`\n【debug】=============== 这是 领取挑战奖励 请求 url ===============`);
log(JSON.stringify(url));
}
$.get(url, async (error, response, data) => {
try {
if (debug) {
log(`\n\n【debug】===============这是 领取挑战奖励 返回data==============`);
log(data)
}
let result = JSON.parse(data);
if (result.status_code == 0) {
challengeTimes = 1;
log(`领取挑战奖励成功,获得:${result.data.reward_item.num}水滴`)
} else if (result.status_code == 1001) {
log(`领取挑战奖励失败,原因是:已收取过`)
} else {
log(`领取挑战奖励失败,原因是:${result.message}`)
}
} catch (e) {
log(e)
} finally {
resolve();
}
}, timeout)
})
}
/**
* 浇水
*/
function giveWater(timeout = 3 * 1000) {
return new Promise((resolve) => {
let url = {
url: `http://minigame.zijieapi.com/ttgame/game_orchard_ecom/tree/water`,
headers: {"referer":"https://tmaservice.developer.toutiao.com/?appid=tte684903979bdf21a02&version=1.0.18","User-Agent":`${ua}`,"content-type":"application/json","Accept-Encoding":"br, gzip","Host":"minigame.zijieapi.com","Connection":"Keep-Alive","Cookie":`${ddgyCk}`},
}
if (debug) {
log(`\n【debug】=============== 这是 浇水 请求 url ===============`);
log(JSON.stringify(url));
}
$.get(url, async (error, response, data) => {
try {
if (debug) {
log(`\n\n【debug】===============这是 浇水 返回data==============`);
log(data)
}
let result = JSON.parse(data);
if (result.status_code == 0) {
progress =+ result.data.progress.current/result.data.progress.target;
progress = progress * 100;
progress = progress.toFixed(2);
log(`浇水成功,当前果树等级:${result.data.status}级,剩余水滴:${result.data.kettle.water_num},进度:${progress}%`)
challengeTimes =+ result.data.red_points.challenge.times;
challengeState =+ result.data.red_points.challenge.state;
if (boxBack) {
boxState =+ result.data.red_points.box.state;
boxTimes =+ result.data.red_points.box.times;
}
} else if (result.status_code == 1001) {
waterBack =+ result.status_code;
log(`浇水失败,原因是:水滴数量不足`)
} else {
log(`浇水失败,原因是:${result.message}`)
}
} catch (e) {
log(e)
} finally {
resolve();
}
}, timeout)
})
}
/**
* 开宝箱 (浇水十次开一次)
*/
function openBox(timeout = 3 * 1000) {
return new Promise((resolve) => {
let url = {
url: `http://minigame.zijieapi.com/ttgame/game_orchard_ecom/box/open`,
headers: {"referer":"https://tmaservice.developer.toutiao.com/?appid=tte684903979bdf21a02&version=1.0.18","User-Agent":`${ua}`,"content-type":"application/json","Accept-Encoding":"br, gzip","Host":"minigame.zijieapi.com","Connection":"Keep-Alive","Cookie":`${ddgyCk}`},
}
if (debug) {
log(`\n【debug】=============== 这是 开宝箱 请求 url ===============`);
log(JSON.stringify(url));
}
$.get(url, async (error, response, data) => {
try {
if (debug) {
log(`\n\n【debug】===============这是 开宝箱 返回data==============`);
log(data)
}
let result = JSON.parse(data);
if (result.status_code == 0) {
log(`开宝箱成功,获得:${result.data.reward_item.num}${result.data.reward_item.name}`)
} else if (result.status_code == 1001) {
log(`开宝箱失败,原因是:开宝箱次数已用完`)
} else {
log(`开宝箱失败,原因是:${result.message}`)
}
} catch (e) {
log(e)
} finally {
resolve();
}
}, timeout)
})
}
/**
* 领取每日水滴 (一天五次,五分钟一次)
*/
function getTask1(timeout = 3 * 1000) {
return new Promise((resolve) => {
let url = {
url: `http://minigame.zijieapi.com/ttgame/game_orchard_ecom/tasks/reward?task_id=1`,
headers: {"referer":"https://tmaservice.developer.toutiao.com/?appid=tte684903979bdf21a02&version=1.0.18","User-Agent":`${ua}`,"content-type":"application/json","Accept-Encoding":"br, gzip","Host":"minigame.zijieapi.com","Connection":"Keep-Alive","Cookie":`${ddgyCk}`},
}
if (debug) {
log(`\n【debug】=============== 这是 领取每日水滴 请求 url ===============`);
log(JSON.stringify(url));
}
$.get(url, async (error, response, data) => {
try {
if (debug) {
log(`\n\n【debug】===============这是 领取每日水滴 返回data==============`);
log(data)
}
let result = JSON.parse(data);
if (result.status_code == 0) {
log(`领取每日水滴成功,获得:${result.data.task.reward_item.num}水滴`)
} else if (result.status_code == 1001) {
log(`领取每日水滴失败,原因是:未到时间`)
} else {
log(`领取每日水滴失败,原因是:${result.message}`)
}
} catch (e) {
log(e)
} finally {
resolve();
}
}, timeout)
})
}
/**
* 领取三餐礼包 (7-9 12-14 18-21点)
*/
function getTask2(timeout = 3 * 1000) {
return new Promise((resolve) => {
let url = {
url: `http://minigame.zijieapi.com/ttgame/game_orchard_ecom/tasks/reward?task_id=2`,
headers: {"referer":"https://tmaservice.developer.toutiao.com/?appid=tte684903979bdf21a02&version=1.0.18","User-Agent":`${ua}`,"content-type":"application/json","Accept-Encoding":"br, gzip","Host":"minigame.zijieapi.com","Connection":"Keep-Alive","Cookie":`${ddgyCk}`},
}
if (debug) {
log(`\n【debug】=============== 这是 领取三餐礼包 请求 url ===============`);
log(JSON.stringify(url));
}
$.get(url, async (error, response, data) => {
try {
if (debug) {
log(`\n\n【debug】===============这是 领取三餐礼包 返回data==============`);
log(data)
}
let result = JSON.parse(data);
if (result.status_code == 0) {
log(`领取三餐礼包成功,获得:${result.data.task.reward_item.num}水滴`)
} else if (result.status_code == 1001) {
log(`领取三餐礼包失败,原因是:未到时间`)
} else {
log(`领取三餐礼包失败,原因是:${result.message}`)
}
} catch (e) {
log(e)
} finally {
resolve();
}
}, timeout)
})
}
/**
* 获取肥料列表
*/
function getNutrientList(timeout = 3 * 1000) {
return new Promise((resolve) => {
let url = {
url: `http://minigame.zijieapi.com/ttgame/game_orchard_ecom/nutrient/list`,
headers: {"referer":"https://tmaservice.developer.toutiao.com/?appid=tte684903979bdf21a02&version=1.0.18","User-Agent":`${ua}`,"content-type":"application/json","Accept-Encoding":"br, gzip","Host":"minigame.zijieapi.com","Connection":"Keep-Alive","Cookie":`${ddgyCk}`},
}
if (debug) {
log(`\n【debug】=============== 这是 获取肥料列表 请求 url ===============`);
log(JSON.stringify(url));
}
$.get(url, async (error, response, data) => {
try {
if (debug) {
log(`\n\n【debug】===============这是 获取肥料列表 返回data==============`);
log(data)
}
let result = JSON.parse(data);
if (result.status_code == 0) {
log(`获取肥料列表成功`)
normalFertilizerType = result.data.fertilizer.normal;
liteFertilizerType = result.data.fertilizer.lite;
nutrientSignDay = result.data.sign.cur_times;
} else {
log(`获取肥料列表失败,原因是:${result.message}`)
}
} catch (e) {
log(e)
} finally {
resolve();
}
}, timeout)
})
}
/**
* 肥料签到
*/
function nutrientSignin(timeout = 3 * 1000) {
return new Promise((resolve) => {
let url = {
url: `http://minigame.zijieapi.com/ttgame/game_orchard_ecom/nutrient/sign_in`,
headers: {"referer":"https://tmaservice.developer.toutiao.com/?appid=tte684903979bdf21a02&version=1.0.18","User-Agent":`${ua}`,"content-type":"application/json","Accept-Encoding":"br, gzip","Host":"minigame.zijieapi.com","Connection":"Keep-Alive","Cookie":`${ddgyCk}`},
}
if (debug) {
log(`\n【debug】=============== 这是 肥料签到 请求 url ===============`);
log(JSON.stringify(url));
}
$.get(url, async (error, response, data) => {
try {
if (debug) {
log(`\n\n【debug】===============这是 肥料签到 返回data==============`);
log(data)
}
let result = JSON.parse(data);
if (result.status_code == 0) {
log(`肥料签到成功,已签到:${result.data.sign.cur_times}天`)
} else if (result.status_code == 1001) {
log(`肥料签到失败,原因是:已签到`)
} else {
log(`肥料签到失败,原因是:${result.message}`)
}
} catch (e) {
log(e)
} finally {
resolve();
}
}, timeout)
})
}
/**
* 使用小袋肥料
*/
function useLiteNutrient(timeout = 3 * 1000) {
return new Promise((resolve) => {
let url = {
url: `http://minigame.zijieapi.com/ttgame/game_orchard_ecom/use/fertilizer?fertilizer_type=4`,
headers: {"referer":"https://tmaservice.developer.toutiao.com/?appid=tte684903979bdf21a02&version=1.0.18","User-Agent":`${ua}`,"content-type":"application/json","Accept-Encoding":"br, gzip","Host":"minigame.zijieapi.com","Connection":"Keep-Alive","Cookie":`${ddgyCk}`},
}
if (debug) {
log(`\n【debug】=============== 这是 使用小袋肥料 请求 url ===============`);
log(JSON.stringify(url));
}
$.get(url, async (error, response, data) => {
try {
if (debug) {
log(`\n\n【debug】===============这是 使用小袋肥料 返回data==============`);
log(data)
}
let result = JSON.parse(data);
if (result.status_code == 0) {
log(`使用小袋肥料成功,剩余肥料为:${result.data.nutrient}`)
} else if (result.status_code == 1001) {
log(`使用小袋肥料失败,原因是:小袋肥料不足`)
} else {
log(`使用小袋肥料失败,原因是:${result.message}`)
}
} catch (e) {
log(e)
} finally {
resolve();
}
}, timeout)
})
}
/**
* 获取主页信息
*/
function getHomeInfo(timeout = 3 * 1000) {
return new Promise((resolve) => {
let url = {
url: `http://minigame.zijieapi.com/ttgame/game_orchard_ecom/home_info`,
headers: {"referer":"https://tmaservice.developer.toutiao.com/?appid=tte684903979bdf21a02&version=1.0.18","User-Agent":`${ua}`,"content-type":"application/json","Accept-Encoding":"br, gzip","Host":"minigame.zijieapi.com","Connection":"Keep-Alive","Cookie":`${ddgyCk}`},
}
if (debug) {
log(`\n【debug】=============== 这是 获取主页信息 请求 url ===============`);
log(JSON.stringify(url));
}
$.get(url, async (error, response, data) => {
try {
if (debug) {
log(`\n\n【debug】===============这是 获取主页信息 返回data==============`);
log(data)
}
let result = JSON.parse(data);
if (result.status_code == 0) {
progress =+ result.data.info.progress.current/result.data.info.progress.target;
progress = progress * 100;
progress = progress.toFixed(2);
log(`获取主页信息成功,当前果树等级:${result.data.info.status}级,养分:${result.data.info.nutrient},进度:${progress}%`)
msg += `\n当前果树等级:${result.data.info.status}级,养分:${result.data.info.nutrient},进度:${progress}%`
//fruit_id=5应该是芒果,4是橙子,其他未知,后期补上
} else {
log(`获取主页信息失败,原因是:${result.message}`)
}
} catch (e) {
log(e)
} finally {
resolve();
}
}, timeout)
})
}
/**
* 戳鸭子 (应该只有五次)
*/
function touchDuck(timeout = 3 * 1000) {
return new Promise((resolve) => {
let url = {
url: `http://minigame.zijieapi.com/ttgame/game_orchard_ecom/scene/touch?scene_id=1`,
headers: {"referer":"https://tmaservice.developer.toutiao.com/?appid=tte684903979bdf21a02&version=1.0.18","User-Agent":`${ua}`,"content-type":"application/json","Accept-Encoding":"br, gzip","Host":"minigame.zijieapi.com","Connection":"Keep-Alive","Cookie":`${ddgyCk}`},
}
if (debug) {
log(`\n【debug】=============== 这是 戳鸭子 请求 url ===============`);
log(JSON.stringify(url));
}
$.get(url, async (error, response, data) => {
try {
if (debug) {
log(`\n\n【debug】===============这是 戳鸭子 返回data==============`);
log(data)
}
let result = JSON.parse(data);
if (result.status_code == 0) {
if (result.data.reward_item != null){
log(`戳鸭子成功,获得:${result.data.reward_item.num}${result.data.reward_item.name}`)
}
if (result.data.red_point[0].round_info.current_round != result.data.red_point[0].round_info.total_round) {
touchDuckBack = 1;
} else {
touchDuckBack = 0;
}
} else if (result.status_code == 1001) {
log(`戳鸭子失败,原因是:戳鸭子次数已用完`)
} else {
log(`戳鸭子失败,原因是:${result.message}`)
}
} catch (e) {
log(e)
} finally {
resolve();
}
}, timeout)
})
}
/**
* 获取信息
*/
function getInfo(timeout = 3 * 1000) {
return new Promise((resolve) => {
let url = {
url: `http://minigame.zijieapi.com/ttgame/game_orchard_ecom/polling_info`,
headers: {"referer":"https://tmaservice.developer.toutiao.com/?appid=tte684903979bdf21a02&version=1.0.18","User-Agent":`${ua}`,"content-type":"application/json","Accept-Encoding":"br, gzip","Host":"minigame.zijieapi.com","Connection":"Keep-Alive","Cookie":`${ddgyCk}`},
}
if (debug) {
log(`\n【debug】=============== 这是 获取主页信息 请求 url ===============`);
log(JSON.stringify(url));
}
$.get(url, async (error, response, data) => {
try {
if (debug) {
log(`\n\n【debug】===============这是 获取主页信息 返回data==============`);
log(data)
}
let result = data == "undefined" ? await getInfo() : JSON.parse(data);
if (result.status_code == 0) {
loginBack = 1;
if (result.data.show_info.show_green_gift == true) {
giftBack = 1;
}
if (result.data.red_points.box) {
boxBack = 1;
}
if (result.data.show_info.show_nutrient == true) {
nutrientBack = 1;
}
} else {
log(`获取主页信息失败,原因是:${result.message},退出脚本`)
}
} catch (e) {
log(e)
} finally {
resolve();
}
}, timeout)
})
}
/**
* 新手礼物 (四次)
*/
function getGift(timeout = 3 * 1000) {
return new Promise((resolve) => {
let url = {
url: `http://minigame.zijieapi.com/ttgame/game_orchard_ecom/green_gift/reward?aid=1128`,
headers: {"referer":"https://tmaservice.developer.toutiao.com/?appid=tte684903979bdf21a02&version=1.0.18","User-Agent":`${ua}`,"content-type":"application/json","Accept-Encoding":"br, gzip","Host":"minigame.zijieapi.com","Connection":"Keep-Alive","Cookie":`${ddgyCk}`},
}
if (debug) {
log(`\n【debug】=============== 这是 新手礼物 请求 url ===============`);
log(JSON.stringify(url));
}
$.get(url, async (error, response, data) => {
try {
if (debug) {
log(`\n\n【debug】===============这是 新手礼物 返回data==============`);
log(data)
}
let result = JSON.parse(data);
if (result.status_code == 0) {
log(`领取新手礼物成功,获得:${result.data.reward_item.num}水滴`)
} else if (result.status_code == 1001) {
log(`领取新手礼物失败,原因是:${result.message}`)
} else {
log(`领取新手礼物失败,原因是:${result.message}`)
}
} catch (e) {
log(e)
} finally {
resolve();
}
}, timeout)
})
}
// ============================================重写============================================ \\
async function GetRewrite() {
if ($request.url.indexOf("game_orchard_ecom/polling_info") > -1) {
const ck = $request.headers.Cookie;
if (ddgyCk) {
if (ddgyCk.indexOf(ck) == -1) {
ddgyCk = ddgyCk + "@" + ck;
$.setdata(ddgyCk, "ddgyCk");
List = ddgyCk.split("@");
$.msg($.name + ` 获取第${List.length}个 ck 成功: ${ck} ,不用请自行关闭重写!`);
}
} else {
$.setdata(ck, "ddgyCk");
$.msg($.name + ` 获取第1个 ck 成功: ${ck} ,不用请自行关闭重写!`);
}
}
}
// ============================================变量检查============================================ \\
async function Envs() {
if (UA) {
if (UA.indexOf("@") != -1) {
UA.split("@").forEach((item) => {
UAArr.push(item);
});
} else if (UA.indexOf("\n") != -1) {
UA.split("\n").forEach((item) => {
UAArr.push(item);
});
} else {
UAArr.push(UA);
}
}
if (ddgyCk) {
if (ddgyCk.indexOf("@") != -1) {
ddgyCk.split("@").forEach((item) => {
ddgyCkArr.push(item);
});
} else if (ddgyCk.indexOf("\n") != -1) {
ddgyCk.split("\n").forEach((item) => {
ddgyCkArr.push(item);
});
} else {
ddgyCkArr.push(ddgyCk);
}
} else {
log(`\n 【${$.name}】:未填写变量 ddgyCk`)
return;
}
return true;
}
// ============================================发送消息============================================ \\
async function SendMsg(message) {
if (!message)
return;
if (Notify > 0) {
if ($.isNode()) {
var notify = require('./sendNotify');
await notify.sendNotify($.name, message);
} else {
$.msg(message);
}
} else {
log(message);
}
}