Evoworld.io Hacks

Cheats for EvoWorld.io

当前为 2024-02-03 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==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


        }
    });
})();