Last active
May 29, 2019 07:59
-
-
Save RaidAndFade/41706731b07adbce5e70f78ecb25af1d to your computer and use it in GitHub Desktop.
Spambot for my game i made a while ago. Just thought it'd be cool
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var w = require("ws"); | |
| var c = new w("wss://gsv.gocode.it:5453",{rejectUnauthorized:false,headers:{"origin":"https://gocode.it"}}); | |
| c.on("open",()=>{ | |
| c.send("0|aaaaaaaa|undefined") | |
| c.send("3|0") | |
| setInterval(s.bind(this,c),100); | |
| }); | |
| function s(c){ | |
| setTimeout(c.send.bind(c,"6|aaaaaaaaaa|0"),100); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment