您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Hack for evoworld/flyordie witch adds 14 hacks and emoji hack mod for evoworld! The most bigger hack with cool and understandable code. Please, support this project, I made all it IN SOLO!
当前为
// ==UserScript== // @name EvoWorld.io MEGAHACK // @name:ru EvoWorld.io MEGAHACK // @namespace http://tampermonkey.net/ // @version 1.0.1 // @description:en Hack for evoworld/flyordie witch adds 25+ hacks for evoworld! The most bigger hack with cool and understandable code. Please, support this project, I made all it IN SOLO! // @description:ru Хак для evoworld/flyordie witch добавляет более 25 хаков для evoworld! Самый большой хак с классным и понятным кодом. Пожалуйста, поддержите этот проект, я все сделал В СОЛО! // @author ChyppitauCoder // @match https://evoworld.io/ // @icon https://steamuserimages-a.akamaihd.net/ugc/2044108148224666217/6A44151F7534306FEC8259BDE5496463C9B55720/?imw=512&imh=512&ima=fit&impolicy=Letterbox&imcolor=%23000000&letterbox=true // @grant none // @license MIT // @description Hack for evoworld/flyordie witch adds 14 hacks and emoji hack mod for evoworld! The most bigger hack with cool and understandable code. Please, support this project, I made all it IN SOLO! // ==/UserScript== let overlay = ` <div class="main-hack"> <style> .cheatMenu { font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; font-size: 23px; height: 70%; width: 90%; color: #fff; } .main-hack { margin: 0; position: absolute; z-index: 9999; } .hack-main-section { margin: 20px; display: flex; flex-direction: row-reverse; margin: 0; } .rand-hack, .another-softwere-hack, .cosmetic-hack, .how-to-hack, .visual-hack, .keybind-hack { padding: 10px; border: 1px solid black; background-color: #330b82; display: flex; flex-direction: column; } .another-softwere-hack .title-2 h1{ font-size: 20px; } .another-softwere-hack{ font-size: 10px; } hr { color: black; } button{ background-color: #251c88; border: 1px solid #fff; border-radius: 4px; padding: 5px; display: flex; justify-content: center; align-items: center; transition: .3s linear; color: #fff; } button:hover, button:focus{ background-color: white; color: gray; } button:active{ font-size: 30px; color: white; } </style> <div id="box-hack"> <div class="cheatMenu" id="cheatMenu"> <section class="hack-main-section"> <div class="how-to-hack"> <div class="title1290"> <p>Close or Open Menu - tab</p> <hr> </div> <button id="my-another-hacks" class="another-hacks">my hacks</button> </div> <div class="rand-hack"> <div class="title"> <h1>global</h1> <hr> </div> <button id="reload-hack">reload</button> <button id="exit-game-hack">exit game</button> <button id="inject-hack">inject another hack</button> <button id="show-codes-hack">show codes</button> <button id="xp-hack">enable xp bonus</button> <button id="scan-players">Scan players</button> <button id="immortal-mode">Immortal Mode</button> <button id="next-level">Auto Reaper Level</button> </div> <div class="another-softwere-hack"> <div class="title-2"> <h1>from other scripts</h1> <hr> </div> <button id="any-level-hack">Unlock Level(Any Level In EvoWorld!)</button> <button id="premium-hack">Unlock Premium(EvoWorld.io Hack Menu)</button> <button id="auto-respawn-hack">Auto Respawn(from evoworld.io Читы)</button> <button id="use-skill" onclick="if (able_to_click){skillUse()}">Use Your Skill(evoworld.io Читы)</button> </div> <div class="cosmetic-hack"> <div class="title-3"> <h1>cosmetic</h1> <hr> </div> <button id="night-vision">Night Vision</button> <button id="enter-title-hack">chose title</button> <button id="print-scr">screenshot</button> <button id="show-label">Show Label</button> </div> <div class="visual-hack"> <div class="title-4"> <h1>visual</h1> <hr> </div> <button id="sky-bs-mod-hack">sky bs mod</button> <button id="smooth-movements">Smooth Movement</button> <button id="hp-hack">enter your hp</button> <button id="unlock-zoom-hack">unlock zoom</button> <button id="admin-hack">Admin Hack</button> <button id="pixelvoices-mod-hack">pixel voices mod</button> <button id="height-hack-hack">enter your height</button> <button id="unlock-nick-hack">unlock nick</button> <button onclick="if (able_to_click){game.maxInterpolateDistanceTeleport = 0}">Enable NoClip</button> <button onclick="if (able_to_click){game.maxInterpolateDistanceTeleport = 350}">Disable NoClip</button> <button id="speedhack">SpeedHack</button> </div> <div class="keybind-hack"> <div class="title-5"> <h1>keybind</h1> <hr> </div> <button id="bind-hack">add keybind</button> </div> </section> </div> </div> </div> `; function main() { alert('Warning, you can will get banned! To open/close cheat menu press tab'); let cheatMenu = document.createElement("div"); let able_to_click_hack = true; cheatMenu.innerHTML = overlay; cheatMenu.style.opacity = "1"; document.body.appendChild(cheatMenu); let main_hack = cheatMenu.querySelector(".main-hack"); if (!main_hack) { alert("Element with class 'main-hack' not found! Cheat doesn't work!"); return; } document.addEventListener('keydown', (event) => { if (event.key === 'Tab') { let opac = cheatMenu.style.opacity; if (opac === "1") { cheatMenu.style.opacity = "0"; able_to_click_hack = false; main_hack.style.width = "0%"; main_hack.style.height = "0%"; } else { cheatMenu.style.opacity = "1"; able_to_click_hack = true; main_hack.style.height = "70%"; main_hack.style.width = "90%"; } } }); let option1 = document.getElementById("reload-hack"); let option2 = document.getElementById("sky-bs-mod-hack"); let option3 = document.getElementById("pixelvoices-mod-hack"); let option4 = document.getElementById("any-level-hack"); let option5 = document.getElementById("show-codes-hack"); let option7 = document.getElementById("unlock-zoom-hack"); let option9 = document.getElementById("exit-game-hack"); let option10 = document.getElementById("xp-hack"); let option12 = document.getElementById("hp-hack"); let option13 = document.getElementById("height-hack-hack"); let option14 = document.getElementById("unlock-nick-hack"); let option15 = document.getElementById("premium-hack"); let option16 = document.getElementById("print-scr"); let option17 = document.getElementById("inject-hack"); let option18 = document.getElementById("speedhack"); let option19 = document.getElementById("smooth-movements"); let option20 = document.getElementById("enter-title-hack"); let option21 = document.getElementById("scan-players"); let option22 = document.getElementById("admin-hack"); let option23 = document.getElementById("immortal-mode"); let option24 = document.getElementById("show-label"); let option25 = document.getElementById("next-level"); let option26 = document.getElementById("bind-hack"); let option28 = document.getElementById("auto-respawn"); let author_anothers_hacks = document.getElementById("my-another-hacks"); option1.addEventListener("click", () => { if (able_to_click_hack){ option1.style.backgroundColor = "black"; window.location.reload(); } }); option2.addEventListener("click", () => { if (able_to_click_hack){ option2.style.backgroundColor = "black"; game['me']['level'] = 40; game['me']['nick'] = '\x20Sky (*BS*)'; } }); option3.addEventListener("click", () => { if (able_to_click_hack){ option3.style.backgroundColor = "black"; game['me']['level'] = 999; game['me']['nick'] = '\x20PixelVoices'; } }); option4.addEventListener("click", () => { if (able_to_click_hack){ option4.style.backgroundColor = "black"; var level = prompt('Enter your level: '); if (level !== null) { game['me']['level'] = level; } } }); option5.addEventListener("click", () => { if (able_to_click_hack){ option5.style.backgroundColor = "black"; alert("nortos, skybs, plaxer1, JeromeAS, PixelVoices"); } }); option7.addEventListener("click", () => { if (able_to_click_hack){ option7.style.backgroundColor = "black"; let zoom = prompt("enter your zoom(any): "); gameZoom += zoom; } }); option9.addEventListener("click", () => { if (able_to_click_hack){ option9.style.backgroundColor = "black"; window.location.href = "https://google.com"; } }); option10.addEventListener("click", () => { if (able_to_click_hack){ option10.style.backgroundColor = "black"; setInterval(function () { startBonus = 1; }, 1); } }); option12.addEventListener("click", () => { if (able_to_click_hack){ option12.style.backgroundColor = "black"; let hp = prompt('enter your hp: '); game['me']['hp'] = hp; } }); option13.addEventListener("click", () => { if (able_to_click_hack){ option13.style.backgroundColor = "black"; let height = prompt('Enter your height: '); game['me']['height'] = height; } }); option14.addEventListener("click", () => { if (able_to_click_hack){ option14.style.backgroundColor = "black"; let nick_hack = prompt('Enter your nickname: '); game['me']['nick'] = `\x20${nick_hack}`; } }); option15.addEventListener("click", () =>{ if (able_to_click_hack){ option15.style.backgroundColor = "black"; game['me']['premium'] = true; } }); option16.addEventListener("click", () =>{ if (able_to_click_hack){ option16.style.backgroundColor = "black"; print(); } }); option17.addEventListener("click", () =>{ if (able_to_click_hack){ option17.style.backgroundColor = "black"; window.open("https://www.userscript.zone/search?q=https%3A%2F%2Fevoworld.io%2F&utm_campaign=dhdg&utm_medium=api&utm_source=usz"); } }); option18.addEventListener("click", () => { if (able_to_click_hack){ option18.style.backgroundColor = "black"; let speed = prompt("Enter your speed: "); setInterval(function(){ game['me']['moveSpeed'] = {x: speed, y: speed} game['me']['previousMoveSpeed'] = {speed: 15, y: undefined} }, 1); } }); option19.addEventListener("click", () => { if (able_to_click_hack){ option19.style.backgroundColor = "black"; game.maxInterpolateDistanceTeleport = 3500; } }); option20.addEventListener("click", () => { if (able_to_click_hack){ option20.style.backgroundColor = "black"; let title = prompt("Enter Your Title: "); document.title = title; } }); option21.addEventListener("click", () => { if (able_to_click_hack){ option21.style.backgroundColor = "black"; scanPlayers(); } }); option22.addEventListener("click", () => { if (able_to_click_hack){ option22.style.backgroundColor = "black"; game['me']['level'] = 999; game['me']['nick'] = '\x20[Admin]'; } }); option23.addEventListener("click", () => { if (able_to_click_hack){ option23.style.backgroundColor = "black"; if (imDead != false){ imDead = false; } } }); option24.addEventListener("click", () => { if (able_to_click_hack){ option24.style.backgroundColor = "black"; let text = prompt("Enter Your Text: "); let label = document.createElement("div"); label.textContent = text; label.style.position = "fixed"; label.style.top = "10%"; label.style.left = "10%"; label.style.fontSize = "40px"; label.style.fontFamily = "Arial"; label.style.color = "red"; label.style.zIndex = 9999; document.body.appendChild(label); } }); option25.addEventListener("click", () => { if (able_to_click_hack){ option25.style.backgroundColor = "black"; game['me']['inSafeZone'] = true; } }); option26.addEventListener("click", () => { if (able_to_click_hack){ option26.style.backgroundColor = "black"; let key = prompt("enter a key to bind(will work on hack menu only): "); let hack = prompt("enter a hack ID(press Cntrl + U and check main-hack. In Main-hack you need search your hack to keybind. In this hack will param id. Copy this and paste it in this prompt): "); document.addEventListener("keydown", (event) => { if (event.key === key){ if (cheatMenu.style.opacity !== 1){ let option = document.getElementById(hack); able_to_click_hack = true; option.click(); able_to_click_hack = false; } else { let option = document.getElementById(hack); option.click(); } } }); } }); option28.addEventListener("click", () => { if (able_to_click_hack){ option28.style.backgroundColor = "black"; if (joinedGame && imDead) { playAgain(); } } }); author_anothers_hacks.addEventListener("click", () => { if (able_to_click_hack){ author_anothers_hacks.style.backgroundColor = "black"; window.open('https://greasyfork.org/ru/users/1087245-chyppitaucoder'); } }); } main();