Automatyczne PVP...

Atakuje ludzi z którymi masz WARA

目前为 2016-07-13 提交的版本。查看 最新版本

// ==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);