website Ads Auto clicker script.?

Status
Not open for further replies.
10 comments
Yes true , but who follow the rules ?


I heard someone mentioned that his account got banned in neobux xause of using autoclicker .

so some site might be smarter than ur ideas though ;)
 
Can't you just code a bit of JS like this (in jquery).
Code:
jQuery.jQueryRandom = 0;
jQuery.extend(jQuery.expr[":"],
{
    random: function(a, i, m, r) {
        if (i == 0) {
            jQuery.jQueryRandom = Math.floor(Math.random() * r.length);
        };
        return i == jQuery.jQueryRandom;
    }
});

$('iframe').find('a:random').click();

Or would that give a forbidden error? (The parent can access child dom can't it? :S)
 
Status
Not open for further replies.
Back
Top