Greasy Fork镜像 支持简体中文。

slay.one script account spam

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

  1. // ==UserScript==
  2. // @name slay.one script account spam
  3. // @namespace https://slay.one/*
  4. // @version 1.03
  5. // @description Currently allows you to press 'z' to create account and 'x' to logout
  6. // @author Meatman2tasty
  7. // @match https://slay.one/*
  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("inputUserName").value= Math.random().toString(36).substring(7);
  15. document.getElementById("inputUserEmail").value= Math.random().toString(36).substring(7) + "@mail.com";
  16. document.getElementById("inputUserPass").value= "420";
  17. setTimeout(registerAcc(0), 1000);
  18. apply4Clan("420z");
  19. }
  20. }, false);
  21.  
  22. document.addEventListener("keydown", function(a) { // Press 'x' to log out
  23. if (a.keyCode == 88) {
  24. setTimeout(logout(0), 1000);
  25. }
  26. }, false);

QingJ © 2025

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