Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.08 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Discussions SPAM BOT
  3. // @version 1.0
  4. // @author Kaszanka
  5. // @match *://steamcommunity.com/groups/CSGOPolygon/discussions*
  6. // @match *://steamcommunity.com/groups/CSGOPolygon/discussions/*
  7. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. setTimeout(function(){
  12. var TOPIC=`CSGODᴏᴜʙʟᴇ.GG Hᴀᴄᴋs | Cᴏᴅᴇ: KASZANKA | Fʀᴇᴇ 1$`;
  13. var MESSAGE=`
  14. [strike][b]=====================================================================[/b][/strike]
  15. [h1][/h1]
  16. [h1][b]Script: http://pastebin.com/B1efK56n[/b][/h1]
  17. https://www.youtube.com/watch?v=39KWLctnfYM
  18. [strike][b]=====================================================================[/b][/strike]
  19. [h1][/h1]
  20. [h1][b]Script: http://pastebin.com/yFphGZaa[/b][/h1]
  21. https://www.youtube.com/watch?v=NOYj35Hau7I
  22. [strike][b]=====================================================================[/b][/strike]
  23. [h1][/h1]
  24. [h1][b]Script: http://pastebin.com/B1efK56n[/b][/h1]
  25. https://www.youtube.com/watch?v=3zjZtrHnGVA
  26. [strike][b]=====================================================================[/b][/strike]
  27. [h1][/h1]
  28. [h1][b]Script: http://pastebin.com/B1efK56n[/b][/h1]
  29. https://www.youtube.com/watch?v=HkXPbW5BGSE
  30. [strike][b]=====================================================================[/b][/strike]`;
  31. function MakePost(){
  32. setTimeout(function(){
  33. setTimeout(function(){
  34. jQuery(".forum_topic_input").val(TOPIC);
  35. jQuery(".forumtopic_reply_textarea").val(MESSAGE);
  36. setInterval(function(){
  37. jQuery.noConflict(jQuery(".forum_newtopic_action .btn_green_white_innerfade").click());
  38. setTimeout(function(){
  39. location.reload();
  40. }, 12000);
  41. }, 2000);
  42. }, 1000);
  43. }, 10000);
  44. }
  45. function MakeComment(){
  46. setTimeout(function(){
  47. jQuery(".forumtopic_reply_textarea").val(MESSAGE);
  48. setInterval(function(){
  49. jQuery.noConflict(jQuery(".commentthread_entry_submitlink .btn_green_white_innerfade").click());
  50. setTimeout(function(){
  51. location.reload();
  52. }, 12000);
  53. }, 1000);
  54. }, 10000);
  55. }
  56.  
  57. if (location.href === "https://steamcommunity.com/groups/CSGOPolygon/discussions/"){
  58. MakePost();
  59. }else if (location.href === "https://steamcommunity.com/groups/CSGOPolygon/discussions"){
  60. MakePost();
  61. }else if (location.href === "http://steamcommunity.com/groups/CSGOPolygon/discussions/"){
  62. MakePost();
  63. }else if (location.href === "http://steamcommunity.com/groups/CSGOPolygon/discussions"){
  64. MakePost();
  65. }else{
  66. if (jQuery(".commentthread_comments .responsive_body_text").length === 3){
  67. location.href = "https://steamcommunity.com/groups/CSGOPolygon/discussions/";
  68. }else{
  69. MakeComment();
  70. }
  71. }
  72. }, 5000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement