Skip to content

Commit

Permalink
fix: 月卡处理的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
Zebartin committed May 7, 2023
1 parent 0a7e804 commit 2f14b1d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions NIKKE/NIKKEutils.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,11 @@ function 等待NIKKE加载() {
click(width / 2, height / 2);
manuallyEnter = false;
}
else if (res.text.match(/(REWARD|点击|每日|补给)/) != null)
click(width / 2, height * 0.8);
else if (res.text.match(/(大厅|员招|物品栏)/) != null)
return true;
// 月卡检查要放在这里之后
else if (res.text.match(/(REWARD|点击|每日|补给)/) != null)
click(width / 2, height * 0.8);
toast('等待加载……');
return false;
}, 60, 5000) == null)
Expand Down

0 comments on commit 2f14b1d

Please sign in to comment.