Clicker

Clicks attack every second no matter how many autos you own.

  1. // ==UserScript==
  2. // @name Clicker
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Clicks attack every second no matter how many autos you own.
  6. // @author Mike
  7. // @match http://tampermonkey.net/index.php?version=3.12.58&ext=dhdg&updated=true
  8. // @grant none
  9. // ==/UserScript==
  10. /* jshint -W097 */
  11. 'use strict';
  12.  
  13. // Your code here...
  14.  
  15. setInterval(function () {document.getElementById("attack-btn").click();}, 1000);