Advertisement
Guest User

Untitled

a guest
Dec 27th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.75 KB | None | 0 0
  1. // ==UserScript==
  2. // @name         Tribalwars sniper
  3. // @namespace    http://tampermonkey.net/
  4. // @version      0.1
  5. // @description  Tribalwars sniper
  6. // @author       Doomness
  7. // @match        https://*.tribalwars.nl/game.php?village=*&screen=place&try=confirm
  8. // @grant        none
  9. // @require      http://code.jquery.com/jquery-latest.js
  10. // @run-at       document-end
  11. // ==/UserScript==
  12.  
  13. var TIME = "23:57:57"; //tijd van gewenste aankomst
  14. var MILISECOND_DELAY = 507; //vertraging in miliseconden
  15.  
  16. $(document).ready(function(){
  17.     snipe();
  18. })
  19.  
  20. function snipe(){
  21.     if($("span.relative_time").text().indexOf(TIME) >= 0){
  22.         setTimeout(function() {
  23.             $("input.troop_confirm_go").click();
  24.         }, MILISECOND_DELAY);
  25.     }
  26.     setTimeout(snipe, 25);
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement