File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 111111.26 增加领取周时长奖励
121211.26 增加结束命令
131311.27 调整通知为,成功开启宝箱再通知
14-
14+ 11.28 修复错误
1515
1616⚠️cookie获取方法:
1717
@@ -76,7 +76,7 @@ const $ = Env(jsname)
7676
7777const logs = 0 ; //0为关闭日志,1为开启
7878const notifyInterval = 2
79- //0为关闭通知,1为所有通知,2为宝箱领取成功通知,3为宝箱每18次通知一次
79+ //0为关闭通知,1为所有通知,2为宝箱领取成功通知,3为宝箱每15次通知一次
8080
8181
8282const jbid = 1 //换号则修改这个值,默认账号1
@@ -818,12 +818,12 @@ console.log(tz)
818818if ( notifyInterval == 1 )
819819$ . msg ( jsname , '' , tz ) //显示所有通知
820820
821- else if ( notifyInterval == 2 && box . data . amount > =0 )
821+ else if ( notifyInterval == 2 && task . data . treasureBox . doneFlag = =0 )
822822$ . msg ( jsname , '' , tz ) //宝箱领取成功通知
823823
824824
825- else if ( notifyInterval == 3 && box . data . count == 0 || box . data . count == 18 || box . data . count == 36 || box . data . count == 54 || box . data . count == 72 )
826- $ . msg ( jsname , '' , tz ) //宝箱每18次通知一次
825+ else if ( notifyInterval == 3 && task . data . treasureBox . count == 0 || task . data . treasureBox . count == 15 || task . data . treasureBox . count == 30 || task . data . treasureBox . count == 45 || task . data . treasureBox . count == 60 )
826+ $ . msg ( jsname , '' , tz ) //宝箱每15次通知一次
827827
828828
829829
You can’t perform that action at this time.
0 commit comments