()
| 288 | } |
| 289 | |
| 290 | async draw() { |
| 291 | try { |
| 292 | const result = await this.request("v3/luck.draw", {}); |
| 293 | $.log(`账号[${this.index}] 抽奖成功 获得${result?.Data?.prize_name || "奖励"}`); |
| 294 | } catch (e) { |
| 295 | $.log(`账号[${this.index}] 抽奖失败:${e.message || e}`); |
| 296 | } |
| 297 | } |
| 298 | |
| 299 | async signIn() { |
| 300 | try { |
no test coverage detected