slay.one script account spam

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

目前为 2017-10-04 提交的版本。查看 最新版本

// ==UserScript==
// @name         slay.one script account spam
// @namespace    https://slay.one/*
// @version      1.0
// @description  Currently allows you to press 'z' to create account and 'x' to logout
// @author       Meatman2tasty
// @match        https://slay.one/*
// @grant        none
// ==/UserScript==

//account spam//
document.addEventListener("keydown", function(a) { // Press 'z' to create account
    if (a.keyCode == 90) {
document.getElementById("inputUserName").value= Math.random().toString(36).substring(7);
document.getElementById("inputUserEmail").value= Math.random().toString(36).substring(7) + "@mail.com";
document.getElementById("inputUserPass").value= Math.random().toString(36).substring(7);
setTimeout(registerAcc(0), 1000);
    }
}, false);


document.addEventListener("keydown", function(a) { // Press 'x' to log out
    if (a.keyCode == 88) {
setTimeout(logout(0), 1000);
    }
}, false);

QingJ © 2025

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