AnonScRIPteR

BTCjam auto follow

Jun 9th, 2014
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. function httpGet(num)
  2. {
  3. var xmlHttp = null;
  4.  
  5. xmlHttp = new XMLHttpRequest();
  6. xmlHttp.open( "GET", "https://btcjam.com/users/"+ num +"/follow", false );
  7. xmlHttp.send( null );
  8. console.log("Followed id " +num);
  9. httpGet(num+1);
  10. }
  11. httpGet(1);
Advertisement
Add Comment
Please, Sign In to add comment