Spam bot

Automatically vote STAY

  1. // ==UserScript==
  2. // @name Spam bot
  3. // @namespace https://www.reddit.com/u/Supervarken_
  4. // @version 0.2
  5. // @description Automatically vote STAY
  6. // @author /u/Supervarken_
  7. // @match https://www.reddit.com/robin/
  8. // @grant none
  9. // ==/UserScript==
  10. /* jshint -W097 */
  11. 'use strict';
  12.  
  13. function sendMessage(message){
  14. $("#robinSendMessage > input[type='text']").val(message);
  15. $("#robinSendMessage > input[type='submit']").click();
  16. }
  17.  
  18.  
  19. for (i = 1000; i < 100000000; i += 5000){
  20. setTimeout(function(){sendMessage("Join the spam army! Install https://greasyfork.org/nl/scripts/18467-spam-bot as a userscript!") }, i);
  21. }