Evoworld.io Hack menu

Cheats for EvoWorld.io

目前為 2024-03-23 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Evoworld.io Hack menu
// @namespace    http://tampermonkey.net/
// @version      release 1.0
// @description  Cheats for EvoWorld.io
// @author       not you
// @license      MIT
// @match        https://evoworld.io/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=evoworld.io
// @grant        none
// ==/UserScript==

(function() {
    alert ('open/close on Insert')
    let cheatMenuHTML = `
    <div id="cheatMenu" style="position: absolute; top: 450px; left: 20px; z-index: 9999; background: white; padding: 10px; border: 1px solid black;">
        <h>--------------------------------CHEAT--------------------------------<h>
        <hr>
        <label><input type="checkbox" id="ExpHackCheckbox"> Exp bonus +30%</label>
        <label><input type="checkbox" id="EmojiCheckbox"> Emoji Hack (Buttons Q , E)</label><br>
        <label><input type="checkbox" id="LevelCheckbox"> Level 100 (Visual)</label>
        <label><input type="checkbox" id="SmoothCheckbox"> Smooth movement</label><br>
        <label><input type="checkbox" id="AdminModeCheckbox"> Admin mode (Visual)</label>
        <label><input type="checkbox" id="RightSpeedHack"> Beta SpeedHack (right)</label><br>
        <label><input type="checkbox" id="LeftSpeedHack"> Beta SpeedHack (left)</label>
        <label><input type="checkbox" id="ImmortalModeCheckbox"> Immortal (Visual)</label><br>
        <label><input type="checkbox" id="AdBlockerCheckbox"> AdBlocker (Beta)</label>
        <button id="injectButton">Inject</button>
        <br>
        <label><input type="button" value="Print screen (may not work)" onclick="print()"></br>
        <label><input type="button" value="Show all bonus codes" onclick="alert ('SkyBS, Nortos, xxostepolse64, Plaxer1, JeromeASF')">
        <br><label><input type="button" value="Enable beta noclip" onclick="game.maxInterpolateDistanceTeleport = 0"></br>
        <label><input type="button" value="Disable beta noclip" onclick="game.maxInterpolateDistanceTeleport = 350">
        <br><label><input type="button" value="Minimum zoom" onclick="gameZoom -= 100">
        <label><input type="button"  value="Maximum zoom" onclick="gameZoom += 100">
        <br><input type="button" value="Go To Swamp (can't be stopped)" onclick="setInterval(function(){game.camera.position = {x: 32120.979428936298, y: 2320.449999981}}, 1)">
        <br><label><input type="button"  value="Disable Beta SpeedHack" onclick="setInterval(function(){game.me.moveSpeed.x -= 45}, 1);setInterval(function(){game.me.moveSpeed.x += 45}, 1);">
        <br><font color="black">Enter your height - x (Visual)</font>
        <br><font color="black">Enter your level - r (Visual)</font>
        <br><font color="black">Enter your nick - j (Visual)</font>
        <br><font color="black">Enter your zoom - h</font>
        <br><font color="black">laungauge (in game)</font> <select class="selectLanguage" id="selectLanguage"><option value="en">English</option><option value="ru">Русский</option><option value="uk">Український</option><option value="pl">Polski</option><option value="pt">Português</option><option value="cs">Český</option><option value="ro">Română</option><option value="es">Español</option><option value="tr">Türk</option><option value="sk">Slovenski</option><option value="vi">Tiếng Việt</option><option value="de">Deutsch</option><option value="nl">Nederlands</option><option value="fr">Français</option><option value="kk">Қазақ</option><option value="th">ไทย</option><option value="be">Беларуская</option><option value="ja">日本語</option><option value="hi">हिंदी</option></select>
        <br><font color="black">Open / close menu - Insert</font>
        </div>
    `;
    function get(x) { return document.getElementById(x);}
    let cheatMenu = document.createElement('div');
    cheatMenu.innerHTML = cheatMenuHTML;
    document.body.appendChild(cheatMenu);
    let acc = get("accordian"),box = get ("cheatMenu");box.style.opacity = "0"
    document.addEventListener('keydown', (event) => {if (event.key === 'Insert') {
    let opac = box.style.opacity; if(opac == 1) {
    box.style.opacity = "0";}else {box.style.opacity = "1"
    }}})

    document.getElementById('injectButton').addEventListener('click', function() {
        let expHack = document.getElementById('ExpHackCheckbox').checked;
        let emojiHack = document.getElementById('EmojiCheckbox').checked;
        let LevelHack = document.getElementById('LevelCheckbox').checked;
        let SmoothMod = document.getElementById('SmoothCheckbox').checked;
        let AdminMode = document.getElementById('AdminModeCheckbox').checked;
        let ImmortalHack = document.getElementById('ImmortalModeCheckbox').checked;
        let AdBlocker = document.getElementById('AdBlockerCheckbox').checked;
        let RightSpeedHack = document.getElementById('RightSpeedHack').checked;
        let LeftSpeedHack = document.getElementById('LeftSpeedHack').checked;
        alert('Successfully!')

        if (expHack) {
            setInterval(function(){startBonus = 1}, 1)
        }
if (emojiHack) {
let i_i = 0;
let inj = false;
const interval = setInterval(() => {
{
document.body.onkeyup = function(e) {
if (e.keyCode == 81){
sendEmote(1);
}
if ( e.keyCode == 69){
sendEmote(10);
}}}}, );

        }

        if (LevelHack) {
           game.me.level = 100
        }
        if (SmoothMod) {
           game.maxInterpolateDistanceTeleport = 3500
        }
        if (AdminMode) {
           game.me.level = 999
           game.me.nick = '\x20[Admin]'
        }
        if (ImmortalHack) {
        setInterval(function(){game.me.hp = 99}, 1)
        }
        if (AdBlocker) {
        setInterval(function(){hidePokiAd();}, 1)
        }
        if (RightSpeedHack) {
        setInterval(function(){game.me.moveSpeed.x += 45}, 1);
        }
        if (LeftSpeedHack) {
        setInterval(function(){game.me.moveSpeed.x -= 45}, 1);



        }

    });
    document.addEventListener('keydown', function(event)
   {if(event.key === 'x') {
   var height = prompt('Enter your height')
   {game.me.height = height}
}});
    document.addEventListener('keydown', function(event)
   {if(event.key === 'r') {
   var level = prompt('Enter your level')
   {game.me.level = level}
}});
   document.addEventListener('keydown', function(event)
   {if(event.key === 'j') {
   var nick = prompt('Enter your nick')
   {game.me.nick = nick;}
}});
        document.addEventListener('keydown', function(event)
   {if(event.key === 'h') {
   var zoom = prompt('Enter your zom')
   {gameZoom = zoom}
}});
})();