Evoworld.io Hack menu

Cheats for EvoWorld.io

目前為 2024-02-09 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 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      0.6
// @description  Cheats for EvoWorld.io
// @author       You
// @license      MIT
// @match        https://evoworld.io/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=evoworld.io
// @grant        none
// ==/UserScript==

(function() {
    let cheatMenuHTML = `
    <div id="cheatMenu" style="position: absolute; top: 480px; 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><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>
        <label><input type="checkbox" id="AdminModeCheckbox"> Admin mode (Visual)</label><br>
        <label><input type="checkbox" id="ImmortalModeCheckbox"> Immortal (Visual)</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">
        <br><label><input type="button" value="Minimum zoom" onclick="gameZoom -= 100">
        <br><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><font color="black">Enter your height - q (Visual)</font>
        <br><font color="black">___________________________</font>
        <br><font color="black">Connect to private server</font></br><font color="black">you need to press before the game</font>
        <br><select class="selectServer" id="selectServer" style="color: rgb(0, 0, 0)">
        </option><option value="null">Choice your private server
        </option><option value="wss://15-235-86-116.evoworld.io:6540">Private server 1</br>
        </option><option value="wss://162-19-84-53.evoworld.io:6540">Private server 2</br>
        </option><option value="wss://15-235-180-40.evoworld.io:3540">Private server 3</br>
        </option><option value="wss://51-178-74-235.evoworld.io:6540">Private server 4</br>
    </div>
    `;

    let cheatMenu = document.createElement('div');
    cheatMenu.innerHTML = cheatMenuHTML;
    document.body.appendChild(cheatMenu);
    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;
        let AdminMode = document.getElementById('AdminModeCheckbox').checked;
        let ImmortalHack = document.getElementById('ImmortalModeCheckbox').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)



        }

    });
    document.addEventListener('keydown', function(event)
   {if(event.key === 'q') {
   var height = prompt('Enter your height')
   {game.me.height = height}
}});
})();