The following is in markdown.
Run the following code in your browser (Chrome) developer console.
Then, in your browser console, to create a message, run the following code.
You can reassign the city
and office
variables to change the location of the message.
To actually send the message, first list the available websockets (again, everything is in the developer console).
Then, using the array outputted, click the array and find the 0
(meaning first) item. There should only be one item in the array - this is the item which holds the server's websocket. Right click that item (should say something like "https://www.telegraphsimulator.com"), and choose "Store as object as global variable".
Finally, you are able to send message.
To send a message, simply run temp1.send(JSON.stringify(send))
.
You can spam this by going in the developer console and pressing the up arrow key to go to your last sent command.
To change the message you send, simply press up a couple more times to find the createNewMessage
command, and run it again with new text.
Then just send the message you want to again (i.e. temp1.send(JSON.stringify(send))
).
And that's it!
ℹ️ Bypass script: : running...