// ==UserScript== // @name **GOLDEN EGG THEME WITH BUILT IN CROSSHAIR** (Shellshock.io) // @namespace http://tampermonkey.net/ // @version 0.41 // @description Become a KING!! // @author austin_is_cool_23 // @match https://shellshock.io/ // @match https://algebra.best/ // @match https://eggcombat.com/* // @match https://shellshock.io/* // @match https://eggfacts.fun/* // @match https://biologyclass.club/* // @match https://egghead.institute/* // @match https://egg.dance/* // @match https://eggisthenewblack.com/* // @match https://mathfun.rocks/* // @match https://hardboiled.life/* // @match https://overeasy.club/* // @match https://zygote.cafe/* // @match https://mathdrills.info // @match https://eggsarecool.com/* // @match https://deadlyegg.com/* // @match https://mathgames.world/* // @match https://hardshell.life/* // @match https://violentegg.club/* // @match https://yolk.life/* // @match https://softboiled.club/* // @match https://scrambled.world/* // @match https://deathegg.world/* // @match https://violentegg.fun/* // @icon https://st4.depositphotos.com/1000451/30856/i/1600/depositphotos_308568652-stock-photo-golden-egg-with-gold-crown.jpg // @grant none // @lisense MIT // @downloadURL none // ==/UserScript== (function () { "use strict"; window.mod = { loadGui: () => {}, modMenu: { instruction: {}, credit: {}, crosshairSettings: { /* Change the type here to have the type be always set as a default */ type: "None", // None, White Cross, Black Cross, White Circle, Black Circle, White Square, Black Square container: { label: {}, }, }, }, }; window._utils = {}; window._utils.requirelib = async function (url, global) { return new Promise(async function (resolve) { async function getCode() { var xmlHttp = new XMLHttpRequest(); xmlHttp.open("GET", url, false); xmlHttp.send(null); return xmlHttp.responseText; } let code = await getCode(); if (global) { code += 'window["' + global + '"] = ' + global + ";"; } let evaluateCode = new Function(code); evaluateCode(); resolve("done"); }); }; window._utils .requirelib("https://unpkg.com/guify@0.12.0/lib/guify.min.js") .then(() => { window.mod.loadGui(); }); const y = document.createElement("div"); y.id = "crossY"; const z = document.createElement("div"); z.id = "crossZ"; const w = document.createElement("div"); w.id = "crossW"; const x = document.createElement("div"); x.id = "crossX"; document.body.appendChild(y); document.body.appendChild(z); document.body.appendChild(w); document.body.appendChild(x); function updateCrosshair(type) { if (type == "None") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; z.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; w.style.cssText = `width:0.0000000001px;height:1px;background-color:#FFFFFF;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:0.0000000001px;height:1px;background-color:#FFFFFF;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "White Cross") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:5px;height:17px;background-color:Black;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; z.style.cssText = `width:17px;height:5px;background-color:Black;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; w.style.cssText = `width:4px;height:16px;background-color:White;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:16px;height:4px;background-color:White;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "Black Cross") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:5px;height:17px;background-color:White;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; z.style.cssText = `width:17px;height:5px;background-color:White;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; w.style.cssText = `width:4px;height:16px;background-color:Black;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:16px;height:4px;background-color:Black;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "Red Cross") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:5px;height:17px;background-color:Black;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; z.style.cssText = `width:17px;height:5px;background-color:Black;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; w.style.cssText = `width:4px;height:16px;background-color:#ff0000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:16px;height:4px;background-color:#ff0000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "Orange Cross") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:5px;height:17px;background-color:Black;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; z.style.cssText = `width:17px;height:5px;background-color:Black;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; w.style.cssText = `width:4px;height:16px;background-color:#ff9900;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:16px;height:4px;background-color:#ff9900;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "Yellow Cross") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:5px;height:17px;background-color:Black;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; z.style.cssText = `width:17px;height:5px;background-color:Black;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; w.style.cssText = `width:4px;height:16px;background-color:#ffff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:16px;height:4px;background-color:#ffff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "Green Cross") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:5px;height:17px;background-color:Black;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; z.style.cssText = `width:17px;height:5px;background-color:Black;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; w.style.cssText = `width:4px;height:16px;background-color:#00ff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:16px;height:4px;background-color:#00ff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "Blue Cross") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:5px;height:17px;background-color:Black;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; z.style.cssText = `width:17px;height:5px;background-color:Black;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; w.style.cssText = `width:4px;height:16px;background-color:#0000ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:16px;height:4px;background-color:#0000ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "Purple Cross") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:5px;height:17px;background-color:Black;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; z.style.cssText = `width:17px;height:5px;background-color:Black;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; w.style.cssText = `width:4px;height:16px;background-color:#ff00ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:16px;height:4px;background-color:#ff00ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "White Circle") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:9px;height:9px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:100px`; z.style.cssText = `width:8px;height:8px;background-color:#FFFFFF;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:100px`; w.style.cssText = `width:0.0000000001px;height:1px;background-color:#FFFFFF;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:0.0000000001px;height:1px;background-color:#FFFFFF;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "Red Circle") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:9px;height:9px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:100px`; z.style.cssText = `width:8px;height:8px;background-color:#ff0000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:100px`; w.style.cssText = `width:0.0000000001px;height:1px;background-color:#ff0000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:0.0000000001px;height:1px;background-color:#ff0000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "Orange Circle") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:9px;height:9px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:100px`; z.style.cssText = `width:8px;height:8px;background-color:#ff9900;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:100px`; w.style.cssText = `width:0.0000000001px;height:1px;background-color:#ff9900;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:0.0000000001px;height:1px;background-color:#ff9900;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "Yellow Circle") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:9px;height:9px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:100px`; z.style.cssText = `width:8px;height:8px;background-color:#ffff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:100px`; w.style.cssText = `width:0.0000000001px;height:1px;background-color:#ffff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:0.0000000001px;height:1px;background-color:#ffff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "Green Circle") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:9px;height:9px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:100px`; z.style.cssText = `width:8px;height:8px;background-color:#00ff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:100px`; w.style.cssText = `width:0.0000000001px;height:1px;background-color:#00ff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:0.0000000001px;height:1px;background-color:#00ff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "Blue Circle") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:9px;height:9px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:100px`; z.style.cssText = `width:8px;height:8px;background-color:#0000ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:100px`; w.style.cssText = `width:0.0000000001px;height:1px;background-color:#0000ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:0.0000000001px;height:1px;background-color:#0000ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "Purple Circle") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:9px;height:9px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:100px`; z.style.cssText = `width:8px;height:8px;background-color:#ff00ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:100px`; w.style.cssText = `width:0.0000000001px;height:1px;background-color:#ff00ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:0.0000000001px;height:1px;background-color:#ff00ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "Black Circle") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:9px;height:9px;background-color:#FFFFFF;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:100px`; z.style.cssText = `width:8px;height:8px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:100px`; w.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "White Square") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:9px;height:9px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; z.style.cssText = `width:8px;height:8px;background-color:#ffffff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; w.style.cssText = `width:0.0000000001px;height:1px;background-color:#ffffff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:0.0000000001px;height:1px;background-color:#ffffff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "Red Square") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:9px;height:9px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; z.style.cssText = `width:8px;height:8px;background-color:#ff0000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; w.style.cssText = `width:0.0000000001px;height:1px;background-color:#ff0000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:0.0000000001px;height:1px;background-color:#ff0000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "Orange Square") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:9px;height:9px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; z.style.cssText = `width:8px;height:8px;background-color:#ff9900;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; w.style.cssText = `width:0.0000000001px;height:1px;background-color:#ff9900;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:0.0000000001px;height:1px;background-color:#ff9900;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "Yellow Square") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:9px;height:9px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; z.style.cssText = `width:8px;height:8px;background-color:#ffff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; w.style.cssText = `width:0.0000000001px;height:1px;background-color:#ffff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:0.0000000001px;height:1px;background-color:#ffff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "Green Square") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:9px;height:9px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; z.style.cssText = `width:8px;height:8px;background-color:#00ff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; w.style.cssText = `width:0.0000000001px;height:1px;background-color:#00ff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:0.0000000001px;height:1px;background-color:#00ff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "Blue Square") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:9px;height:9px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; z.style.cssText = `width:8px;height:8px;background-color:#0000ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; w.style.cssText = `width:0.0000000001px;height:1px;background-color:#0000ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:0.0000000001px;height:1px;background-color:#0000ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "Purple Square") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:9px;height:9px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; z.style.cssText = `width:8px;height:8px;background-color:#ff00ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; w.style.cssText = `width:0.0000000001px;height:1px;background-color:#ff00ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:0.0000000001px;height:1px;background-color:#ff00ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "Black Square") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:9px;height:9px;background-color:#FFFFFF;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; z.style.cssText = `width:8px;height:8px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; w.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "White Long Width") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:17px;height:5px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; z.style.cssText = `width:16px;height:4px;background-color:#FFFFFF;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; w.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "Red Long Width") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:17px;height:5px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; z.style.cssText = `width:16px;height:4px;background-color:#ff0000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; w.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "Orange Long Width") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:17px;height:5px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; z.style.cssText = `width:16px;height:4px;background-color:#ff9900;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; w.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "Yellow Long Width") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:17px;height:5px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; z.style.cssText = `width:16px;height:4px;background-color:#ffff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; w.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "White Long Width") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:17px;height:5px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; z.style.cssText = `width:16px;height:4px;background-color:#FFFFFF;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; w.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "Green Long Width") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:17px;height:5px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; z.style.cssText = `width:16px;height:4px;background-color:#00ff00;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; w.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "Blue Long Width") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:17px;height:5px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; z.style.cssText = `width:16px;height:4px;background-color:#0000ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; w.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "Purple Long Width") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:17px;height:5px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; z.style.cssText = `width:16px;height:4px;background-color:#ff00ff;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; w.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "Black Long Width") { let y = document.getElementById("crossY"); let z = document.getElementById("crossZ"); let w = document.getElementById("crossW"); let x = document.getElementById("crossX"); y.style.cssText = `width:17px;height:5px;background-color:#FFFFFF;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; z.style.cssText = `width:16px;height:4px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; w.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; x.style.cssText = `width:0.0000000001px;height:1px;background-color:#000000;position:absolute;margin:auto;top:0;right:0;bottom:0;left:0;z-index:200;border-radius:0px`; } if (type == "--- RED ---") { alert( `You can not set this as your crosshair. \nPlease choose a crosshair that does not start with a "---".` ); } if (type == "--- ORANGE ---") { alert( `You can not set this as your crosshair. \nPlease choose a crosshair that does not start with a "---".` ); } if (type == "--- YELLOW ---") { alert( `You can not set this as your crosshair. \nPlease choose a crosshair that does not start with a "---".` ); } if (type == "--- GREEN ---") { alert( `You can not set this as your crosshair. \nPlease choose a crosshair that does not start with a "---".` ); } if (type == "--- BLUE ---") { alert( `You can not set this as your crosshair. \nPlease choose a crosshair that does not start with a "---".` ); } if (type == "--- PURPLE ---") { alert( `You can not set this as your crosshair. \nPlease choose a crosshair that does not start with a "---".` ); } if (type == "--- WHITE ---") { alert( `You can not set this as your crosshair. \nPlease choose a crosshair that does not start with a "---".` ); } if (type == "--- BLACK ---") { alert( `You can not set this as your crosshair. \nPlease choose a crosshair that does not start with a "---".` ); } } window.mod.loadGui = function () { const crosshairGui = new window.guify({ title: "Crosshair Menu (Version 2)", theme: "dark", align: "left", width: 300, barMode: "none", opacity: 0.95, root: document.body, open: true, }); crosshairGui.Register({ type: "folder", label: "Instructions", open: false, }); window.mod.modMenu.instruction = crosshairGui.Register({ type: "text", label: "Credits", folder: "Instructions", }); window.mod.modMenu.instruction.container.innerHTML = `
Well well... It seems you have found out my crosshair mods. *not a hack*
1. Below are the settings for the mod as you can see.
2. Select the settings and color you would like to use, they will appear in the center of the screen.
3. You can not set to anything that start or end with a "---" as they are markers.
4. Take this mod into a game and try it out!
[WARNING] : This has not been publicly allowed or disallowed in Shell League, so dont use it unless permission is granted!
[NOTE] : Do not reproduce, reupload, or take this mod as austiniscool23 and my Clan worked hard on this. If you do please credit me as we worked on this, any modifications will be yours, but the framework will still be ours, due to reason of our amazing developers!.
`; crosshairGui.Register({ type: "folder", label: "Crosshair Settings", open: false, }); crosshairGui.Register({ type: "select", label: "Types", object: window.mod.modMenu.crosshairSettings, property: "type", folder: "Crosshair Settings", options: [ "None", "--- RED ---", "Red Cross", "Red Circle", "Red Square", "Red Long Width", "--- ORANGE ---", "Orange Cross", "Orange Circle", "Orange Square", "Orange Long Width", "--- YELLOW ---", "Yellow Cross", "Yellow Circle", "Yellow Square", "Yellow Long Width", "--- GREEN ---", "Green Cross", "Green Circle", "Green Square", "Green Long Width", "--- BLUE ---", "Blue Cross", "Blue Circle", "Blue Square", "Blue Long Width", "--- PURPLE ---", "Purple Cross", "Purple Circle", "Purple Square", "Purple Long Width", "--- WHITE ---", "White Cross", "White Circle", "White Square", "White Long Width", "--- BLACK ---", "Black Cross", "Black Circle", "Black Square", "Black Long Width", ], onChange: updateCrosshair, }); window.mod.modMenu.credit = crosshairGui.Register({ type: "text", label: "Credits", }); window.mod.modMenu.credit.container.innerHTML = `Made by austiniscool23.
With the help of KNG Clan!
`; let titleTextElm = crosshairGui.panel.panel.childNodes[0]; titleTextElm.style.color = "rgb(255, 196, 0)"; titleTextElm.style.fontWeight = "bold"; }; })(); let css = `#ss_background, #gameDescription, .load_screen, #progress-container { background: url('https://st4.depositphotos.com/1000451/30856/i/1600/depositphotos_308568652-stock-photo-golden-egg-with-gold-crown.jpg') !important; position: absolute !important; background-size: cover !important; background-repeat: no-repeat !important; background-position: center !important; width: 100% !important; height: 100% !important; } div.media-tabs-content.front_panel.roundme_sm { background: url('https://media.istockphoto.com/photos/abstract-gold-background-picture-id524653165?k=20&m=524653165&s=170667a&w=0&h=DeYFDmISZFLn_SKf6AMayUE3iqI6dinWeETuH7ik7To=')!important; background-size: cover !important;} #equip_sidebox { border: var(--ss-space-sm) solid black} .front_panel, #equip_sidebox { background: url('https://media.istockphoto.com/photos/abstract-gold-background-picture-id524653165?k=20&m=524653165&s=170667a&w=0&h=DeYFDmISZFLn_SKf6AMayUE3iqI6dinWeETuH7ik7To='); background-size: cover !important;} .front_panel { border: var(--ss-space-sm) solid black; } .ss_field, .ss_select { background: white; border: 1px solid black; color: black;} .btn_blue, .btn_green, .ss_bigtab, .ss_bigtab.selected, .button_blue { background: gold !important; border: 0.2em solid black !important; color: black !important; } .btn_yolk, .btn_red, .btn_blue1 { background: black !important; border: 0.2em solid black !important; color: gold !important; } .morestuff { background-color: black !important; border: 0.2em solid black !important; } .ss_bigtab:hover { color: black !important; } #stat_item { background: url('https://media.istockphoto.com/photos/abstract-gold-background-picture-id524653165?k=20&m=524653165&s=170667a&w=0&h=DeYFDmISZFLn_SKf6AMayUE3iqI6dinWeETuH7ik7To='); } #stat_item h4, .stat_stat { color: black; } .news_item:nth-child(odd), .stream_item:nth-child(odd) { background: url('https://cdn.discordapp.com/attachments/811268272418062359/908381929164910642/2Q.png'); } .news_item:nth-child(even), .stream_item:nth-child(even) { background: url('https://cdn.discordapp.com/attachments/811268272418062359/908381929164910642/2Q.png'); } .stream_item:hover, .news_item.clickme:hover { background: gold !important; } #weapon_select:nth-child(1n+0) .weapon_img { background: url('https://media.istockphoto.com/photos/abstract-gold-background-picture-id524653165?k=20&m=524653165&s=170667a&w=0&h=DeYFDmISZFLn_SKf6AMayUE3iqI6dinWeETuH7ik7To=')!important; border: 3px solid black!important; } #popupTipDay #weapon_select:nth-child(1n+0) .weapon_img { background: url('https://media.istockphoto.com/photos/abstract-gold-background-picture-id524653165?k=20&m=524653165&s=170667a&w=0&h=DeYFDmISZFLn_SKf6AMayUE3iqI6dinWeETuH7ik7To=')!important; border: 3px solid black!important; } h3, h1, h2, h4, h5, h6, .front_panel h3, #equip.equipped_slots h3, #item_grid h3 { color: black !important; } label, .label { color: black !important; } .egg_count { color: black; } .account_eggs { background: url('https://media.istockphoto.com/photos/abstract-gold-background-picture-id524653165?k=20&m=524653165&s=170667a&w=0&h=DeYFDmISZFLn_SKf6AMayUE3iqI6dinWeETuH7ik7To='); } #equip_equippedslots .equip_item, #equip_itemtype .selected, #equip_equippedslots .equip_item:hover { background: url('https://media.istockphoto.com/photos/abstract-gold-background-picture-id524653165?k=20&m=524653165&s=170667a&w=0&h=DeYFDmISZFLn_SKf6AMayUE3iqI6dinWeETuH7ik7To='); background-color: url('https://media.istockphoto.com/photos/abstract-gold-background-picture-id524653165?k=20&m=524653165&s=170667a&w=0&h=DeYFDmISZFLn_SKf6AMayUE3iqI6dinWeETuH7ik7To='); border: 0.33em solid black; } #equip_grid .store_item, #equip_grid .highlight, #equip_grid .store_item:hover { background: url('https://media.istockphoto.com/photos/abstract-gold-background-picture-id524653165?k=20&m=524653165&s=170667a&w=0&h=DeYFDmISZFLn_SKf6AMayUE3iqI6dinWeETuH7ik7To='); border: 0.33em solid black; color: black; } .popup_lg, .popup_sm { background: url('https://wallpaperaccess.com/full/3375439.jpg'); border: 0.33em solid black; } .box_blue2 { background-color: transparent; } .pause-bg { background: rgba(0,0,0,0.3) !important; } #maskmiddle { background: url('../img/scope.png') center center no-repeat !important; background-size: contain !important; width: 100vh !important; height: 100vh !important; } .crosshair.normal { background: gold; } .crosshair { border: 0.05em solid black; } .crosshair.powerfull { background: gold; } #createPrivateGame .roundme_sm, #settingsPopup .roundme_sm, #pickServerPopup .roundme_sm, #adBlockerVideo .roundme_sm { background: transparent !important }` document.head.insertAdjacentHTML("beforeend", ``) (function () { const addScript = () => { document.head.innerHTML += `` } document.body ? addScript() : document.addEventListener("DOMContentLoaded", e => addScript()); })();