小林♪ |China
小林♪ |China|Apr 11, 2025 17:08
脚本容易封号 所以给大家用控制台做了一个 1 打开矿山页面 按F12 在控制台输入下面的代码然后回车 这样就可以自动点击了 (function () { const miningInterval = 5000; // dalam milidetik, ubah sesuai kebutuhan const button = document.createElement('button'); button.textContent = '🔁 AUTO MINING ON'; http://button.style.position = 'fixed'; http://button.style.top = '15px'; http://button.style.left = '15px'; http://button.style.zIndex = '9999'; http://button.style.padding = '12px 18px'; http://button.style.background = 'linear-gradient(135deg, #6c5ce7, #00cec9)'; http://button.style.color = '#fff'; http://button.style.border = 'none'; http://button.style.borderRadius = '8px'; http://button.style.cursor = 'pointer'; http://button.style.fontSize = '14px'; http://button.style.fontWeight = 'bold'; http://button.style.boxShadow = '0 4px 10px rgba(0,0,0,0.2)'; http://button.style.transition = 'all 0.3s ease'; button.onmouseenter = () => http://button.style.transform = 'scale(1.05)'; button.onmouseleave = () => http://button.style.transform = 'scale(1)'; document.body.appendChild(button); let isMining = false; let intervalId = null; function startMiningLoop() { intervalId = setInterval(() => { const miningAmount = Math.floor(Math.random() * (150 - 30 + 1)) + 30; const shards = Array.from(document.querySelectorAll('div[id^="shard-shard_"]')); const limitedShards = shards.slice(0, miningAmount); limitedShards.forEach(shard => { ['mousedown', 'mouseup', 'click'].forEach(type => { const event = new MouseEvent(type, { bubbles: true, cancelable: true, view: window }); shard.dispatchEvent(event); }); }); console.log(`✅ ${limitedShards.length} shard diklik!`); }, miningInterval); } function stopMiningLoop() { clearInterval(intervalId); intervalId = null; } button.addEventListener('click', () => { isMining = !isMining; if (isMining) { button.textContent = '🛑 STOP MINING'; http://button.style.background = 'linear-gradient(135deg, #00b894, #55efc4)'; startMiningLoop(); } else { button.textContent = '🔁 AUTO MINING ON'; http://button.style.background = 'linear-gradient(135deg, #6c5ce7, #00cec9)'; stopMiningLoop(); } }); })();
+5
Mentioned
Share To

Timeline

HotFlash

APP

X

Telegram

Facebook

Reddit

CopyLink

Hot Reads