Also here is simple JS expansion for Chrome.
Autokill all minions and players in arena.
https://mega.nz/#!cBA2lDjS!xW2-lPsdvTxR-ZJa3KNMzPLJYj1ycqboGyHrppgou90This expansion inject js code to the
http://clickfight.me/index.php?page=game and activated after each refresh.
For using this expansion you need to do Developer Mode - ON.
Also you can try it Ctrl+Shift+I - Console
But in console you need to draw it after each Jump in arena.
function btn()
{var baton = document.getElementsByClassName('npcBu');
if (baton.length > 0)
{
do {
$('.npcBu').click();
setTimeout(150);
$('.attackp').click();
setTimeout(150);
$('.attackp2').click();
setTimeout(150);
$('.attackp3').click();
setTimeout(150);
$('.attackp4').click();
setTimeout(150);
baton = document.getElementsByClassName('npcBu');
setTimeout(150);
} while (baton.length < 0)
}
else {setTimeout(2000);$('#jump').click();}
}
setInterval(btn,500);
