代码拉取完成,页面将自动刷新
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>单人评分</title>
</head>
<body>
<p>10%</p>
<pre>
const all = document.querySelector('#textdiv>textarea').value.split('\n');
let j = 0;
let fi = 0;
/**
* Get the score of a name.
*/
function check() {
if (fi) {
return;
}
if (cw().document.querySelectorAll('span.u').length <= 10) {
setTimeout(() => {
check();
}, 1000);
return;
}
const val = parseInt(cw().document.querySelectorAll('span.u')[10].textContent
.split(' ')[2]);
if (val >= 6800) {
console.log(`${all[j]} ${val}`);
}
j++;
reload();
setTimeout(() => {
check();
}, 1000);
}
/**
* Reload names.
*/
function reload() {
if (j < all.length) {
document.querySelector('#textdiv>textarea').value = `!test!\n\n${all[j]}`;
document.querySelector('.goBtn').click();
} else {
alert('测试已完成');
fi = 1;
}
}
reload();
check();
</pre>
<p>100%</p>
<pre>
const all = document.querySelector('#textdiv>textarea').value.split('\n');
let j = 0;
let fi = 0;
/**
* Get the score of a name.
*/
function check() {
if (fi) {
return;
}
if (cw().document.querySelectorAll('span.u').length <= 100) {
setTimeout(() => {
check();
}, 1000);
return;
}
const progress = cw().document.querySelectorAll('span.u');
let pos = -1;
for (let i = 100; i < progress.length; i++) {
const element = progress[i];
if (element.textContent.split(' ')[0] === '》') {
pos = i;
break;
}
}
if (pos == -1) {
setTimeout(() => {
check();
}, 1000);
return;
}
const val = parseInt(progress[pos].textContent.split(' ')[2]);
if (val >= 6800) {
console.log(all[j] + ' ' + val);
}
j++;
reload();
setTimeout(() => {
check();
}, 60000);
}
/**
* Reload.
*/
function reload() {
if (j < all.length) {
document.querySelector('#textdiv>textarea').value = '!test!\n\n' + all[j];
document.querySelector('.goBtn').click();
} else {
alert('测试已完成');
fi = 1;
}
}
reload();
check();
</pre>
</body>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。