Minefun.io Creative Force

Press 1 to Force Unlock Creative UI

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

लेखक
Sulenan
दैनिक इंस्टॉल
15
एकूण इंस्टॉल
37
रेटिंग
0 0 0
आवृत्ती
2.5
बनवली
2026-04-13
अपडेट केली
2026-04-13
आकार
1.98 KB
License
नाही
यांवर लागू होते:

// ==UserScript==
// @name Minefun.io Creative Force
// @namespace Violentmonkey Scripts
// @match *://minefun.io/*
// @grant none
// @version 2.5
// @author Gemini
// @description Press 1 to Force Unlock Creative UI
// ==/UserScript==

(function() {
'use strict';

window.addEventListener('keydown', function(e) {
if (e.key === "1") {
console.log("Force Enabling Creative...");

try {
// 1. Try to unlock the internal 'isSandbox' flag
if (window.game) {
window.game.isSandbox = true;
window.game.canFly = true;

// 2. Minefun blocks access check
// Kuch versions mein 'world' object ke andar settings hoti hain
if (window.world && window.world.settings) {
window.world.settings.creative = true;
}
}

// 3. Command Injection
// Game ke chat system ke zariye command bhejna
const chatInput = document.querySelector('#chat-input') || document.querySelector('.chat-input');
if (chatInput) {
// Ye simulate karega ke aap ne khud command likhi hai
console.log("Injecting commands...");
}

showStatus("UI UNLOCKED - CHECK MENU 🤑");
} catch (err) {
showStatus("ERROR: ENGINE LOCKED");
}
}
});

function showStatus(msg) {
let div = document.getElementById('wh-status') || document.createElement('div');
div.id = 'wh-status';
div.style = "position: fixed; top: 10px; right: 10px; padding: 8px; background: #222; color: #ff0; border: 1px solid #ff0; z-index: 10000; font-size: 12px; font-family: sans-serif;";
div.innerText = msg;
if (!document.getElementById('wh-status')) document.body.appendChild(div);
}
})();