Atakuje ludzi z którymi masz WARA
当前为
// ==UserScript==
// @name Automatyczne PVP...
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Atakuje ludzi z którymi masz WARA
// @author Vomar
// @match https://kosmiczni.pl/*
// @grant none
// ==/UserScript==
function attack() {
if ($(".firstIcon > img[src*='war.png']").length) {
$( "a[id^='quickpvpattack']" ).trigger('click');
}
}
setInterval(attack,1);