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

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.


Not working now .. can you plzz check wats wrong :(

thanks
 
yes the script seems to have stopped working again, would love if you could take a look again
 
There's a newer version to the one you quoted, posted in the same thread, is it also not working?
 
this old old script is now working again, very strange

javascript:elms=document.getElementById('friends').getElementsByTagName('li');for(var fid in elms){if(typeof elms[fid] === 'object'){fs.click(elms[fid]);}}

for me it was only doing 49 at a time last night but for others it is working fully they say (i only tried on events)

anyway if you are serious you should invest in some software
 
FYI- grease monkey FB invite script for FF allows you to select any number to invite. anybody else notice email invites to fan pages are not being sent as well?
 
Anyone else also notice that if they invite 49 people more than a few times a day the invites arent being sent?
 
I sent less than 50 invites for one fb page. It all went well. Then I tried to sent invites to the same people for the other fb page but I couldn't. They were all grey but I haven't invited them yet to that page. Somebody else experienced something like that?
After logout and login I could send invites again to these same people.
 
Code:
javascript:s=49;e=document.getElementById('friends').getElementsByTagName('li');b=[];for(var x=0;x<e.length;x++)if((e[x].className!='disabled')&&(e[x].className!='selected')){b.push(e[x])}function a(h,t){a=[];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)}h=a(s,b.length);for(var w=0;w<s;w++){fs.click(b[h[w]])}

This version will not select greyed out OR already selected friends. This means that ou can run the script multiple times and each time it will select 49 more friends (or another quantity if you change the number before running it again)..

How can I use this script? Copy/paste in address bar in chrome didn't work. :(
 
Have somebody tried to invite few 1000s of people lately? Like 100x49. Does it work?
 
Using the chrome extension just worked for me inviting 1800 friends to my new fan page. When I go back to the suggest to friends it shows all of them grayed out.
 
Using the chrome extension just worked for me inviting 1800 friends to my new fan page. When I go back to the suggest to friends it shows all of them grayed out.
Unfortunately the grayed out boxes mean nothing after FB's new tweaks. The majority of those friends are not receiving fp invitations.
 
Unfortunately the grayed out boxes mean nothing after FB's new tweaks. The majority of those friends are not receiving fp invitations.

I can confirm this.

Greyed out will often become ungreyed in a day or two and invites are not received. Greyed out doesn't really mean anything anymore.
 
Unfortunately the grayed out boxes mean nothing after FB's new tweaks. The majority of those friends are not receiving fp invitations.

I do see that out of 1800 friends I maybe got 5 new fans which is way less than I normally do. I should have at least got 200 from that since they are my real friends and I have only asked them to join 3 fan pages in the last 3 years.
 
I do see that out of 1800 friends I maybe got 5 new fans which is way less than I normally do. I should have at least got 200 from that since they are my real friends and I have only asked them to join 3 fan pages in the last 3 years.

There you go! :thumb:

Enjoy ..... :cool2:

 
Back
Top