Minefun.io - Zero Cooldown (Egg & Spin)

Xóa bỏ thời gian chờ 20 phút khi mở trứng secret và quay vòng quay.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(У мене вже є менеджер скриптів, дайте мені встановити його!)

Advertisement:

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

Advertisement:

// ==UserScript==
// @name         Minefun.io - Zero Cooldown (Egg & Spin)
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Xóa bỏ thời gian chờ 20 phút khi mở trứng secret và quay vòng quay.
// @author       Gemini
// @match        *://*.minefun.io/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    console.log("🚀 [Minefun.io Bypass] Script xóa thời gian chờ đã được kích hoạt!");

    // 1. Ghi đè hàm setTimeout để chặn các bộ đếm ngược dài (ví dụ 20 phút = 1200000ms)
    const originalSetTimeout = window.setTimeout;
    window.setTimeout = function(func, delay) {
        // Nếu bộ đếm lớn hơn 10 giây (10000ms), tự động ép về 0 giây (thực thi ngay lập tức)
        if (delay > 10000) {
            console.log(`[Bypass] Đã chặn một bộ đếm ${delay}ms, ép về 0!`);
            return originalSetTimeout(func, 0);
        }
        return originalSetTimeout(func, delay);
    };

    // 2. Vòng lặp liên tục để mở khóa các nút bấm bị vô hiệu hóa do đang cooldown
    function unlockButtons() {
        // Tìm kiếm các nút đang bị mờ (disabled) hoặc có class liên quan đến khóa/cooldown
        let lockedElements = document.querySelectorAll('button:disabled, .cooldown, .locked, .disabled');
        
        lockedElements.forEach(el => {
            // Mở khóa nút bấm
            el.disabled = false;
            
            // Xóa các class CSS làm mờ nút (nếu game có sử dụng)
            el.classList.remove('disabled', 'locked', 'cooldown');
            
            // Đổi text để bạn biết script đã can thiệp thành công
            let inner = el.innerText.toLowerCase();
            if (inner.includes(':') || inner.includes('wait') || inner.includes('chờ')) {
                el.innerText = "Mở Ngay (Đã Fix)";
                el.style.backgroundColor = "#4CAF50"; // Đổi màu xanh lá cho dễ nhận diện
                el.style.color = "white";
                el.style.cursor = "pointer";
            }
        });
    }

    // Chạy bộ quét và mở khóa mỗi 0.5 giây (500ms) để đảm bảo nút luôn sẵn sàng
    setInterval(unlockButtons, 500);

})();