Automatyczne PVP...

Atakuje ludzi z którymi masz WARA

  1. // ==UserScript==
  2. // @name Automatyczne PVP...
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description Atakuje ludzi z którymi masz WARA
  6. // @author Vomar
  7. // @match https://kosmiczni.pl/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. function attack() {
  12. //if ($(".firstIcon > img[src*='war.png']").length)
  13. {
  14. $( "a[id^='quickpvpattack']" ).trigger('click');
  15. $( "a[id^='npvpattack']" ).trigger('click');
  16. }
  17. }
  18. setInterval(attack,1);