This commit is contained in:
smallfawn
2025-02-28 12:24:26 +08:00
parent 7c568a6668
commit 9abdca67e5
2 changed files with 7 additions and 3 deletions

View File

@@ -112,7 +112,8 @@ class Task extends Public {
async run() { async run() {
$.log(`随机延迟5-10分钟`)
await $.wait(Math.floor(Math.random() * 600000) + 300000)
await this.openbox() await this.openbox()

View File

@@ -206,6 +206,9 @@ class Task extends Public {
} }
} }
async run() { async run() {
//随机延迟5-10分钟
$.log(`随机延迟5-10分钟`)
await $.wait(Math.floor(Math.random() * 600000) + 300000)
await this.signIn() await this.signIn()