From bf4e7b4ed3969ad606b84911495455ca13448693 Mon Sep 17 00:00:00 2001 From: lxk0301 <778732665@qq.com> Date: Sun, 22 Nov 2020 10:27:33 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=98=AF=E5=90=A6=E4=B8=AD?= =?UTF-8?q?=E5=A5=96=E6=89=93=E5=8D=B0=EF=BC=8C=E5=87=8F=E5=B0=91=E6=91=87?= =?UTF-8?q?=E5=A5=96=E9=97=B4=E9=9A=94(=E5=BB=B6=E8=BF=9F=E6=97=B6?= =?UTF-8?q?=E9=97=B4)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jd_club_lottery.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/jd_club_lottery.js b/jd_club_lottery.js index 762cc6c3..7d81c634 100644 --- a/jd_club_lottery.js +++ b/jd_club_lottery.js @@ -137,14 +137,15 @@ async function shaking() { } for (let i = 0; i < new Array($.leftShakingTimes).fill('').length; i++) { console.log(`开始新版-摇奖`) - await $.wait(2000); + await $.wait(1000); const newShakeBeanRes = await vvipclub_shaking_lottery(); if (newShakeBeanRes.success) { console.log(`新版-剩余摇奖次数:${newShakeBeanRes.data.remainLotteryTimes}`) if (newShakeBeanRes.data && newShakeBeanRes.data.rewardBeanAmount) { $.prizeBeanCount += newShakeBeanRes.data.rewardBeanAmount; + console.log(`恭喜你,中奖了,获得${newShakeBeanRes.data.rewardBeanAmount}京豆\n`) } else { - console.log(`未中奖`) + console.log(`未中奖\n`) } } }