Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         Reset dsrpg autos
  3. // @namespace    https://dsrpg.uk
  4. // @version      0.1
  5. // @description  try to take over the world!
  6. // @author      
  7. // @match        https://dsrpg.uk/*
  8. // @grant        none
  9. // ==/UserScript==
  10.  
  11. var interval_fightCheck;
  12.  
  13. (function() {
  14.     'use strict';
  15.  
  16.     interval_fightCheck = setInterval(function(){document.getElementById("main").contentWindow.AutoCount = document.getElementById("main").contentWindow.MaxAutoCount;},200*5000);
  17. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement