foes.io script

Currently allows you to press 'z' to enter game and 'x' to go to lobby

目前為 2017-10-04 提交的版本,檢視 最新版本

// ==UserScript==
// @name         foes.io script
// @namespace    http://foes.io/*
// @version      1.0
// @description  Currently allows you to press 'z' to enter game and 'x' to go to lobby
// @author       Meatman2tasty
// @match        http://foes.io/*
// @grant        none
// ==/UserScript==

//Enter game//
document.addEventListener("keydown", function(a) { // Press 'z' to enter game
    if (a.keyCode == 90) {
enterGame(true);
    }
}, false);


//input values//
document.getElementById("accName").value="";
document.getElementById("accEmail").value="";
document.getElementById("accPass").value="";



//Go to lobby//
document.addEventListener("keydown", function(a) { // Press 'x' to go to menu
    if (a.keyCode == 88) {
toggleMenu(true);
    }
}, false);

//name addition//

document.addEventListener("keydown", function(a) { // press '\' to for dope name
    if (a.keyCode == 220) {
document.getElementById("nameInput").value="Join s8n today";
    }
}, false);

QingJ © 2025

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