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
// Are you new to Javascript? | |
//Just copy, open firefox (did not work on Google Chrome for me) | |
//press f12, go console tab, paste, change according to instructions and press enter | |
//Thank you rafaelxavierborges for providing the message sending code | |
//I have just turned it into a spammer that counts from 0 and send the next number every second | |
var t=0; //what is the first number you want to send | |
var i=1; //delay in seconds | |
setInterval(function(){ | |
window.InputEvent = window.Event || window.InputEvent; | |
var d = new Date(); |