Evoworld.io Hacks

Cheats for EvoWorld.io

目前为 2024-02-03 提交的版本。查看 最新版本

// ==UserScript==
// @name         Evoworld.io Hacks
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Cheats for EvoWorld.io
// @author       You
// @license      MIT
// @match        https://evoworld.io/*
// @grant        none
// ==/UserScript==

(function() {
    let modMenuHTML = `
    <div id="modMenu" style="position: absolute; top: 20px; left: 1960px; 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><br>
        <label><input type="checkbox" id="EmojiCheckbox"> Emoji Hack (Buttons Q , E)</label><br>
        <label><input type="checkbox" id="LevelCheckbox"> Level 100 (Visual)</label><br>
        <label><input type="checkbox" id="SmoothCheckbox"> Smooth movement</label><br>
        <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">
    </div>
    `;

    let modMenu = document.createElement('div');
    modMenu.innerHTML = modMenuHTML;
    document.body.appendChild(modMenu);
    function get(x) { return document.getElementById(x);}

    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;
        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); // dislike

                }

                 if ( e.keyCode == 69){

                        sendEmote(10); // haha

                }

            }


        }

    }, );

        }

        if (LevelHack) {
           game.me.level = 100
        }
        if (SmoothMod) {
           game.maxInterpolateDistanceTeleport = 3500


        }
    });
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址