如果大家喺電腦面前,可以試下以下嘅改良版 bot.
佢用極少電腦資源,唔會影響電腦其他運作,而且可以 minimise咗個window繼續做自己嘢。
開 Chrome, 按Ctrl+Shift+N 開 incognito mode, 去
https://popcat.click/
再按F12, 去console, paste下面嘅code 跟住按enter.
記住 right-click個 tab mute聲, 因為每30秒會自動 click一次去 避開 閒置detection. 佢同舊 bot唔同,主頁唔會 show真正 click數,但只要睇返 Console
綠色字 就會知實際 click數。一開始可能會有紅字503 error, 但30秒後就會回復正常綠色字,跟住每30秒出一次。
(()=>{
console.clear()
var event = new KeyboardEvent('keydown', {key: 'g',ctrlKey: true});
var pop_cnt = 800; //Initial value
// Start sendStats interval
document.dispatchEvent(event);
var vue = document.getElementById('app').__vue__;
vue.accumulator = pop_cnt; // Set vue to initial pop count
var total = 0; // Total pops
var N = 0; //Count valid transactions
var iv = setInterval(()=>{
var vue = document.getElementById('app').__vue__; // Get VUE
if(vue.bot){ // Check if user is marked as bot (just for safety measures, very unlikely to happen)
console.log("%c You've been barked as a bot. Please clear your cookies.", "background: #a00; color: #fff");
clearInterval(iv);
return;
}
// Prevent ban
vue.sequential_max_pops = 0;
// Detect sendStats function run
if (vue.accumulator == 0){
total += pop_cnt;
N++;
console.log(`${N}: [${new Date().toLocaleTimeString()}] %c${pop_cnt} pops sent (Total: ${total})`, "color: #0f0");
document.dispatchEvent(event); //prevent idle
pop_cnt = 800-Math.floor(Math.random()*10);
vue.accumulator = pop_cnt; // Set pops
} else {
vue.open = false;
}
}, 1000);
console.log("%c Bot started. Waiting for the first request being sent. ", "background: #050; color: #0f0");
})();