Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Anti AFK for The Lesser Fair Game
- // Author: Linspatz
- // Last Updated: April 24, 2016 at 19:15 GMT
- // Description:
- // Clicks the 'I am not' button after you have idled for 55 minutes or more so
- // that you do not get the penalty for being AFK longer than one hour when
- // you are ranked in the top 10% of a ladder
- // To remove the script without refreshing the page copy the first line below
- // this text.
- clearInterval(antiAFK);
- var antiAFK = setInterval(function () {
- if(getNumber($('.playarea').find('span').slice(0,1).text()) > 54){
- $('.playarea').find('button').slice(0,1)[0].onclick();
- }
- },60000)
Advertisement
Add Comment
Please, Sign In to add comment