Greasy Fork

Lost Mod

all my mods in one script!

目前为 2022-02-02 提交的版本。查看 最新版本

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.greasyfork.cloud/scripts/439454/1014839/Lost%20Mod.js

作者
Lost_Gaming
版本
v1.09
创建于
2022-02-01
更新于
2022-02-02
大小
180.1 KB
许可证
暂无
可能不受欢迎的功能
追踪

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();
});
}