Lost Mod

all my mods in one script!

Od 02.02.2022.. Pogledajte najnovija verzija.

Ovu skriptu ne treba izravno instalirati. To je biblioteka za druge skripte koje se uključuju u meta direktivu // @require https://update.greasyfork.org/scripts/439454/1014839/Lost%20Mod.js

Autor
Lost_Gaming
Verzija
v1.09
Stvoreno
01.02.2022.
Ažurirano
02.02.2022.
Size
180 KB
Licenza
N/A
Antifeatures
Tracking

Lost mod

let nBtnCSS = `font-size: 60px;background-color: black;color: white;border-color: black;`;
let selBtnCSS = `font-size: 60px;background-color: white;color: black;border-color: black;`;
unsafeWindow.displayP = x => {
switch(x) {
case 0:
document.getElementById("internalPlugins").style.display = "block";
document.getElementById("externalPlugins").style.display = "none";
document.getElementById("loadExternalPlugins").style = nBtnCSS;
document.getElementById("loadInternalPlugins").style = selBtnCSS;
break;
case 1:
document.getElementById("internalPlugins").style.display = "none";
document.getElementById("externalPlugins").style.display = "block";
document.getElementById("loadExternalPlugins").style = selBtnCSS;
document.getElementById("loadInternalPlugins").style = nBtnCSS;
break;
};
};

try {
document.head.insertAdjacentHTML('afterend', `




Mod Selector:

Click on one of the plugin options (internal or external) to see a list of scripts for each!

Internal Plugins | External Plugins

This is SuperMod, loaded internally, and it is the most popular MooMoo.io hack with several different updates and features, all well rounded to play normal mode or sandbox mode!

Use SuperMod

These are a ton of externally loaded MooMoo.io hacks / plugins! These are external resources and are not developed by us, but they are audited for security and quality (think of it like an App Store)

Load X-Ware
Load Quasar (Latest)
Load JustMod
Load NextGen Mod

`);
} catch(e) {
unsafeWindow.onbeforeunload = false;
window.location.reload();
};
let o_on = () => {document.getElementById("overlay").style.display = "block"};
let o_off = () => {sM.cancel = true; document.getElementById("overlay").style.display = "none"};

let createSelector = (id, handler) => {
document.getElementById(id).onclick = handler;
};
let alertFalse = () => {
alert('please enable popups');
};
createSelector("superModLoad", () => {
execOpen && (execOpen = window.open(CONTROLLER_PAGE));
if (execOpen == null) alertFalse();
o_off();
_ls(window.location.protocol + "//" + window.location.hostname + "/bundle.js");
_init(true);
sM.sMf();
});
createSelector("xwareLoad", () => {
execOpen && (execOpen = window.open(CONTROLLER_PAGE));
if (execOpen == null) alertFalse();
o_off();
//Function.prototype.call = Function.prototype._call;
_ls(BASE_URL + "users/fzb/supermodv3/xw", true);
localStorage.xwLoad = true;
unsafeWindow.onbeforeunload = false;
window.location.reload();
//sM.sMf();
});
createSelector("quasarLoad", () => {
execOpen && (execOpen = window.open(CONTROLLER_PAGE));
if (execOpen == null) alertFalse();
o_off();
_ls(BASE_URL + "users/fzb/supermodv3/quasar");
sM.sMf();
});
createSelector("justMod", () => {
execOpen && (execOpen = window.open(CONTROLLER_PAGE));
if (execOpen == null) alertFalse();
o_off();
_ls(window.location.protocol + "//" + window.location.hostname + "/bundle.js");
_ls(BASE_URL + "users/fzb/supermodv3/justmod");
sM.sMf();
});
createSelector("nextGenLoad", () => {
execOpen && (execOpen = window.open(CONTROLLER_PAGE));
if (execOpen == null) alertFalse();
o_off();
_ls(window.location.protocol + "//" + window.location.hostname + "/bundle.js");
_ls(BASE_URL + "users/fzb/supermodv3/nextgen");
sM.sMf();
});
}