-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathxmbs.js
97 lines (84 loc) · 1.56 KB
/
xmbs.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
1
/**
2
* @ 临渊
3
* 功能:小米运动刷步数
4
* 日期:6-6
5
* 变量格式:export xmbs='小米运动&密码&步数@xxx ' 多个账号用@分割
6
* 定时一天一次
7
* 更新成换行登录
8
*/
9
10
const $ = new Env('小米步数');
11
const notify = $.isNode() ? require('./sendNotify') : '';
12
const Notify = 1; //0为关闭通知,1为打开通知,默认为1
13
const debug = 0; //0为关闭调试,1为打开调试,默认为0
14
//////////////////////
15
let xmbs = ($.isNode() ? process.env.xmbs : $.getdata("xmbs")) || "";
16
let xmbsArr = [];
17
let data = '';
18
let msg = '';
19
let back = 0;
20
21
22
!(async () => {
23
24
if (!(await Envs()))
25
return;
26
else {
27
28
29
30
console.log(`\n\n========================================= \n脚本执行 - 北京时间(UTC+8):${new Date(
31
new Date().getTime() + new Date().getTimezoneOffset() * 60 * 1000 +
32
8 * 60 * 60 * 1000).toLocaleString()} \n=========================================\n`);
33
34
35
console.log(`\n=================== 共找到 ${xmbsArr.length} 个账号 ===================`)
36
37
if (debug) {
38
console.log(`【debug】 这是你的全部账号数组:\n ${xmbsArr}`);
39
}
40
41
42
for (let index = 0; index < xmbsArr.length; index++) {
43
44
45
let num = index + 1
46
console.log(`\n========= 开始【第 ${num} 个账号】=========\n`)
47
48
bs = xmbsArr[index].split('&');