Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Add Peoples do friend list
  3. // @version 1.0
  4. // @author Kaszanla
  5. // @match *://steamcommunity.com/search/*
  6. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10. setInterval(function(){
  11. var Nick = "";
  12. var possible = "0123456789qwertyuiopasdfghjklzxcvbnm";
  13. for( var i=0; i < 3; i++ ){
  14. Nick += possible.charAt(Math.floor(Math.random() * possible.length));
  15. }
  16. location.href= "http://steamcommunity.com/search/#filter=users&text="+Nick;
  17. jQuery(".search_result_friend a").click();
  18. }, 1000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement