Skip to content

Instantly share code, notes, and snippets.

@RaidAndFade
Last active May 29, 2019 07:59
Show Gist options
  • Select an option

  • Save RaidAndFade/41706731b07adbce5e70f78ecb25af1d to your computer and use it in GitHub Desktop.

Select an option

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
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