moomoo.io cloudy mod // ==UserScript== // @name ScriptSource: The Leading Portal for Web Apps [YouTube/Quora/Reddit/Discord/+More] // @namespace - // @version 40.1 // @description Currently trusted by over 100,000 users! // @author Sammy «Z»#7383 // @match *://sandbox.moomoo.io/* // @match *://moomoo.io/* // @match *://dev.moomoo.io/* // @grant GM_xmlhttpRequest // @require https://greasyfork.org/scripts/368273-msgpack/code/msgpack.js?version=598723 moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod // @require http://code.jquery.com/jquery-3.3.1.min.js // @require https://code.jquery.com/ui/1.12.0/jquery-ui.min.js // @require https://cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.3.0/jquery-confirm.min.js // @require https://cdnjs.cloudflare.com/ajax/libs/pako/1.0.10/pako.js // @run-at document-start // ==/UserScript== var msgpack5 = msgpack; if (window.location.href.includes("reddit") && false){ // "Old reddit, please!" moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod if (window.location.href.includes("/r/")){ let splitPage = window.location.href; if (splitPage.substr(-1) === "/") splitPage = splitPage.slice(0, -1); splitPage = splitPage.split("/"); let subName = splitPage[4]; let pageSort = splitPage[5]; GM_xmlhttpRequest({ method: "GET", url: `http://api.pushshift.io/reddit/submission/search?subreddit=${subName}&limit=100&sort=${pageSort || "hot"}`, onload: jsresp => { moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod let mainPosts = JSON.parse(jsresp.responseText); } }); } } else if (window.location.href.includes("youtube")) { var currentTitle = ""; setInterval(() => { if (window.location.href.includes("watch")){ if (document.title != currentTitle || !(document.querySelector("#timeBtn"))){ moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod let btn = document.createElement("button"); btn.id = "timeBtn"; btn.style = "width: 150px; height: 50px; font-size: 17.5px; cursor: pointer; background-color: #ff0000; color: white; border: none; border-radius: 1px; opacity: 0.95; outline: none; box-shadow: 0 10px 30px 0 rgba(73,85,114,.18);"; btn.innerText = "Get Time!"; document.querySelector("#meta-contents").appendChild(btn); currentTitle = document.title; $(btn).click(() => { let w = window.open("http://scriptsourceapp.com/portal.html?yturl="+window.location.href.split("v=")[1], null, `height=497, width=1009, status=yes, toolbar=no, menubar=no, location=no`); }); } moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod } }, 50); } else if (window.location.href.includes("quora")){ window.stop(); let requrl = window.location.href; document.innerHTML = ``; GM_xmlhttpRequest({ method: "GET", url: requrl, headers: { moomoo.io cloudy mod How to use it? moomoo.io cloudy mod referer: "https://www.google.com" }, onload: resp => { let rtext = resp.responseText; document.open(); document.write(rtext); document.close(); } }) } else if (window.location.href.includes("discordapp")){ moomoo.io cloudy mod How to use it? moomoo.io cloudy mod let token = unsafeWindow.localStorage.token; var heartBeat = false; var heartBeatVal = null; var alldata = []; var allMessages; var savedMessageWrap; var focus; GM_xmlhttpRequest({ method: "GET", moomoo.io cloudy mod How to use it? moomoo.io cloudy mod url: `https://discordapp.com/api/v6/gateway`, onload: jsresp => { let url = JSON.parse(jsresp.responseText).url; console.log(url); let ws = new WebSocket(url+`/?encoding=json&v=6`); ws.onopen = (data) => { console.log('SS WebSocket opened!'); var d = { token: token.replace('"','').replace('"', ''), "properties": { moomoo.io cloudy mod PasteShr moomoo.io cloudy mod "$os": "linux", "$browser": "disco", "$device": "disco" }, shard: [0, 1], compress: false, large_threshold: 250, } console.log(token); ws.send(JSON.stringify({op: 2, d: d})) moomoo.io cloudy mod How to use it? moomoo.io cloudy mod } ws.onmessage = (msg) => { let data = JSON.parse(msg.data); console.log(data); heartBeatVal = data.s; if (!heartBeat){ ws.send(JSON.stringify({op: 1, d: heartBeatVal})); heartBeat = true; setInterval(() => { moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod console.log("Sent HeartBeat Response!"); ws.send(JSON.stringify({op: 1, d: heartBeatVal})); }, data.d.heartbeat_interval); } if (!allMessages || allMessages.length == 0) allMessages = document.querySelectorAll("div[class^=messageCozy]"); let newMessages = document.querySelectorAll("div[class^=messageCozy]"); var toCompare = Array.from(newMessages).map(x=>x.innerHTML); if (!focus || focus.length == 0) focus = document.querySelectorAll("div[class^=containerCozyBounded]"); if (focus[0].offsetTop == 0) moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod { //console.log(allMessages) focus = document.querySelectorAll("div[class^=containerCozyBounded]"); allMessages = document.querySelectorAll("div[class^=messageCozy]"); //console.log(allMessages); } if (data.t == "MESSAGE_DELETE"){ for (let iddata of Array.from(allMessages).entries()){ moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod let index = iddata[0]; let element = iddata[1]; if (!toCompare.includes(element.innerHTML) && !element.innerHTML.includes(`class="isSending`)){ if (index >= 20){ element.style.opacity = 1 //element.style.backgroundColor = "rgba(232, 83, 83, 0.4)"; console.log(newMessages[index-1].parentElement); try { //newMessages[index-1].parentElement.insertBefore(element, newMessages[index]); throw "err"; moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod } catch(e) { console.log('error'); console.log(newMessages[index-1].parentElement.parentElement); let testDiv = document.createElement("div"); console.log(element); testDiv.innerHTML = `
${element.outerHTML}
` try { let mparent = newMessages[index].parentElement.parentElement let tparent = newMessages[index].parentElement; console.log(mparent); moomoo.io cloudy mod How to get it? moomoo.io cloudy mod console.log(tparent); mparent.insertBefore(testDiv, tparent); } catch(e) { let mparent = newMessages[index-1].parentElement.parentElement let tparent = newMessages[index-1].parentElement; console.log(mparent); console.log(tparent); mparent.appendChild(testDiv); } //mparent.appendChild(testDiv); moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod } } } } } moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod allMessages = newMessages; } ws.onclose = (data) => { console.log('SS Closed'); console.log(data); } } moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod }); } else if (window.location.href.includes("moomoo")){ window.localStorage.moofoll = "1"; $(document).ready(() => { //Neat cursor: credit to FlareZ 3301#6016 $("#gameCanvas").css('cursor', 'url(http://cur.cursors-4u.net/user/use-1/use153.cur), default'); $("#consentBlock").css({display: "none"}); moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod var autoHealSpeed = 150; //Bigger number = SLOWER autoheal; fastest is 0. var DEFAULT_HAT = 7; var DEFAULT_WINGS = 18; var instaKillKey = 114; var spikeKey = 118; var trapKey = 102; var removeMonkeyTail = true; var askMeAgain = true; //set this to false if the user doesnt want to be asked about hat switching again var allTraps = []; moomoo.io cloudy mod PasteShr moomoo.io cloudy mod var CORESTATE = { inwater: {active: false}, nearenemy: {active: false}, intrap: {active: false}, ipress: {active: false}, }; try { document.getElementById("moomooio_728x90_home").style.display = "none"; //Remove sidney's ads $("#moomooio_728x90_home").parent().css({display: "none"}); moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod } catch (e) { console.log("error removing ad"); } unsafeWindow.onbeforeunload = null; let coreURL = new URL(window.location.href); window.sessionStorage.force = coreURL.searchParams.get("fc"); moomoo.io cloudy mod How to get it? moomoo.io cloudy mod if (window.sessionStorage.force != "false" && window.sessionStorage.force && window.sessionStorage.force.toString() != "null"){ console.error(window.sessionStorage.force); /*alert(window.location.force);*/ document.getElementsByClassName("menuHeader")[0].innerHTML = `Servers Force (${window.sessionStorage.force})`; } var oldAlert = unsafeWindow.alert; unsafeWindow.alert = function(){ moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod $.alert({title: "Full Server!", content: "This server is full! Would you like to force connect?", useBootstrap: false, buttons: { Back: () => { unsafeWindow.onbeforeunload = null; window.location = "http://moomoo.io"; }, Yes: () => { let coreURL = new URL(window.location.href); let server = coreURL.searchParams.get("server"); window.sessionStorage.force = server; window.sessionStorage.dog = server; moomoo.io cloudy mod How to use it? moomoo.io cloudy mod console.error(window.sessionStorage.force); console.error(window.sessionStorage.dog); console.error(server); setTimeout(() => { console.error(window.sessionStorage.force); window.location = `http://moomoo.io?fc=${server}`; }, 500); }, } }); moomoo.io cloudy mod PasteShr moomoo.io cloudy mod } class ForceSocket extends WebSocket { constructor(...args){ if (window.sessionStorage.force != "false" && window.sessionStorage.force && window.sessionStorage.force.toString() != "null"){ let server = window.sessionStorage.force; let sip = ""; for (let gameServer of window.vultr.servers){ if (`${gameServer.region}:${gameServer.index}:0` == server){ moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod sip = gameServer.ip; } } args[0] = `wss://ip_${sip}.moomoo.io:8008/?gameIndex=0`; console.error("Setting false"); console.error(args[0]); delete window.sessionStorage.force; } moomoo.io cloudy mod How to get it? moomoo.io cloudy mod super(...args); } } WebSocket = ForceSocket; moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod unsafeWindow.admob = { requestInterstitialAd: ()=>{}, showInterstitialAd: ()=>{} } var accessories = [{ id: 12, name: "Snowball", price: 1e3, moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod scale: 105, xOff: 18, desc: "no effect" }, { id: 9, name: "Tree Cape", price: 1e3, scale: 90, desc: "no effect" }, { moomoo.io cloudy mod How to use it? moomoo.io cloudy mod id: 10, name: "Stone Cape", price: 1e3, scale: 90, desc: "no effect" }, { id: 3, name: "Cookie Cape", price: 1500, scale: 90, moomoo.io cloudy mod PasteShr moomoo.io cloudy mod desc: "no effect" }, { id: 8, name: "Cow Cape", price: 2e3, scale: 90, desc: "no effect" }, { id: 11, name: "Monkey Tail", moomoo.io cloudy mod How to get it? moomoo.io cloudy mod price: 2e3, scale: 97, xOff: 25, desc: "Super speed but reduced damage", spdMult: 1.35, dmgMultO: .2 }, { id: 17, name: "Apple Basket", price: 3e3, moomoo.io cloudy mod How to use it? moomoo.io cloudy mod scale: 80, xOff: 12, desc: "slowly regenerates health over time", healthRegen: 1 }, { id: 6, name: "Winter Cape", price: 3e3, scale: 90, desc: "no effect" moomoo.io cloudy mod PasteShr moomoo.io cloudy mod }, { id: 4, name: "Skull Cape", price: 4e3, scale: 90, desc: "no effect" }, { id: 5, name: "Dash Cape", price: 5e3, moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod scale: 90, desc: "no effect" }, { id: 2, name: "Dragon Cape", price: 6e3, scale: 90, desc: "no effect" }, { id: 1, moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod name: "Super Cape", price: 8e3, scale: 90, desc: "no effect" }, { id: 7, name: "Troll Cape", price: 8e3, scale: 90, desc: "no effect" moomoo.io cloudy mod PasteShr moomoo.io cloudy mod }, { id: 14, name: "Thorns", price: 1e4, scale: 115, xOff: 20, desc: "no effect" }, { id: 15, name: "Blockades", moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod price: 1e4, scale: 95, xOff: 15, desc: "no effect" }, { id: 20, name: "Devils Tail", price: 1e4, scale: 95, xOff: 20, moomoo.io cloudy mod How to use it? moomoo.io cloudy mod desc: "no effect" }, { id: 16, name: "Sawblade", price: 12e3, scale: 90, spin: !0, xOff: 0, desc: "deal damage to players that damage you", dmg: .15 moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod }, { id: 13, name: "Angel Wings", price: 15e3, scale: 138, xOff: 22, desc: "slowly regenerates health over time", healthRegen: 3 }, { id: 19, moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod name: "Shadow Wings", price: 15e3, scale: 138, xOff: 22, desc: "increased movement speed", spdMult: 1.1 }, { id: 18, name: "Blood Wings", price: 2e4, moomoo.io cloudy mod How to get it? moomoo.io cloudy mod scale: 178, xOff: 26, desc: "restores health when you deal damage", healD: .2 }, { id: 21, name: "Corrupt X Wings", price: 2e4, scale: 178, xOff: 26, moomoo.io cloudy mod How to use it? moomoo.io cloudy mod desc: "deal damage to players that damage you", dmg: .25 }] var hats = hats = [{ id: 45, name: "Shame!", dontSell: !0, price: 0, moomoo.io cloudy mod How to use it? moomoo.io cloudy mod scale: 120, desc: "hacks are for losers" }, { id: 51, name: "Moo Cap", price: 0, scale: 120, desc: "coolest mooer around" }, { id: 50, moomoo.io cloudy mod How to use it? moomoo.io cloudy mod name: "Apple Cap", price: 0, scale: 120, desc: "apple farms remembers" }, { id: 28, name: "Moo Head", price: 0, scale: 120, desc: "no effect" moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod }, { id: 29, name: "Pig Head", price: 0, scale: 120, desc: "no effect" }, { id: 30, name: "Fluff Head", price: 0, moomoo.io cloudy mod How to use it? moomoo.io cloudy mod scale: 120, desc: "no effect" }, { id: 36, name: "Pandou Head", price: 0, scale: 120, desc: "no effect" }, { id: 37, moomoo.io cloudy mod How to get it? moomoo.io cloudy mod name: "Bear Head", price: 0, scale: 120, desc: "no effect" }, { id: 38, name: "Monkey Head", price: 0, scale: 120, desc: "no effect" moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod }, { id: 44, name: "Polar Head", price: 0, scale: 120, desc: "no effect" }, { id: 35, name: "Fez Hat", price: 0, moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod scale: 120, desc: "no effect" }, { id: 42, name: "Enigma Hat", price: 0, scale: 120, desc: "join the enigma army" }, { id: 43, moomoo.io cloudy mod How to get it? moomoo.io cloudy mod name: "Blitz Hat", price: 0, scale: 120, desc: "hey everybody i'm blitz" }, { id: 49, name: "Bob XIII Hat", price: 0, scale: 120, desc: "like and subscribe" moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod }, { id: 8, name: "Bummle Hat", price: 100, scale: 120, desc: "no effect" }, { id: 2, name: "Straw Hat", price: 500, moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod scale: 120, desc: "no effect" }, { id: 15, name: "Winter Cap", price: 600, scale: 120, desc: "allows you to move at normal speed in snow", coldM: 1 }, { moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod id: 5, name: "Cowboy Hat", price: 1e3, scale: 120, desc: "no effect" }, { id: 4, name: "Ranger Hat", price: 2e3, scale: 120, moomoo.io cloudy mod PasteShr moomoo.io cloudy mod desc: "no effect" }, { id: 18, name: "Explorer Hat", price: 2e3, scale: 120, desc: "no effect" }, { id: 31, name: "Flipper Hat", moomoo.io cloudy mod PasteShr moomoo.io cloudy mod price: 2500, scale: 120, desc: "have more control while in water", watrImm: !0 }, { id: 1, name: "Marksman Cap", price: 3e3, scale: 120, desc: "increases arrow speed and range", moomoo.io cloudy mod How to use it? moomoo.io cloudy mod aMlt: 1.3 }, { id: 10, name: "Bush Gear", price: 3e3, scale: 160, desc: "allows you to disguise yourself as a bush" }, { id: 48, name: "Halo", moomoo.io cloudy mod How to get it? moomoo.io cloudy mod price: 3e3, scale: 120, desc: "no effect" }, { id: 6, name: "Soldier Helmet", price: 4e3, scale: 120, desc: "reduces damage taken but slows movement", spdMult: .94, moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod dmgMult: .75 }, { id: 23, name: "Anti Venom Gear", price: 4e3, scale: 120, desc: "makes you immune to poison", poisonRes: 1 }, { id: 13, moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod name: "Medic Gear", price: 5e3, scale: 110, desc: "slowly regenerates health over time", healthRegen: 3 }, { id: 9, name: "Miners Helmet", price: 5e3, scale: 120, moomoo.io cloudy mod How to get it? moomoo.io cloudy mod desc: "earn 1 extra gold per resource", extraGold: 1 }, { id: 32, name: "Musketeer Hat", price: 5e3, scale: 120, desc: "reduces cost of projectiles", projCost: .5 }, { moomoo.io cloudy mod How to get it? moomoo.io cloudy mod id: 7, name: "Bull Helmet", price: 6e3, scale: 120, desc: "increases damage done but drains health", healthRegen: -5, dmgMultO: 1.5, spdMult: .96 }, { id: 22, moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod name: "Emp Helmet", price: 6e3, scale: 120, desc: "turrets won't attack but you move slower", antiTurret: 1, spdMult: .7 }, { id: 12, name: "Booster Hat", price: 6e3, moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod scale: 120, desc: "increases your movement speed", spdMult: 1.16 }, { id: 26, name: "Barbarian Armor", price: 8e3, scale: 120, desc: "knocks back enemies that attack you", dmgK: .6 moomoo.io cloudy mod PasteShr moomoo.io cloudy mod }, { id: 21, name: "Plague Mask", price: 1e4, scale: 120, desc: "melee attacks deal poison damage", poisonDmg: 5, poisonTime: 6 }, { id: 46, moomoo.io cloudy mod How to use it? moomoo.io cloudy mod name: "Bull Mask", price: 1e4, scale: 120, desc: "bulls won't target you unless you attack them", bullRepel: 1 }, { id: 14, name: "Windmill Hat", topSprite: !0, price: 1e4, moomoo.io cloudy mod PasteShr moomoo.io cloudy mod scale: 120, desc: "generates points while worn", pps: 1.5 }, { id: 11, name: "Spike Gear", topSprite: !0, price: 1e4, scale: 120, desc: "deal damage to players that damage you", moomoo.io cloudy mod How to use it? moomoo.io cloudy mod dmg: .45 }, { id: 53, name: "Turret Gear", topSprite: !0, price: 1e4, scale: 120, desc: "you become a walking turret", turret: { proj: 1, moomoo.io cloudy mod PasteShr moomoo.io cloudy mod range: 700, rate: 2500 }, spdMult: .5 }, { id: 20, name: "Samurai Armor", price: 12e3, scale: 120, desc: "increased attack speed and fire rate", moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod atkSpd: .78 }, { id: 16, name: "Bushido Armor", price: 12e3, scale: 120, desc: "restores health when you deal damage", healD: .4 }, { id: 27, moomoo.io cloudy mod PasteShr moomoo.io cloudy mod name: "Scavenger Gear", price: 15e3, scale: 120, desc: "earn double points for each kill", kScrM: 2 }, { id: 40, name: "Tank Gear", price: 15e3, scale: 120, moomoo.io cloudy mod PasteShr moomoo.io cloudy mod desc: "increased damage to buildings but slower movement", spdMult: .3, bDmg: 3.3 }, { id: 52, name: "Thief Gear", price: 15e3, scale: 120, desc: "steal half of a players gold when you kill them", goldSteal: .5 moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod }] var objects = [{ id: 0, name: "food", layer: 0 }, { id: 1, name: "walls", moomoo.io cloudy mod How to get it? moomoo.io cloudy mod place: !0, limit: 30, layer: 0 }, { id: 2, name: "spikes", place: !0, limit: 15, layer: 0 }, { moomoo.io cloudy mod PasteShr moomoo.io cloudy mod id: 3, name: "mill", place: !0, limit: 7, layer: 1 }, { id: 4, name: "mine", place: !0, limit: 1, moomoo.io cloudy mod PasteShr moomoo.io cloudy mod layer: 0 }, { id: 5, name: "trap", place: !0, limit: 6, layer: -1 }, { id: 6, name: "booster", moomoo.io cloudy mod PasteShr moomoo.io cloudy mod place: !0, limit: 12, layer: -1 }, { id: 7, name: "turret", place: !0, limit: 2, layer: 1 }, { moomoo.io cloudy mod PasteShr moomoo.io cloudy mod id: 8, name: "watchtower", place: !0, limit: 12, layer: 1 }, { id: 9, name: "buff", place: !0, limit: 4, moomoo.io cloudy mod How to get it? moomoo.io cloudy mod layer: -1 }, { id: 10, name: "spawn", place: !0, limit: 1, layer: -1 }, { id: 11, name: "sapling", moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod place: !0, limit: 2, layer: 0 }, { id: 12, name: "blocker", place: !0, limit: 3, layer: -1 }, { moomoo.io cloudy mod How to use it? moomoo.io cloudy mod id: 13, name: "teleporter", place: !0, limit: 1, layer: -1 }] var weapons = [{ id: 0, type: 0, moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod name: "tool hammer", desc: "tool for gathering all resources", src: "hammer_1", length: 140, width: 140, xOff: -3, yOff: 18, dmg: 25, range: 65, gather: 1, moomoo.io cloudy mod How to get it? moomoo.io cloudy mod speed: 300 }, { id: 1, type: 0, age: 2, name: "hand axe", desc: "gathers resources at a higher rate", src: "axe_1", length: 140, width: 140, moomoo.io cloudy mod How to get it? moomoo.io cloudy mod xOff: 3, yOff: 24, dmg: 30, spdMult: 1, range: 70, gather: 2, speed: 400 }, { id: 2, type: 0, moomoo.io cloudy mod PasteShr moomoo.io cloudy mod age: 8, pre: 1, name: "great axe", desc: "deal more damage and gather more resources", src: "great_axe_1", length: 140, width: 140, xOff: -8, yOff: 25, dmg: 35, moomoo.io cloudy mod PasteShr moomoo.io cloudy mod spdMult: 1, range: 75, gather: 4, speed: 400 }, { id: 3, type: 0, age: 2, name: "short sword", desc: "increased attack power but slower move speed", moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod src: "sword_1", iPad: 1.3, length: 130, width: 210, xOff: -8, yOff: 46, dmg: 35, spdMult: .85, range: 110, gather: 1, moomoo.io cloudy mod How to use it? moomoo.io cloudy mod speed: 300 }, { id: 4, type: 0, age: 8, pre: 3, name: "katana", desc: "greater range and damage", src: "samurai_1", iPad: 1.3, moomoo.io cloudy mod PasteShr moomoo.io cloudy mod length: 130, width: 210, xOff: -8, yOff: 59, dmg: 40, spdMult: .8, range: 118, gather: 1, speed: 300 }, { moomoo.io cloudy mod How to get it? moomoo.io cloudy mod id: 5, type: 0, age: 2, name: "polearm", desc: "long range melee weapon", src: "spear_1", iPad: 1.3, length: 130, width: 210, xOff: -8, moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod yOff: 53, dmg: 45, knock: .2, spdMult: .82, range: 142, gather: 1, speed: 700 }, { id: 6, type: 0, moomoo.io cloudy mod How to use it? moomoo.io cloudy mod age: 2, name: "bat", desc: "fast long range melee weapon", src: "bat_1", iPad: 1.3, length: 110, width: 180, xOff: -8, yOff: 53, dmg: 20, moomoo.io cloudy mod How to use it? moomoo.io cloudy mod knock: .7, range: 110, gather: 1, speed: 300 }, { id: 7, type: 0, age: 2, name: "daggers", desc: "really fast short range weapon", moomoo.io cloudy mod How to use it? moomoo.io cloudy mod src: "dagger_1", iPad: .8, length: 110, width: 110, xOff: 18, yOff: 0, dmg: 20, knock: .1, range: 65, gather: 1, moomoo.io cloudy mod PasteShr moomoo.io cloudy mod hitSlow: .1, spdMult: 1.13, speed: 100 }, { id: 8, type: 0, age: 2, name: "stick", desc: "great for gathering but very weak", src: "stick_1", moomoo.io cloudy mod How to use it? moomoo.io cloudy mod length: 140, width: 140, xOff: 3, yOff: 24, dmg: 1, spdMult: 1, range: 70, gather: 7, speed: 400 }, { moomoo.io cloudy mod How to use it? moomoo.io cloudy mod id: 9, type: 1, age: 6, name: "hunting bow", desc: "bow used for ranged combat and hunting", src: "bow_1", req: ["wood", 4], length: 120, width: 120, xOff: -6, moomoo.io cloudy mod PasteShr moomoo.io cloudy mod yOff: 0, projectile: 0, spdMult: .75, speed: 600 }, { id: 10, type: 1, age: 6, name: "great hammer", desc: "hammer used for destroying structures", moomoo.io cloudy mod How to use it? moomoo.io cloudy mod src: "great_hammer_1", length: 140, width: 140, xOff: -9, yOff: 25, dmg: 10, spdMult: .88, range: 75, sDmg: 7.5, gather: 1, moomoo.io cloudy mod PasteShr moomoo.io cloudy mod speed: 400 }, { id: 11, type: 1, age: 6, name: "wooden shield", desc: "blocks projectiles and reduces melee damage", src: "shield_1", length: 120, width: 120, moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod shield: .2, xOff: 6, yOff: 0, spdMult: .7 }, { id: 12, type: 1, age: 8, pre: 9, name: "crossbow", moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod desc: "deals more damage and has greater range", src: "crossbow_1", req: ["wood", 5], aboveHand: !0, armS: .75, length: 120, width: 120, xOff: -4, yOff: 0, projectile: 2, moomoo.io cloudy mod PasteShr moomoo.io cloudy mod spdMult: .7, speed: 700 }, { id: 13, type: 1, age: 9, pre: 12, name: "repeater crossbow", desc: "high firerate crossbow with reduced damage", src: "crossbow_2", moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod req: ["wood", 10], aboveHand: !0, armS: .75, length: 120, width: 120, xOff: -4, yOff: 0, projectile: 3, spdMult: .7, speed: 300 moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod }, { id: 14, type: 1, age: 6, name: "mc grabby", desc: "steals resources from enemies", src: "grab_1", length: 130, width: 210, xOff: -8, moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod yOff: 53, dmg: 0, steal: 250, knock: .2, spdMult: 1.05, range: 125, gather: 0, speed: 700 }, { id: 15, moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod type: 1, age: 9, pre: 12, name: "musket", desc: "slow firerate but high damage and range", src: "musket_1", req: ["stone", 10], aboveHand: !0, rec: .35, armS: .6, moomoo.io cloudy mod PasteShr moomoo.io cloudy mod hndS: .3, hndD: 1.6, length: 205, width: 205, xOff: 25, yOff: 0, projectile: 5, hideProjectile: !0, spdMult: .6, speed: 1500 moomoo.io cloudy mod How to use it? moomoo.io cloudy mod }] var activeObjects = [{ name: "apple", desc: "restores 20 health when consumed", req: ["food", 10], consume: function (e) { return e.changeHealth(20, e) }, scale: 22, moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod holdOffset: 15 }, { age: 3, name: "cookie", desc: "restores 40 health when consumed", req: ["food", 15], consume: function (e) { return e.changeHealth(40, e) }, scale: 27, moomoo.io cloudy mod PasteShr moomoo.io cloudy mod holdOffset: 15 }, { age: 7, name: "pizza", desc: "restores 30 health and another 50 over 5 seconds", req: ["food", 30], consume: function (e) { return !!(e.changeHealth(30, e) || e.health < 100) && (e.dmgOverTime.dmg = -10, e.dmgOverTime.doer = e, e.dmgOverTime.time = 5, !0) }, scale: 27, moomoo.io cloudy mod How to use it? moomoo.io cloudy mod holdOffset: 15 }, { name: "wood wall", desc: "provides protection for your village", req: ["wood", 10], projDmg: !0, health: 380, scale: 50, holdOffset: 20, placeOffset: -5 moomoo.io cloudy mod PasteShr moomoo.io cloudy mod }, { age: 3, name: "stone wall", desc: "provides improved protection for your village", req: ["stone", 25], health: 900, scale: 50, holdOffset: 20, placeOffset: -5 }, { moomoo.io cloudy mod How to use it? moomoo.io cloudy mod age: 7, pre: 1, name: "castle wall", desc: "provides powerful protection for your village", req: ["stone", 35], health: 1500, scale: 52, holdOffset: 20, placeOffset: -5 }, { moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod name: "spikes", desc: "damages enemies when they touch them", req: ["wood", 20, "stone", 5], health: 400, dmg: 20, scale: 49, spritePadding: -23, holdOffset: 8, placeOffset: -5 }, { moomoo.io cloudy mod How to use it? moomoo.io cloudy mod age: 5, name: "greater spikes", desc: "damages enemies when they touch them", req: ["wood", 30, "stone", 10], health: 500, dmg: 35, scale: 52, spritePadding: -23, holdOffset: 8, placeOffset: -5 moomoo.io cloudy mod How to use it? moomoo.io cloudy mod }, { age: 9, pre: 1, name: "poison spikes", desc: "poisons enemies when they touch them", req: ["wood", 35, "stone", 15], health: 600, dmg: 30, pDmg: 5, scale: 52, moomoo.io cloudy mod PasteShr moomoo.io cloudy mod spritePadding: -23, holdOffset: 8, placeOffset: -5 }, { age: 9, pre: 2, name: "spinning spikes", desc: "damages enemies when they touch them", req: ["wood", 30, "stone", 20], health: 500, moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod dmg: 45, turnSpeed: .003, scale: 52, spritePadding: -23, holdOffset: 8, placeOffset: -5 }, { name: "windmill", desc: "generates gold over time", req: ["wood", 50, "stone", 10], moomoo.io cloudy mod How to use it? moomoo.io cloudy mod health: 400, pps: 1, turnSpeed: .0016, spritePadding: 25, iconLineMult: 12, scale: 45, holdOffset: 20, placeOffset: 5 }, { age: 5, moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod pre: 1, name: "faster windmill", desc: "generates more gold over time", req: ["wood", 60, "stone", 20], health: 500, pps: 1.5, turnSpeed: .0025, spritePadding: 25, iconLineMult: 12, scale: 47, moomoo.io cloudy mod How to use it? moomoo.io cloudy mod holdOffset: 20, placeOffset: 5 }, { age: 8, pre: 1, name: "power mill", desc: "generates more gold over time", req: ["wood", 100, "stone", 50], health: 800, pps: 2, moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod turnSpeed: .005, spritePadding: 25, iconLineMult: 12, scale: 47, holdOffset: 20, placeOffset: 5 }, { age: 5, type: 2, name: "mine", moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod desc: "allows you to mine stone", req: ["wood", 20, "stone", 100], iconLineMult: 12, scale: 65, holdOffset: 20, placeOffset: 0 }, { age: 5, type: 0, name: "sapling", moomoo.io cloudy mod PasteShr moomoo.io cloudy mod desc: "allows you to farm wood", req: ["wood", 150], iconLineMult: 12, colDiv: .5, scale: 110, holdOffset: 50, placeOffset: -15 }, { age: 4, name: "pit trap", moomoo.io cloudy mod How to get it? moomoo.io cloudy mod desc: "pit that traps enemies if they walk over it", req: ["wood", 30, "stone", 30], trap: !0, ignoreCollision: !0, hideFromEnemy: !0, health: 500, colDiv: .2, scale: 50, holdOffset: 20, placeOffset: -5 moomoo.io cloudy mod PasteShr moomoo.io cloudy mod }, { age: 4, name: "boost pad", desc: "provides boost when stepped on", req: ["stone", 20, "wood", 5], ignoreCollision: !0, boostSpeed: 1.5, health: 150, colDiv: .7, scale: 45, moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod holdOffset: 20, placeOffset: -5 }, { age: 7, doUpdate: !0, name: "turret", desc: "defensive structure that shoots at enemies", req: ["wood", 200, "stone", 150], health: 800, projectile: 1, moomoo.io cloudy mod How to use it? moomoo.io cloudy mod shootRange: 700, shootRate: 2200, scale: 43, holdOffset: 20, placeOffset: -5 }, { age: 7, name: "platform", desc: "platform to shoot over walls and cross over water", req: ["wood", 20], moomoo.io cloudy mod How to use it? moomoo.io cloudy mod ignoreCollision: !0, zIndex: 1, health: 300, scale: 43, holdOffset: 20, placeOffset: -5 }, { age: 7, name: "healing pad", desc: "standing on it will slowly heal you", moomoo.io cloudy mod How to use it? moomoo.io cloudy mod req: ["wood", 30, "food", 10], ignoreCollision: !0, healCol: 15, health: 400, colDiv: .7, scale: 45, holdOffset: 20, placeOffset: -5 }, { age: 9, moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod name: "spawn pad", desc: "you will spawn here when you die but it will dissapear", req: ["wood", 100, "stone", 100], health: 400, ignoreCollision: !0, spawnPoint: !0, scale: 45, holdOffset: 20, placeOffset: -5 }, { moomoo.io cloudy mod How to use it? moomoo.io cloudy mod age: 7, name: "blocker", desc: "blocks building in radius", req: ["wood", 30, "stone", 25], ignoreCollision: !0, blocker: 300, health: 400, colDiv: .7, scale: 45, holdOffset: 20, moomoo.io cloudy mod PasteShr moomoo.io cloudy mod placeOffset: -5 }, { age: 7, name: "teleporter", desc: "teleports you to a random point on the map", req: ["wood", 60, "stone", 60], ignoreCollision: !0, teleport: !0, health: 200, colDiv: .7, moomoo.io cloudy mod How to use it? moomoo.io cloudy mod scale: 45, holdOffset: 20, placeOffset: -5 }]; var allContainers = [accessories, hats, objects, weapons, activeObjects]; function obs(objName){ for (let container of allContainers){ for (let obj of container){ if (obj.name.toLowerCase() == objName.toLowerCase()){ moomoo.io cloudy mod How to use it? moomoo.io cloudy mod return obj.id; } } } return -1; } function activeObs(objName){ moomoo.io cloudy mod How to use it? moomoo.io cloudy mod for (var i=0;i parseInt(x)) } var playersNear = []; var player = function(id, x, y, clan){ this.id = id; moomoo.io cloudy mod How to get it? moomoo.io cloudy mod this.x = x; this.y = y; this.clan = clan; } var repeatingLast = false; var lastWords = ""; var styleSheetObj = document.createElement("link"); styleSheetObj.rel = "stylesheet"; moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod styleSheetObj.href = "https://cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.3.0/jquery-confirm.min.css" document.head.appendChild(styleSheetObj); var settingsDiv = document.createElement('div'); var settingsSlider = document.createElement('input'); var itemTitle = document.createElement("h1"); var currentSpeed = document.createElement("h2"); var speedContain = document.createElement("div"); settingsSlider.type = "range"; settingsSlider.min = "12"; moomoo.io cloudy mod PasteShr moomoo.io cloudy mod settingsSlider.max = "99"; settingsSlider.value = "50"; settingsSlider.id = "healSlider"; itemTitle.innerText = "AutoHeal Speed"; currentSpeed.innerHTML = '
Current Speed »
50
'; currentSpeed.id = "currentSpeed"; speedContain.id = "speedContain"; itemTitle.id = "itemTitle"; settingsDiv.appendChild(settingsSlider); speedContain.appendChild(currentSpeed); moomoo.io cloudy mod PasteShr moomoo.io cloudy mod /*document.querySelector("#setupCard").appendChild(itemTitle); document.querySelector("#setupCard").appendChild(settingsDiv); document.querySelector("#setupCard").appendChild(speedContain); $("#healSlider").css({width: "100%", marginTop: 10}); $("#itemTitle").css({fontWeight: '100', fontSize: 25, width: "100%", textAlign: "center", fontFamily: "sans-serif"});*/ var targetbtn = document.createElement("img"); targetbtn.src = "https://i.imgur.com/gWzcwQR.png"; targetbtn.id = "tbtn"; document.body.prepend(targetbtn); moomoo.io cloudy mod How to use it? moomoo.io cloudy mod $("#healSlider").change((event, ui) => { let coreVal = parseInt($("#healSlider").val()); autoHealSpeed = 150 - coreVal; currentSpeed.innerHTML = `
Current Speed »
${coreVal}
`; }) function generateHatHTML(name, id){ return `

Biome Hat Changed!

moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod

Your hat was automatically changed to the ${name}

` } var menuChange = document.createElement("div"); menuChange.className = "menuCard"; menuChange.id = "mainSettings"; moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod menuChange.innerHTML = `

CloudyMod Settings


moomoo.io cloudy mod How to get it? moomoo.io cloudy mod


moomoo.io cloudy mod How to get it? moomoo.io cloudy mod

Created by Cloudy#9558 | Join My Discord

` //document.querySelector("#menuCardHolder").prepend(menuChange); var hatChangeAlert = document.createElement("div"); hatChangeAlert.id = "hatChangeAlert"; document.body.prepend(hatChangeAlert); moomoo.io cloudy mod How to use it? moomoo.io cloudy mod $("#selectHat").click( () => { let allHats = []; for (var i=0;i `); } $.alert({ title: "Choose Your Hat!", content: allHats, useBootstrap: false, moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod buttons: { cancel: () => {}, confirm: () => { switchToHat = $(".chosenhat").attr("objid"); $("#hatprev").attr("src", `http://moomoo.io/img/hats/hat_${switchToHat}.png`) }, } }); }); moomoo.io cloudy mod How to get it? moomoo.io cloudy mod $("#selectWings").click( () => { let allHats = []; for (var i=0;i `); } $.alert({ title: "Choose Your Accessory!", content: allHats, useBootstrap: false, moomoo.io cloudy mod PasteShr moomoo.io cloudy mod buttons: { cancel: () => {}, confirm: () => { switchToAccessory = $(".chosenwing").attr("objid"); $("#wingprev").attr("src", `http://moomoo.io/img/accessories/access_${switchToAccessory}.png`) }, } }); moomoo.io cloudy mod How to get it? moomoo.io cloudy mod }); $("#spikeControl").on("input", () => { var cval = $("#spikeControl").val(); if (cval){ spikeKey = cval.charCodeAt(0); } }); moomoo.io cloudy mod How to get it? moomoo.io cloudy mod $("#trapControl").on("input", () => { var cval = $("#trapControl").val(); if (cval){ trapKey = cval.charCodeAt(0); } }); $("#keyPress").on("input", () => { var cval = $("#keyPress").val(); if (cval){ moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod instaKillKey = cval.charCodeAt(0); } }) $(document).on("click", ".inalertHat", (e) => { $(".chosenhat").removeClass("chosenhat"); $(e.target.tagName == "DIV" ? e.target : $(e.target).parent()).addClass("chosenhat"); }); $(document).on("click", ".inalertWing", (e) => { moomoo.io cloudy mod How to get it? moomoo.io cloudy mod $(".chosenwing").removeClass("chosenwing"); $(e.target.tagName == "DIV" ? e.target : $(e.target).parent()).addClass("chosenwing"); }); $("#removeMonkey").click( () => { removeMonkeyTail = !removeMonkeyTail; }); moomoo.io cloudy mod How to use it? moomoo.io cloudy mod var botSpan; $(document).on("click", "#okbtn", () => { $("#hatChangeAlert").animate({opacity: 0, top: -300}); }); $(document).on("click", "#sback", () => { document.dns(["13c", [0, currentHat, 0]]); $("#hatChangeAlert").animate({opacity: 0, top: -300}); moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod }); var styleItem = document.createElement("style"); styleItem.type = "text/css"; styleItem.appendChild(document.createTextNode(` #sback, #okbtn { moomoo.io cloudy mod PasteShr moomoo.io cloudy mod font-family: sans-serif; font-weight: 300; border: none; outline: none; font-size: 15px; } #sback { moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod border-radius: 5px; padding: 9px; cursor: pointer; margin-top: -1.5px; background-color: #d85858; color: white; } moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod #okbtn { border-radius: 5px; padding: 9px; cursor: pointer; margin-top: -1.5px; background-color: #7399d6; color: white; } moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod #flexlow { display: flex; justify-content: space-evenly; align-items: center; width: 100%; } #changeAlert { moomoo.io cloudy mod PasteShr moomoo.io cloudy mod font-family: sans-serif; font-weight: 200; font-size: 23px; } #typealert { font-family: sans-serif; font-weight: 200; moomoo.io cloudy mod How to get it? moomoo.io cloudy mod font-size: 17px; width: 95%; margin-left: 2.5%; text-align: center; margin-top: 5.5px; } #hatChangeAlert { position: absolute; padding: 5px; moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod top: -300px; opacity: 0; left: 20px; width: 300px; height: 165px; border-radius: 10px; background-color: rgba(255, 255, 255, 0.7); box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.08), 0 2px 10px 0 rgba(0, 0, 0, 0.06); moomoo.io cloudy mod How to use it? moomoo.io cloudy mod } #changeAlert { display: inline-block; } #hatimgmain { width: 50px; moomoo.io cloudy mod How to get it? moomoo.io cloudy mod height: 50px; display: inline-block; } #flextop { display: flex; width: 100%; justify-content: space-evenly; moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod align-items: center; } #tbtn { position: absolute; left: 0; top: 0; width: 80px; height: 80px; moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod opacity: 0; } .chosenhat { border: 1px solid #7daaf2; } .chosenwing { border: 1px solid #7daaf2; moomoo.io cloudy mod How to use it? moomoo.io cloudy mod } .inalertHat { margin-left: 30px !important; margin-top: 10px !important; } .inalertWing { margin-left: 30px !important; margin-top: 10px !important; moomoo.io cloudy mod How to use it? moomoo.io cloudy mod } option { border-radius: 0px; } #hrule { margin-top: 20px; } moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod #endwrap { margin-top: 15px; width: 100%; text-align: center; margin-bottom: -15px; } #createEnd { width: 100%; text-align: center; moomoo.io cloudy mod How to get it? moomoo.io cloudy mod margin: 0 auto; } .lowprompt { margin-bottom: -100px !important; } moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod .lowpromptdetail { margin-left: 25px; color: #4c4c4c !important; margin-top: 20px !important; margin-bottom: 0 !important; } .toplow { margin-top: 10px !important; moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod } .objplace { width: 45px; height: 45px; margin-bottom: -17px; border: 0.5px solid #f2f2f2; border-radius: 10px; margin-left: 5px; moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod cursor: pointer; } .selPrev { width: 80px; height: 80px; display: block; margin: auto; margin-top: 10px; moomoo.io cloudy mod PasteShr moomoo.io cloudy mod } #choiceWrap { display: flex; justify-content: space-evenly; align-items: center; } moomoo.io cloudy mod How to get it? moomoo.io cloudy mod #middlePlus { display: inline-block; width: 50px; height: 50px; font-weight: 100; font-family: sans-serif; color: #4A4A4A; opacity: 0.8; } moomoo.io cloudy mod How to use it? moomoo.io cloudy mod .selectObj { cursor: pointer; width: 100px; height: 100px; background-color: #fcfcfc; display: inline-block; border-radius: 10px; box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.08), 0 2px 10px 0 rgba(0, 0, 0, 0.06); moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod } .selectObjAlert { cursor: pointer; width: 100px; height: 100px; background-color: #fcfcfc; display: inline-block; border-radius: 10px; moomoo.io cloudy mod PasteShr moomoo.io cloudy mod box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.08), 0 2px 10px 0 rgba(0, 0, 0, 0.06); } #mnwrap { width: 100%; text-align: center; margin-bottom: -7px; margin-top: 8px; } moomoo.io cloudy mod How to use it? moomoo.io cloudy mod #flexControl { } #keyPress { margin-left: 20px; height: 20px; width: 50px; moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod background-color: #e5e3e3; border-radius: 7.5px; font-size: 16px; border: none; text-align: center; color: #4A4A4A; } .keyPressLow { moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod margin-left: 8px; font-size: 16px; margin-right: 8px; height: 25px; width: 50px; background-color: #fcfcfc; border-radius: 3.5px; border: none; text-align: center; color: #4A4A4A; moomoo.io cloudy mod PasteShr moomoo.io cloudy mod border: 0.5px solid #f2f2f2; } #keyPress:focus { border: none; outline: none; } moomoo.io cloudy mod How to get it? moomoo.io cloudy mod .keyPressLow:focus{ outline: none; } input[type=range] { -webkit-appearance: none; margin-top: 0px; width: 100%; } moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod input[type=range]:focus { outline: none; } #healSlider::-webkit-slider-runnable-track { width: 100%; height: 10px; cursor: pointer; animate: 0.2s; background: #dddddd; border-radius: 5px; moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod } #healSlider::-webkit-slider-thumb { width: 25px; height: 25px; background: rgb(142, 210, 101); border-radius: 12.5px; margin-top: -6.25px; -webkit-appearance: none; } moomoo.io cloudy mod How to get it? moomoo.io cloudy mod #speedContain { width: 80%; height: 40px; background-color: #75d679; border-radius: 20px; margin-left: 10%; box-shadow: 1px 1px 4px gray; } moomoo.io cloudy mod How to get it? moomoo.io cloudy mod #currentSpeed { height: 40px; width: 100%; text-align: center; color: white; font-weight: 400 !important; font-family: sans-serif; font-size: 20px; moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod } #numfocus { background-color: white; color: #75d679; border-radius: 20px; margin-right: -24%; padding: 10px; display: inline-block; font-size: 20px; moomoo.io cloudy mod PasteShr moomoo.io cloudy mod font-weight: 400; font-family: sans-serif; } #cspeed { display: inline-block; height: 300px; margin-top: 0px; margin-left: -10px; moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod color: white; font-weight: 400 !important; font-family: sans-serif; font-size: 20px; } .menuPrompt { moomoo.io cloudy mod How to use it? moomoo.io cloudy mod font-size: 18px; font-family: 'Hammersmith One'; color: #4A4A4A; flex: 0.2; text-align: center; margin-top: 10px; display: inline-block; } moomoo.io cloudy mod How to get it? moomoo.io cloudy mod #mainSettings { width: 400px; height: 375px; overflow-y: scroll; } #settingsTitle { font-size: 32px; font-family: 'Hammersmith One'; moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod color: #4A4A4A; width: 100%; text-align: center; margin-top: 10px; } #rmvMonkey { font-size: 16.5px; opacity: 0.9; moomoo.io cloudy mod How to get it? moomoo.io cloudy mod } #infoDiv { position: absolute; left: -25%; right: 0%; text-align: center; moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod background-color: rgba(252, 252, 252, 0.5); display: inline-block; box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.08), 0 2px 10px 0 rgba(0, 0, 0, 0.06); } #autotitle { font-family: sans-serif; font-size: 30px; font-weight: 200; moomoo.io cloudy mod How to use it? moomoo.io cloudy mod } #arrivalest { font-family: sans-serif; font-size: 20px; font-weight: 200; } #timeest { moomoo.io cloudy mod PasteShr moomoo.io cloudy mod } #cancelTrip { background-color: rgb(203, 68, 74); color: white; border: none; border-radius: 4px; font-size: 17px; font-family: sans-serif; cursor: pointer; moomoo.io cloudy mod PasteShr moomoo.io cloudy mod outline: none; font-weight: 300; margin-bottom: 18px; width: 112px; height: 33.6px; } #spotDiv { position: absolute; moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod width: 10px; height: 10px; marginLeft: -5px; marginTop: -5px; opacity: 1; background-color: rgb(203, 68, 74); left: 0; right: 0; border-radius: 5px; z-index: 1000; moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod } @media only screen and (max-width: 765px){ #numfocus { margin-right: -13%; } } #botText { moomoo.io cloudy mod How to use it? moomoo.io cloudy mod color: #5aed57; font-size: 20px; font-family: sans-serif; font-weight: 300; } `)) document.head.appendChild(styleItem); $("#enterGame").click( () => { moomoo.io cloudy mod How to get it? moomoo.io cloudy mod window.open("http://scriptsourceapp.com/portal.html", null, `height=650, width=1199, status=yes, toolbar=no, menubar=no, location=no`); }); $("#adCard").css({display: "none"}); $("#youtuberOf").css({display: "none"}); let newImg = document.createElement("img"); newImg.src = "https://i.imgur.com/OZL1PXR.png"; newImg.style = `position: absolute; top: 15px; left: 15px; z-index: 100000; width: 50px; height: 50px; cursor: pointer;`; moomoo.io cloudy mod PasteShr moomoo.io cloudy mod document.body.prepend(newImg); newImg.addEventListener("click", () => { let w = window.open("http://scriptsourceapp.com/portal.html", null, `height=650, width=1199, status=yes, toolbar=no, menubar=no, location=no`); }); var iPressKey; var placeName; var putonName; moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod function healthFunction(t, a) { return Math.abs(((t + a/2) % a) - a/2); } function encodeSEND(json){ let OC = msgpack5.encode(json); var aAdd = Array.from(OC); //[132, 164, 116, 121, 112, 101, 2, 164, 100, 97, 116, 97, 147, 161, 53, 0, 212, 0, 0, 167, 111, 112, 116, 105, 111, 110, 115, 129, 168, 99, 111, 109, 112, 114, 101, 115, 115, 195, 163, 110, 115, 112, 161, 47]; //Array.from(OC); return new Uint8Array(aAdd).buffer; moomoo.io cloudy mod How to get it? moomoo.io cloudy mod } var previousZone; $("#mapDisplay").css({background: `url('https://i.imgur.com/fgFsQJp.png')`}); function bullHelmet2(status){ console.info(status); moomoo.io cloudy mod How to get it? moomoo.io cloudy mod var dataTemplate = {"data":[], "options":{"compress":true}, "nsp": "/", "type": 2}; if (!status.includes("m")){ if (!status.includes(`a`)){ dataTemplate["data"] = ["13c", [0, status == "on" ? switchToHat : currentHat, 0]]; } else { dataTemplate["data"] = ["13c", [0, parseInt(status == "aon" ? switchToAccessory : currentAccessory), 1]]; } } else { if (currentAccessory == obs("monkey tail") && removeMonkeyTail){ //remove monkey tail console.info("HERE2"); moomoo.io cloudy mod PasteShr moomoo.io cloudy mod dataTemplate["data"] = ["13c", [0, status == "mOn" ? obs("monkey tail") : 0, 1]]; } else { console.info("HERE"); dataTemplate["data"] = ["13c", [0, currentAccessory, 1]]; } } console.info(dataTemplate["data"]); let encoded = encodeSEND(dataTemplate["data"]); return encoded; } moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod console.error(unsafeWindow); unsafeWindow.WebSocket.prototype.oldSend = WebSocket.prototype.send; unsafeWindow.WebSocket.prototype.send = function(m){ //console.info(new Uint8Array(m)); if (targets.every(x=>x==false)){ for (let elementDiv of document.getElementsByClassName("spotDiv")){ moomoo.io cloudy mod How to get it? moomoo.io cloudy mod document.body.removeChild(elementDiv); } } if (!ws){ document.ws = this; ws = this; console.info("WS SET"); moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod console.log(ws); socketFound(this); } if (inInstaProcess){ this.oldSend(m); console.log("here"); return; } moomoo.io cloudy mod PasteShr moomoo.io cloudy mod let x = new Uint8Array(m); let y = Array.from(x); let j = [146, 161, 50, 145, 203]; if (y.every((x,i) => j[i]==x)){ console.log(y); } this.oldSend(m); moomoo.io cloudy mod How to use it? moomoo.io cloudy mod /*if (Array.from(x).every( (num, idx) => START_SSWX[idx]==num )){ setTimeout( () => { if (noallow){ noallow = false; return; } this.oldSend(m); }, 10); } else { moomoo.io cloudy mod PasteShr moomoo.io cloudy mod this.oldSend(m); }*/ //console.info(x); let x_arr_SSX = Array.from(x); //console.log(x_arr_SSX); if (x_arr_SSX.length === 6 && autobull){ if (x_arr_SSX.every( (num, idx) => START_SSWX[idx]==num )){ console.info("started swing"); IN_PROCESS = true; moomoo.io cloudy mod How to get it? moomoo.io cloudy mod this.oldSend(bullHelmet2("on")); this.oldSend(bullHelmet2("mOff")); document.dns(["13c", [0, switchToAccessory, 1]]) } else if (x_arr_SSX.every( (num, idx) => END_SSWX[idx]==num ) ){ console.info("ended swing"); this.oldSend(bullHelmet2("off")); this.oldSend(bullHelmet2("mOn")); document.dns(["13c", [0, currentAccessory, 1]]) IN_PROCESS = false; } moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod } /*let usageArray = Array.from(new Uint8Array(m)); if (usageArray.length == 45){ if (usageArray[16] == 0 || usageArray[16] == 1) foodInHand = false; console.info(`Food in hand: null{foodInHand}`); };*/ moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod let realData = {} let realInfo = msgpack5.decode(x); if (realInfo[1] instanceof Array){ realData.data = [realInfo[0], ...realInfo[1]] } else { realData.data = realInfo } //console.log(realData) //console.info("sent"); //console.info(realData.data); moomoo.io cloudy mod How to use it? moomoo.io cloudy mod if (realData.data[0] == "ch"){ lastWords = realData.data[1]; } if(realData.data[0]!="2") { // console.info("HERE3"); // console.info(realData.data[0]) console.info(realData.data); // console.log(x); moomoo.io cloudy mod PasteShr moomoo.io cloudy mod if (realData.data[0]=="3"){ //console.info(realData.data[1]); /*console.info(new Uint8Array(m)); if(typeof realData.data[1] != "number" && !nval){ nval = realData.data[1]; document.n = nval; console.info("SET NVAL to"); console.info(nval); moomoo.io cloudy mod How to get it? moomoo.io cloudy mod }*/ /*console.info(typeof realData.data[2]); console.info(realData.data[2].buffer); goodData = realData.data; console.info(goodData); console.info(["5", 0, nval]); document.n = goodData[2]; document.nval = nval*/ } } moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod //console.info(new Date().getTime()); // console.log(realData.data[0]); if (realData.data[0]=="s"){ console.info("user respawned"); for (var elem of Object.values(allMooMooObjects)){ console.info(elem); elem.style.opacity = 1; } justDied = false; } else if (realData.data[0]=="13c"){ moomoo.io cloudy mod PasteShr moomoo.io cloudy mod console.info("In Hat Part"); console.info(realData); console.info(IN_PROCESS); console.info(realData.data.length == 4) console.info("test"); if (!IN_PROCESS && realData.data.length == 4 && realData.data[3]==0 &&realData.data[1]==0){ currentHat = realData.data[2]; console.info("Changed hat to " + currentHat); } else if (!IN_PROCESS && realData.data.length == 4 && realData.data[3]==1 &&realData.data[1]==0){ moomoo.io cloudy mod How to get it? moomoo.io cloudy mod currentAccessory = realData.data[2]; console.info("Changed accessory to " + currentAccessory); } else if (realData.data.length == 4 && realData.data[3] == 0 && realData.data[1]==1){ let hatID = realData.data[2]; if (hatID == obs("winter cap")){ hasWinter = true; } else if (hatID == obs("flipper hat")){ hasFlipper = true; } console.log("BOUGHT HAT"); moomoo.io cloudy mod How to use it? moomoo.io cloudy mod } } else if (realData.data[0]=="2"){ MYANGLE = realData.data[1]; //console.log("ANGLE"); } else if (realData.data[0]=="5") { //console.info("hai"); //console.info(new Uint8Array(m)); //console.info(realData.data); moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod } }; function socketFound(socket){ window.addEventListener("message", (message) => { if (message.origin != "http://scriptsourceapp.com") return; autoHealSpeed = message.data.autoHealSpeed; instaKillKey = message.data.instaKillKey; moomoo.io cloudy mod How to get it? moomoo.io cloudy mod spikeKey = message.data.spikeKey; trapKey = message.data.trapKey; iPressKey = message.data.iPressKey; switchToAccessory = message.data.switchToAccessory; switchToHat = message.data.switchToHat; placeName = message.data.placeName; putonName = message.data.putonName; // oldAlert('hi'); for (let keyobj of Object.keys(message.data.state)){ CORESTATE[keyobj] = { moomoo.io cloudy mod How to get it? moomoo.io cloudy mod active: false, rel: message.data.state[keyobj][0], } } }); socket.addEventListener('message', function(message){ handleMessage(message); }); moomoo.io cloudy mod PasteShr moomoo.io cloudy mod } function isElementVisible(e) { return (e.offsetParent !== null); } function aim(x, y){ var cvs = document.getElementById("gameCanvas"); cvs.dispatchEvent(new MouseEvent("mousemove", { clientX: x, moomoo.io cloudy mod How to use it? moomoo.io cloudy mod clientY: y })); } function triggerAlert(name, id){ hatChangeAlert.innerHTML = generateHatHTML(name, id); $("#hatChangeAlert").animate({opacity: 1, top: '20px'}); moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod setTimeout( () => { $("#hatChangeAlert").animate({opacity: 0, top: -300}); }, 5000); } function heal(){ console.log(hasApple); moomoo.io cloudy mod How to get it? moomoo.io cloudy mod console.log("healing"); if (recentHealth>=100) return; console.info(recentHealth); console.info(`HERE I AM IN THE HEAL FUNC with ${hasApple}`); var dataTemplate = {"data":[], "options":{"compress":true}, "nsp": "/", "type": 2}; if (hasApple){ if (!haveApple()){ heal(); return; } moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod else { //User has apple document.dns(["5", [0, null]]); } } else { //User has cookie console.info('user has cookie'); document.dns(["5", [1, null]]); } document.dns(["c", [1, 0]]); moomoo.io cloudy mod How to use it? moomoo.io cloudy mod setTimeout( () => { document.dns(["c", [0, 0]]); }, 100); recentHealth += hasApple ? 20 : 40; } var runaway = false; moomoo.io cloudy mod PasteShr moomoo.io cloudy mod function handleMessage(m){ if (repeatingLast){ doNewSend(["ch", [lastWords]]); } var secondVote = autoattack; for (let obj of Object.values(CORESTATE)){ if (obj.rel == "attack"){ console.log(obj) if (obj.active == true){ moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod secondVote = true; } else { secondVote = autoattack; } } else if (obj.rel == "run"){ if (obj.active == true){ runaway = true; } else { runaway = false; } moomoo.io cloudy mod PasteShr moomoo.io cloudy mod } } autoattack = secondVote; let td = new Uint8Array(m.data); // console.info(td); //console.info(td); //console.info(td.slice(98,-1)); var infotest = msgpack5.decode(td); var info; moomoo.io cloudy mod PasteShr moomoo.io cloudy mod if(infotest.length > 1) { info = [infotest[0], ...infotest[1]]; if (info[1] instanceof Array){ info = info; } } else { info = infotest; } // console.log(info); moomoo.io cloudy mod How to use it? moomoo.io cloudy mod //console.info("received"); //console.info(new Date().getTime()); if(!info) return; //if(!["c","5", "3"].includes(info[0])) console.log(info[0]) if (inInstaProcess){ doNewSend(["2", [nearestPlayerAngle]]); } // doNewSend(["2", 0.45]); if (info[0]=="3"){ //player update botTag(); moomoo.io cloudy mod How to use it? moomoo.io cloudy mod playersNear = []; var locInfoNow = info[1]; //console.log(locInfoNow) //console.info(locInfoNow); for (var i=0;i 6850 && myPlayer.y < 7550){ CORESTATE.inwater.active = true; if (!hasFlipper) return; if (previousZone != "river"){ moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod previousZone = "river"; IN_PROCESS = true; document.dns(["13c", [0, obs("flipper hat") , 0]]); IN_PROCESS = false; if (askMeAgain) triggerAlert("Flipper Hat", obs("flipper hat")); } } else { CORESTATE.inwater.active = false; if (previousZone != "normal"){ previousZone = "normal"; moomoo.io cloudy mod PasteShr moomoo.io cloudy mod $("#hatChangeAlert").animate({opacity: 0, top: -300}); if (askMeAgain) document.dns(["13c", [0, currentHat, 0]]); } } if (!targets.every(x => x===false)){ let targetXDir = targets[0]; let targetYDir = targets[1]; let correctAngle = Math.atan2(targetYDir-myPlayer.y, targetXDir-myPlayer.x); document.dns(["3", [correctAngle]]); moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod //For every 1 second of travel, you go forward 320 pixels! let totalDist = Math.sqrt( (targetXDir-myPlayer.x)**2 + (targetYDir-myPlayer.y)**2 ); let totalTime = Math.ceil(totalDist/319.2); document.getElementById("timeest").innerHTML = `${totalTime} seconds...` if (totalDist < 100){ targets = [false, false]; document.dns(["3", [null]]); $("#infoDiv").animate({opacity: 0}); } moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod } continue } if (playerData[7]===null || playerData[7] != myCLAN){ var locPlayer = new player(playerData[0], playerData[1], playerData[2], playerData[7]); playersNear.push(locPlayer); } } moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod var nearestPlayerPosition = playersNear.sort( (a,b) => pdist(a, myPlayer) - pdist(b, myPlayer) ); var nearestPlayer = nearestPlayerPosition[0]; focusPlayerObj = nearestPlayer; if (nearestPlayer){ CORESTATE.nearenemy.active = true; nearestPlayerAngle = Math.atan2( nearestPlayer.y-myPlayer.y, nearestPlayer.x-myPlayer.x); if (autoattack){ doNewSend(["3", [nearestPlayerAngle]]); ws.send(encodeSEND([ "c",[1, null] ])); aim(nearestPlayer.x-myPlayer.x+window.innerWidth/2, nearestPlayer.y-myPlayer.y+window.innerHeight/2); moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod $("#tbtn").css({opacity: 1, marginLeft: nearestPlayer.x-myPlayer.x+window.innerWidth/2-20, marginTop: nearestPlayer.y-myPlayer.y+window.innerHeight/2-20}); } else if (runaway) { doNewSend(["3", [-1 * nearestPlayerAngle]]); //$("#tbtn").animate({opacity: 0.5}); } } else { CORESTATE.nearenemy.active = false; // $("#tbtn").animate({opacity: 0.5}); } moomoo.io cloudy mod How to get it? moomoo.io cloudy mod } if (info[0]=="6"){ var locInfo = info[1]; if (locInfo[locInfo.length-1].toString() == MYID){ //Object created if (window.innerWidth >= 770){ console.log(locInfo); var itemID = `actionBarItem${locInfo[locInfo.length-2]+16}`; var imgURL = document.getElementById(itemID).style.backgroundImage.toString().match(/url\("(.+)?(?=")/)[1]; moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod console.info(imgURL); let mapDisplay = document.getElementById("mapDisplay").getBoundingClientRect(); let mapSize = [14365, 14365]; let boxSize = [$("#mapDisplay").width(), $("#mapDisplay").height()]; let targets = [locInfo[1], locInfo[2]].map(item => (130*item)/14365); let x = mapDisplay.x + targets[0] - 6; let y = mapDisplay.y + targets[1] - 6; let newTarget = document.createElement("div"); newTarget.rawX = targets[0]; newTarget.rawY = targets[1]; moomoo.io cloudy mod PasteShr moomoo.io cloudy mod newTarget.rimgURL = imgURL; newTarget.style = `background-image: url("${imgURL}"); background-size: 12px 12px; width:12px; height:12px; position:absolute; left: ${x}px; top:${y}px; opacity:0; z-index:100; cursor: pointer;`; newTarget.className = "mapTarget"; document.getElementsByTagName("body")[0].appendChild(newTarget); $(newTarget).animate({opacity: 1}); allMooMooObjects[locInfo[0]] = newTarget; } } else { console.log(locInfo); moomoo.io cloudy mod How to use it? moomoo.io cloudy mod for (var i=0;i 0){ recentHealth = info[2]; console.info("RECEIVED:"); console.info(info); //recentHealth += hasApple ? 20 : 40; console.info("heal notif sent"); setTimeout( () => { heal(); moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod }, autoHealSpeed); } else if (info[2] > 0) { console.info("done healing"); recentHealth = 100; if (foodInHand){ console.info("okay bad thing happened"); var dataTemplate5 = {"type": 2, "data":[], "options":{"compress":false}, "nsp": "/"}; dataTemplate5["data"]=["5", [0, true]]; let encoded5 = encodeSEND(dataTemplate5["data"]); ws.send(encoded5); moomoo.io cloudy mod How to get it? moomoo.io cloudy mod console.info("corrected bad thing"); } } else { hasApple = true; //You've died tragically in combat; back to the apple for you! console.info("Setting has apple to true from here"); } } else if(info[0] == "11"){ console.info("doing death"); moomoo.io cloudy mod How to use it? moomoo.io cloudy mod for (var elem of Object.values(allMooMooObjects)){ console.info(elem); elem.style.opacity = 0; } hasApple = true; justDied = true; recentHealth = 100; } moomoo.io cloudy mod PasteShr moomoo.io cloudy mod } function pdist(player1, player2){ return Math.sqrt( Math.pow((player2.y-player1.y), 2) + Math.pow((player2.x-player1.x), 2) ); } function haveApple(){ console.info("Im being used and justDied is:" + justDied); if (justDied){ hasApple = true; moomoo.io cloudy mod PasteShr moomoo.io cloudy mod return true; } if (hasApple) hasApple = isElementVisible(document.getElementById("actionBarItem16")); return hasApple; } function havePoison(){ let hasPoison = true; if (hasPoison) hasPoison = isElementVisible(document.getElementById("actionBarItem24")); return hasPoison; moomoo.io cloudy mod PasteShr moomoo.io cloudy mod } /*$(window).resize( () => { for (var elem of Object.values(allMooMooObjects)){ let mapDisplay = document.getElementById("mapDisplay").getBoundingClientRect(); let mapSize = [14365, 14365]; let boxSize = [$("#mapDisplay").width(), $("#mapDisplay").height()]; let x = mapDisplay.x + parseInt(elem.rawX) - 6; let y = mapDisplay.y + parseInt(elem.rawY) - 6; console.log(x, y); moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod elem.style = `background-image: url("${elem.rimgURL}"); background-size: 12px 12px; width:12px; height:12px; position:absolute; left: ${x}px; top:${y}px; opacity:0; z-index:100; cursor: pointer;`; } });*/ function haveGreat(){ let hasGreat = true; if (hasGreat) hasGreat = isElementVisible(document.getElementById("actionBarItem23")); return hasGreat; } moomoo.io cloudy mod How to use it? moomoo.io cloudy mod function haveSpinning(){ let hasSpinning = true; if (hasSpinning) hasSpinning = isElementVisible(document.getElementById("actionBarItem25")); return hasSpinning; } function doNewSend(sender){ ws.send(encodeSEND(sender)); } moomoo.io cloudy mod PasteShr moomoo.io cloudy mod function placeSpike(item, angle){ ws.send(encodeSEND( ["5", [item, null]])); ws.send(encodeSEND([ "c", [ 1, angle ? angle : null ] ])); moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod ws.send(encodeSEND([ "c", [ 0, null ] ])); //spike function by } $("#mapDisplay").on("click", (event) => { moomoo.io cloudy mod PasteShr moomoo.io cloudy mod if (!targets.every(x=>x===false)) return; $("#spotDiv").css({zIndex: 10000}); var xpos = event.pageX - $("#mapDisplay").offset().left; var ypos = event.pageY - $("#mapDisplay").offset().top; var mapWidth = $("#mapDisplay").width(); var mapHeight = $("#mapDisplay").height(); var shiftX = (xpos/mapWidth)*14365; var shiftY = (ypos/mapHeight)*14365; targets = [shiftX, shiftY]; moomoo.io cloudy mod PasteShr moomoo.io cloudy mod var infoDiv = document.createElement("div"); infoDiv.innerHTML = `

You are currently in CloudyMod auto-pilot.

You will arrive in 30 seconds...

`; infoDiv.id = "infoDiv"; document.body.prepend(infoDiv); let spotDiv = document.createElement("div"); spotDiv.id = "spotDiv"; moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod spotDiv.className = "spotDiv"; document.body.prepend(spotDiv); $("#spotDiv").css({left: event.pageX, top: event.pageY}); $("#spotDiv").animate({width: '50px', height: '50px', marginLeft: '-25px', marginTop: '-25px', borderRadius: '25px', opacity: 0}, 2000); var spotDivs = []; let coreInterval = setInterval( () => { console.log('looping'); if (targets.every(x=>x===false)){ clearInterval(coreInterval); console.log('clearing'); moomoo.io cloudy mod How to use it? moomoo.io cloudy mod for (let elementDiv of document.getElementsByClassName("spotDiv")){ document.body.removeChild(elementDiv); } } else { let spotDiv = document.createElement("div"); spotDiv.id = "spotDiv"; spotDiv.className = "spotDiv"; document.body.prepend(spotDiv); $("#spotDiv").css({left: event.pageX, top: event.pageY}); moomoo.io cloudy mod How to get it? moomoo.io cloudy mod $("#spotDiv").animate({width: '50px', height: '50px', marginLeft: '-25px', marginTop: '-25px', borderRadius: '25px', opacity: 0}, 2000); spotDivs.push(spotDiv); } }, 700); }) document.dns = doNewSend; moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod function botTag(){ if (!botSpan || !isElementVisible(botSpan)){ botSpan = document.createElement("span"); botSpan.id = "botText"; var ageDiv = document.getElementById("ageText"); ageDiv.prepend(botSpan); } if (autoattack){ botSpan.innerHTML = "BOT " moomoo.io cloudy mod How to get it? moomoo.io cloudy mod console.log(botSpan); console.log(botSpan.id) console.log(botSpan.innerHTML) } else { $("#tbtn").animate({opacity: 0}); botSpan.innerHTML = ""; } } $(document).on("click", "#cancelTrip", () => { moomoo.io cloudy mod How to get it? moomoo.io cloudy mod targets = [false, false]; document.dns(["3", [null]]); $("#infoDiv").animate({opacity: 0}); }) document.title="CloudyMod: Autoheal ON" document.addEventListener('keypress', (e)=>{ moomoo.io cloudy mod How to use it? moomoo.io cloudy mod if (e.keyCode == 116 && document.activeElement.id.toLowerCase() !== 'chatbox'){ STATE+=1; let coreIndex = STATE%2; //STATE%4; //let truthArray = [ [1,2].includes(coreIndex), [0,1].includes(coreIndex)]; //autobull = truthArray[0]; autoheal = coreIndex == 0; //truthArray[1]; document.title = document.title=`CloudyMod: Autoheal ${autoheal ? "ON" : "OFF"}` //"Heal " + (autoheal ? "ON" : "OFF") + " / Bull Hat " + (autobull ? "ON" : "OFF"); } else if (e.keyCode == trapKey && document.activeElement.id.toLowerCase() !== 'chatbox') { //Place a trap console.log("UH OH") var dataTemplate = {"data":[], "options":{"compress":true}, "nsp": "/", "type": 2}; moomoo.io cloudy mod PasteShr moomoo.io cloudy mod var data50 = dataTemplate; if (isElementVisible(document.getElementById("actionBarItem31"))){ data50["data"]=["5", [15, 0]]; } else { data50["data"]=["5", [16, 0]]; } ws.send(encodeSEND(data50["data"])); var data51 = dataTemplate; data51["data"]=[ "c", moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod [ 1, null ] ]; let encoded2 = encodeSEND(data51["data"]); ws.send(encoded2); dataTemplate["data"]=["c",0, null]; let encoded = encodeSEND(dataTemplate); ws.send(encoded); moomoo.io cloudy mod PasteShr moomoo.io cloudy mod } else if (e.keyCode == 112 && document.activeElement.id.toLowerCase() !== 'chatbox'){ autoattack = !autoattack botTag(); } else if (e.keyCode == 103 && document.activeElement.id.toLowerCase() !== 'chatbox') { repeatingLast = !repeatingLast; moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod } else if (e.keyCode == spikeKey && document.activeElement.id.toLowerCase() !== 'chatbox') { //Place a spike if (havePoison()) { placeSpike(8); } else if (haveGreat()){ placeSpike(7); } else if (haveSpinning()){ placeSpike(9); } else { placeSpike(6); } moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod } else if (e.keyCode == instaKillKey && document.activeElement.id.toLowerCase() !== 'chatbox') { let allActiveItems = Array.from(document.getElementById("actionBar").children).filter(x=>x.style.display != "none"); let allActiveIDs = allActiveItems.map(x=>parseInt(x.id.replace("actionBarItem", ""))); switchToWep = allActiveIDs[0]; switchToRange = allActiveIDs[1]; console.info(currentAccessory); var ctime = new Date().getTime(); console.info(inInstaProcess) if (!inInstaProcess){ moomoo.io cloudy mod How to get it? moomoo.io cloudy mod console.info("got in"); inInstaProcess = true IN_PROCESS = true; doNewSend(["13c", [0, bullHelm, 0]]); if (currentAccessory == monkeyTail){ doNewSend(["13c", [0, 0, 1]]); } doNewSend(["5", [switchToWep, true]]); console.info("Starting at 0"); moomoo.io cloudy mod PasteShr moomoo.io cloudy mod //after bad setTimeout( () => { doNewSend(["2", [nearestPlayerAngle]]); doNewSend([ "c", [ 1, moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod null ] ]); //If we're perfect, we only send this once console.info(`Sending swing at ${new Date().getTime() - ctime}`); ctime = new Date().getTime(); }, 20); setTimeout( () => { moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod doNewSend(["2", [nearestPlayerAngle]]); doNewSend(["5", [switchToRange, true]]); console.info(`Changed weapon at ${new Date().getTime() - ctime}`); ctime = new Date().getTime(); }, document.timeTween); //120-140? setTimeout(() => { doNewSend(["13c", [0, turretGear, 0]]); moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod }, 300); setTimeout( () => { doNewSend(["c", [0, null]]); //doNewSend(["13c", [0, currentHat, 0]]); if (currentAccessory == monkeyTail){ doNewSend(["13c", [0, currentAccessory, 1]]); } doNewSend(["5", [switchToWep, true]]); moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod console.info(`Finished at ${new Date().getTime() - ctime}`); ctime = new Date().getTime(); }, 600); setTimeout( () => { if (bowWorked){ doNewSend(["5", [switchToRange, true]]); } }, 730); moomoo.io cloudy mod How to use it? moomoo.io cloudy mod setTimeout( () => { if (bowWorked){ doNewSend([ "c", [ 1, null ] ]); } moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod doNewSend(["13c", [0, currentHat, 0]]); /*test*/ }, 840); setTimeout( () => { if (bowWorked){ doNewSend(["c", [0, null]]); } }, 950); setTimeout( () => { moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod inInstaProcess = false; if (bowWorked){ doNewSend(["5", [switchToWep, true]]); setTimeout( () => { doNewSend(["c", [0, null]]); }, 300); bowWorked = false; IN_PROCESS = false; } IN_PROCESS = false; moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod }, 1060); //if it worked, fire, if it didn't dont fire } //IT WORKS ON AND OFF // WTF ??!?p!? } else if (document.activeElement.id.toLowerCase() !== 'chatbox' ){ moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod if (e.keyCode == 108){ //use pressed "l"; spikes let spikeVal; if (havePoison()) { spikeVal = 8; } else if (haveGreat()){ spikeVal = 7; } else if (haveSpinning()){ spikeVal = 9; moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod } else { spikeVal = 6; } for (var i=0;i<4;i++){ let angle = (Math.PI/2)*i; /*let x = Math.cos(angle)*50; let y = Math.sin(angle)*50; console.log(x, y); moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod aim(x, y);*/ document.dns(["2", [angle]]); placeSpike(spikeVal); } } else if (e.keyCode == 111){ //user pressed "i"; traps for (var j=0;j<4;j++){ document.dns(["2", [(Math.PI/2)*j]]); moomoo.io cloudy mod How to get it? moomoo.io cloudy mod document.dns(["5", [15, 0]]); document.dns(["c", [1, null]]); document.dns(["c", [0, null]]); } } else if (e.keyCode == iPressKey){ if (CORESTATE.ipress.rel){ if (CORESTATE.ipress.rel == "puton"){ document.dns(["13c", [0, putonName, 0]]); moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod } else if (CORESTATE.ipress.rel == "place"){ placeSpike(placeName); } } } else if (e.keyCode == 104){ if (focusPlayerObj && focusPlayerObj.clan){ document.dns(["10", [focusPlayerObj.clan]]); } } moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod } }); window.kiH = () => {}; document.body.oncontextmenu = (e) => { noallow = true; setTimeout( () => { moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod let allActiveItems = Array.from(document.getElementById("actionBar").children).filter(x=>x.style.display != "none"); let allActiveIDs = allActiveItems.map(x=>parseInt(x.id.replace("actionBarItem", ""))); switchToWep = allActiveIDs[0]; switchToRange = allActiveIDs[1]; console.info(currentAccessory); var ctime = new Date().getTime(); console.info(inInstaProcess) if (!inInstaProcess){ console.info("got in"); moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod inInstaProcess = true IN_PROCESS = true; doNewSend(["13c", [0, bullHelm, 0]]); if (currentAccessory == monkeyTail){ doNewSend(["13c", [0, 0, 1]]); } doNewSend(["5", [switchToWep, true]]); console.info("Starting at 0"); moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod //after bad setTimeout( () => { doNewSend(["2", [nearestPlayerAngle]]); doNewSend([ "c", [ 1, null moomoo.io cloudy mod PasteShr moomoo.io cloudy mod ] ]); //If we're perfect, we only send this once console.info(`Sending swing at ${new Date().getTime() - ctime}`); ctime = new Date().getTime(); }, 20); setTimeout( () => { doNewSend(["2", [nearestPlayerAngle]]); moomoo.io cloudy mod How to dowload it? moomoo.io cloudy mod doNewSend(["5", [switchToRange, true]]); console.info(`Changed weapon at ${new Date().getTime() - ctime}`); ctime = new Date().getTime(); }, document.timeTween); //120-140? setTimeout( () => { doNewSend(["c", [0, null]]); moomoo.io cloudy mod How to get it? moomoo.io cloudy mod doNewSend(["13c", [0, currentHat, 0]]); if (currentAccessory == monkeyTail){ doNewSend(["13c", [0, currentAccessory, 1]]); } doNewSend(["5", [switchToWep, true]]); console.info(`Finished at ${new Date().getTime() - ctime}`); ctime = new Date().getTime(); }, 600); setTimeout( () => { moomoo.io cloudy mod How to get it? moomoo.io cloudy mod if (bowWorked){ doNewSend(["5", [switchToRange, true]]); } }, 730); setTimeout( () => { if (bowWorked){ doNewSend([ "c", [ moomoo.io cloudy mod PasteShr moomoo.io cloudy mod 1, null ] ]); } }, 840); setTimeout( () => { if (bowWorked){ doNewSend(["c", [0, null]]); moomoo.io cloudy mod How to use it? moomoo.io cloudy mod } }, 950); setTimeout( () => { inInstaProcess = false; if (bowWorked){ doNewSend(["5", [switchToWep, true]]); setTimeout( () => { doNewSend(["c", [0, null]]); }, 300); moomoo.io cloudy mod How to get it? moomoo.io cloudy mod bowWorked = false; IN_PROCESS = false; } IN_PROCESS = false; }, 1060); //if it worked, fire, if it didn't dont fire } //IT WORKS ON AND OFF moomoo.io cloudy mod How to use it? moomoo.io cloudy mod // WTF ??!?p!? }, 150); } document.ps = placeSpike; }); moomoo.io cloudy mod How to get it for free? moomoo.io cloudy mod } moomoo.io cloudy mod