Advertisement
Guest User

Auto Request Smashladder

a guest
Jul 2nd, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /* == BE ALLTIME IN THE QUQUE LIST ==
  2.   1. OPEN F12 AND GO TO CONSOLE
  3.   2. COPY PASTA INTO CONSOLE BOX
  4.   3. PRESS ENTER -> ALL 10 MIN AUTO REQUEST ALL GAMES (PM,MELEE,3DS,WII U)
  5. */
  6.  
  7. setInterval( ()=>{
  8.     for(let i=1;i<5;i++){ /* pm =0,melee=1,3ds=3,wiiu=4 */
  9.         $.ajax({
  10.             type: "POST",
  11.             url: "https://www.smashladder.com/matchmaking/begin_matchmaking",
  12.             data: {team_size:1,game_id:i,match_count:0,title:"only with voice communication",ranked:0,host_code:"43fde24"},
  13.         });
  14.     }
  15. },600000) /* ALL 10MIN*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement