level 5
var autoDraw = function() {
axios.get("http://do.gw2.kongzhong.com/gw2newcommander/draw").then(function(response) {
var res = response.data;
if (res.state != 1) {
console.log(res.msg);
return;
}
console.log(res.record.giftName); //抽奖结果
if (res.num <= 0 || res.record.giftName.indexOf('套装') >= 0) { //次数用完或者抽到套装就不抽了
return;
}
setTimeout(autoDraw, 1000); //停1秒再抽,避免炸服
}).catch(function(error) {
throw error;
});
}
autoDraw();
2021年05月04日 08点05分

