CSGOPolygonCoder

Untitled

Jan 20th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. // ==UserScript==
  2. // @name REDDIT SPAM BOT
  3. // @version 0.1
  4. // @author You
  5. // @match *://www.reddit.com/r/csgogambling/*
  6. // @grant none
  7. // ==/UserScript==
  8.  
  9. setTimeout(function(){
  10. var TOPIC1=`FREE 5$ | CSGOPolygon.com | Cᴏᴅᴇ: EZ500`;
  11. var MESSAGE1=`~~===================================~~
  12.  
  13. >**FREE 5$ | CSGOPolygon.com | Cᴏᴅᴇ: EZ500**
  14.  
  15. ~~===================================~~
  16.  
  17. >***Enjoy free Skins!***
  18.  
  19. ~~===================================~~
  20.  
  21. >**Bot for CSGOPolygon: [Here!](https://www.youtube.com/watch?v=eXkgXl2-7qk)**
  22.  
  23. ~~===================================~~`;
  24.  
  25. function MakePost(){
  26. var RollTopic = Math.floor((Math.random() * 100) + 1);
  27. if (RollTopic < 50){
  28. $("#title-field textarea").val(TOPIC1);
  29. $(".md textarea").val(MESSAGE1);
  30. }else{
  31. $("#title-field textarea").val(TOPIC1);
  32. $(".md textarea").val(MESSAGE1);
  33. }
  34. setTimeout(function(){
  35. $(".spacer .btn").click();
  36. }, 10 * 60 * 1000);
  37. }
  38.  
  39. if (location.href === "https://www.reddit.com/r/csgogambling/submit?selftext=true"){
  40. MakePost();
  41. }else{
  42. location.href ="https://www.reddit.com/r/csgogambling/submit?selftext=true";
  43. }
  44. }, 1000);
Add Comment
Please, Sign In to add comment