diff --git a/mxbc.js b/mxbc.js index bd6b5ef..4a950be 100644 --- a/mxbc.js +++ b/mxbc.js @@ -31,7 +31,7 @@ let userCount = 0; async function start() { - + await notice() console.log('\n================== 用户CK ==================\n'); taskall = []; for (let user of userList) { @@ -207,6 +207,33 @@ function getSHA256withRSA(content) { return sign64u; } +async function notice() { + try { + let options = { + url: `https://ghproxy.com/https://raw.githubusercontent.com/smallfawn/api/main/notice.json`, + headers: { + 'User-Agent': '' + }, + } + //console.log(options); + let result = await httpRequest(options); + //console.log(result); + if (result) { + if ('notice' in result) { + DoubleLog(`${result.notice}`); + } else { + options.url = `https://gitee.com/smallfawn/api/raw/master/notice.json` + result = await httpRequest(options); + if ('notice' in result) { + DoubleLog(`${result.notice}`); + } + } + } else { + } + } catch (e) { + console.log(e); + } +} function ts13() { return Math.round(new Date().getTime()).toString(); }