更新 'mcbbs/vending-machine.user.js'
This commit is contained in:
parent
8f272e3e0a
commit
2968132bc5
@ -1,7 +1,7 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name MCBBS自动售卖机
|
// @name MCBBS自动售卖机
|
||||||
// @namespace https://miaowoo.cc/
|
// @namespace https://miaowoo.cc/
|
||||||
// @version 0.6.2
|
// @version 0.6.3
|
||||||
// @description 自动售卖道具
|
// @description 自动售卖道具
|
||||||
// @author MiaoWoo
|
// @author MiaoWoo
|
||||||
// @match https://www.mcbbs.net/home.php?mod=magic**
|
// @match https://www.mcbbs.net/home.php?mod=magic**
|
||||||
@ -190,9 +190,12 @@
|
|||||||
async function sendOrderAction(openFn, back = false) {
|
async function sendOrderAction(openFn, back = false) {
|
||||||
let timeoutTask = setTimeout(() => { refresh() }, 120000)
|
let timeoutTask = setTimeout(() => { refresh() }, 120000)
|
||||||
let count = 0
|
let count = 0
|
||||||
|
if (stock < 50) {
|
||||||
|
setTimeout(() => { refresh() }, 15000)
|
||||||
|
}
|
||||||
let result = await fetch('https://reward.yumc.pw/mcbbs/needSendOrder').then(r => r.json())
|
let result = await fetch('https://reward.yumc.pw/mcbbs/needSendOrder').then(r => r.json())
|
||||||
if (result.code != 200) {
|
if (result.code != 200) {
|
||||||
if (++checkTimes > 5 || back || stock < 30) {
|
if (++checkTimes > 5 || back) {
|
||||||
refresh()
|
refresh()
|
||||||
}
|
}
|
||||||
clearTimeout(timeoutTask)
|
clearTimeout(timeoutTask)
|
||||||
|
Loading…
Reference in New Issue
Block a user