Advertisement
Guest User

Untitled

a guest
Jan 24th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Wysłanie ataku w czasie
  3. // @version 1.2
  4. // @author Filip Klich
  5. // @match *://*.plemiona.pl/*&screen=place&try=confirm*
  6. // ==/UserScript==
  7. var time = '17:08:25';
  8. var milliseconds = 200;
  9.  
  10. magic();
  11.  
  12. function magic() {
  13. if(document.getElementsByClassName("relative_time")[0].innerText.slice(-8) === time)
  14. setTimeout(function() { document.getElementById("troop_confirm_go").click() }, milliseconds);
  15. else
  16. setTimeout(magic,1);
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement