Advertisement
Guest User

Untitled

a guest
Nov 1st, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         Recruite Soldiers and Go Back
  3. // @namespace    http://tampermonkey.net/
  4. // @version      0.1
  5. // @description  try to take over the world!
  6. // @author       You
  7. // @match        https://dec1.die-staemme.de/game.php?village=4818&screen=barracks
  8. // @grant        none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12.     'use strict';
  13.  
  14.     setInterval( ()=>{
  15.         if( ( ( document.getElementById('replace_barracks') || {}).innerText || '' ).indexOf('Nächste Einheit') > -1 ){
  16.             // is already recruiting there is no need to recruite more
  17.             location.href = "https://dec1.die-staemme.de/game.php?village=4818&screen=main";
  18.             return;
  19.         }
  20.         let spearInput  = document.querySelectorAll("[name='spear']")[0];
  21.         let buttonRecurite = document.getElementsByClassName('btn btn-recruit')[0];
  22.         spearInput.value=10;
  23.         buttonRecurite.click();
  24.     }, 60000);
  25. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement