Auto-Continue
Posted: Tue Sep 11, 2007 3:46 am
So, for those of you that are tired of clicking continue over and over I have a treat for you. I spent an hour or so and wrote a quick and dirty javascrirpt auto clicker (really uses xmlhttp) for you. Just copy and paste this line into the URL bar of your browser and the pages will go by every 15 seconds. It will only do it for the first 10 pages so after that you will need to paste it again.
Also, don't let it click through on the last page of the tease will get a rating of 1. Didn't really care to fix this... just rate the tease within the timeout.
The timeout is set for 30 seconds between refreshes.
Enjoy!
-nilcum
Also, don't let it click through on the last page of the tease will get a rating of 1. Didn't really care to fix this... just rate the tease within the timeout.
The timeout is set for 30 seconds between refreshes.
Code: Select all
javascript:function g(){var u=document.getElementsByTagName('a')[6];var r=window.XMLHttpRequest?new XMLHttpRequest():new ActiveXObject("MSXML2.XMLHTTP.3.0");r.onreadystatechange=function() {if(r.readyState==4 && r.status==200) {document.body.innerHTML=r.responseText;clearTimeout(x);}};r.open('GET',u,true);r.send(null);};for(var i=1;i<11;i++) {var x=setTimeout("g();",30000*i);}
-nilcum