"INVITE ALL CODE" or "TOGGLE ALL" new limit?

I used it yesterday I don't think it worked though.
Posted via Mobile Device

It definitely doesn't work. thats why they made it so the code selects all again. If you have more than 49 selected it looks like it works and greys out the people selected, but the invites don't go through.
 
Any updates on this? Is there still a 49 friend limit?
 
It seems like the number is now based off a 24hr period but I am not sure what that number is. I have an account with 5k friends that I have been testing with it over the last few days. I am not sure about my assumption at all can anyone else testing this shed some light?
 
mb facebook blocked option to send invite to all friend ... mb its just bug in his system ... who will know ... we can just w8 :(
 
It seems like the number is now based off a 24hr period but I am not sure what that number is. I have an account with 5k friends that I have been testing with it over the last few days. I am not sure about my assumption at all can anyone else testing this shed some light?

We added a for loop to the code so it only selects 49. Then we run it for however many it takes to get through our friends.

So far fans are starting to arrive again but I don't see any 24 hour limit, but we do use a lot of different accounts.
 
If the users are greyed out does that mean they got the invite or was it just "sent" to them?
Posted via Mobile Device
 
If the users are greyed out does that mean they got the invite or was it just "sent" to them?
Posted via Mobile Device
It used to mean that if they were grayed out they already "liked" the page or they
had already been invited by you OR someone else 'before' you.


Now I am no longer sure.

HTH .... :cool2:

 
Last edited:
It used to mean that if they were grayed out they already "liked" the page or they
had already been invited by you OR someone else 'before' you.


Now I am no longer sure.

HTH .... :cool2:


Yea I used the select all javascript code and it greyed out everyone (not sure what that means now)
Posted via Mobile Device
 
My guess it means fb knows ur spamming the page and now u can't invite any more friends to that page
 
Can u share the java code for selecting 49 frnds automatically ?? plzzz
 
My guess it means fb knows ur spamming the page and now u can't invite any more friends to that page

Yup, I had a account roadblocked today I unblocked it now I can't invite at all. Even if the page is totally different then the one that caused the block
Posted via Mobile Device
 
Can u share the java code for selecting 49 frnds automatically ?? plzzz

I just did a quick rewrite of the "select all" code. This version will select 49 random friends. You can change the number by changing the 49 with any other number of your choice (but no bigger than the amount of your friends). I think this would be better for testing, because FB can easily create some filters that would discard "seemingly machine-selected" invitations. However, if you select RANDOM friends everytime, there's no way to know if they were selected automatically.

Code:
javascript:s=49;e=document.getElementById('friends').getElementsByTagName('li');l=e.length;function a(h,t){a=new Array();for(var i=0;i<t;i++)a[i]=i+1;function o(){return(Math.round(Math.random())-0.5)}a.sort(o);return a.slice(0,h)}a=a(s,l);for(var z=0;z<s;z++)if(typeof e[a[z]]==='object'){fs.click(e[a[z]])}
Here's a beautified version if anyone's interested:

Code:
s = 49;
e = document.getElementById('friends').getElementsByTagName('li');
l = e.length;

function a(h, t) {
    a = new Array();
    for (var i = 0; i < t; i++) a[i] = i + 1;

    function o() {
        return (Math.round(Math.random()) - 0.5);
    }
    a.sort(o);
    return a.slice(0, h);
}

a = a(s, l);

for (var z = 0; z < s; z++) if (typeof e[a[z]] === 'object') {
    fs.click(e[a[z]]);
}
I know that's probably not the best way to do it, but it works, so who cares.
 
Back
Top