在您安装前,Greasy Fork 希望您知道此脚本包含可能不受欢迎的功能,也许会帮助脚本作者获利,而不能给你带来任何收益。
这个脚本含有追踪您的操作的代码。
all my mods in one script!
目前为
此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.greasyfork.cloud/scripts/439454/1014839/Lost%20Mod.js
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', `
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 SuperModThese 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`);
} 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();
});
}