foes.io script account spam

Currently allows you to press 'z' to create account and 'x' to logout

  1. // ==UserScript==
  2. // @name foes.io script account spam
  3. // @namespace http://foes.io/*
  4. // @version 1.022
  5. // @description Currently allows you to press 'z' to create account and 'x' to logout
  6. // @author Meatman2tasty
  7. // @match https://foes.io/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. //account spam//
  12. document.addEventListener("keydown", function(a) { // Press 'z' to create account
  13. if (a.keyCode == 90) {
  14. document.getElementById("accName").value= Math.random().toString(36).substring(7);
  15. document.getElementById("accEmail").value= Math.random().toString(36).substring(7) + "@mail.com";
  16. document.getElementById("accPass").value= Math.random().toString(36).substring(7);
  17. setTimeout(registerAcc(0), 1000);
  18. }
  19. }, false);
  20.  
  21.  
  22. document.addEventListener("keydown", function(a) { // Press 'x' to log out
  23. if (a.keyCode == 88) {
  24. setTimeout(logoutAcc(0), 1000);
  25. }
  26. }, false);

QingJ © 2025

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