Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name EM auto-join for bots
- // @description Auto-joins open games in the current lobby.
- // @match http://www.epicmafia.com/lobby
- // ==/UserScript==
- //Encase script
- EMaj=String(function() {
- //Check every 5 seconds
- setInterval(function() {
- //First page
- $.ajax({url:"/game/find?page=1",method:"get"}).success(function(json) {
- //Look for an open table
- json.data.some(function(table) {
- //Status ID "0" denotes open games (no password)
- if(table.status_id===0) {
- //Go to it
- window.location="/game/"+table.id
- //Don't continue the loop
- return true
- }
- })
- })
- },5000)
- })
- //Inject script
- script=document.createElement("script")
- script.textContent="("+EMaj+")()"
- document.body.appendChild(script)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement