May 15, 2023

Скрипт для «BingX»

let batchSize = 100;

function processBatch(startIndex) {

let goldItems = document.querySelectorAll('.gold-item.ignore-pxtorem.五周年金幣.gold, .gold-item.ignore-pxtorem.cheems.token, .gold-item.ignore-pxtorem.four.token');

for (let i = startIndex; i < Math.min(startIndex + batchSize, goldItems.length); i++) {

goldItems[i].click();

}

if (startIndex + batchSize >= goldItems.length) {

setTimeout(function() {

processBatch(0);

}, 10);

} else {

processBatch(startIndex + batchSize);

}

}

processBatch(0);

Новости Халявы