linspatz

Anti AFK for The Lesser Fair Game

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