I already love using this for passively autoing my "Rate Photos" feature in Gamekit. I can just leave this on and rack up points passively. But, I did have a slight issue. You can only rate a picture every one(1) second. So with this limitation, I had to manually go into the script and change line 28, and switch it to setTimeout(tryRate, 1300); .
However, you do have to check up on it bit after you let it run. This is because it will give you a captcha.
But overall, it's great. And honestly, if you want it to keep doing it-- you can also just get an auto clicker that runs every x seconds on that same spot where the Captcha is.
Works great!
I already love using this for passively autoing my "Rate Photos" feature in Gamekit. I can just leave this on and rack up points passively. But, I did have a slight issue. You can only rate a picture every one(1) second. So with this limitation, I had to manually go into the script and change line 28, and switch it to
setTimeout(tryRate, 1300);
.Preview; $(document).ready(function(){ tryRate(); });
However, you do have to check up on it bit after you let it run. This is because it will give you a captcha. But overall, it's great. And honestly, if you want it to keep doing it-- you can also just get an auto clicker that runs every x seconds on that same spot where the Captcha is.