[GET] iMacros Facebook Group Joiner

dori92

Regular Member
Joined
Aug 6, 2013
Messages
477
Reaction score
195
Hey everyone.Today i made a simple imacros bot to join facebook groups from a list.

First you need to install Firefox and Imacros.

Go to C:\Users\xxx\Documents\iMacros\Datasources and create a txt file and put your groups url one for line.Like this

To join a random group from the list you need this code.

If you wan to join groups one by one in line just change {{!VAR2}} with {{!LOOP}}

Imacros Code
Code:
VERSION BUILD=8920312 RECORDER=FX
SET !VAR1 EVAL("var randomNumber=Math.floor(Math.random()*[COLOR=#ff0000]180+ 60[/COLOR]); randomNumber;")
SET !VAR2 EVAL("var randomNumber=Math.floor(Math.random()*[COLOR=#00ff00]1534+ 1[/COLOR]); randomNumber;")
SET !ERRORIGNORE YES
SET !DATASOURCE [COLOR=#b22222]groups.txt[/COLOR]
SET !DATASOURCE_COLUMNS 1
SET !DATASOURCE_LINE {{!VAR2}}
URL GOTO = {{!COL1}}
TAG POS=2 TYPE=A ATTR=TXT:Join<SP>Group
WAIT SECONDS={{!VAR1}}
Javascript Code (change the blue number with number of loops u want.)
Code:
var macro1 = "CODE:";
macro1 += "VERSION BUILD=8920312 RECORDER=FX" + "\n";
macro1 += "SET !VAR1 EVAL(\"var randomNumber=Math.floor(Math.random()*[COLOR=#ff0000]180 + 60[/COLOR]); randomNumber;\")" + "\n";
macro1 += "SET !VAR2 EVAL(\"var randomNumber=Math.floor(Math.random()*[COLOR=#00ff00]1534+ 1[/COLOR]); randomNumber;\")" + "\n";
macro1 += "SET !ERRORIGNORE YES" + "\n";
macro1 += "SET !DATASOURCE [COLOR=#b22222]groups.txt[/COLOR]" + "\n";
macro1 += "SET !DATASOURCE_COLUMNS 1" + "\n";
macro1 += "SET !DATASOURCE_LINE {{!VAR2}}" + "\n";
macro1 += "URL GOTO = {{!COL1}}" + "\n";
macro1 += "TAG POS=2 TYPE=A ATTR=TXT:Join<SP>Group" + "\n";
macro1 += "WAIT SECONDS={{!VAR1}}" + "\n";
macro1 += "" + "\n";
macro1 += "" + "\n";
for (i = 0; i < [COLOR=#0000ff]30[/COLOR]; i++)
{
  iimPlay(macro1);
}

The red numbers are random seconds delay from 16 to 45 seconds.The green numbers are the number of groups you have in the txt file list.


Enjoy :D
 
Thanks for the script man! It works great :)
 
So at first I need to scrape facebook groups? If I can't do that, this macro is pointless. :)
 
That's nice if you already have a list of groups. Thanks
 
So at first I need to scrape facebook groups? If I can't do that, this macro is pointless. :)
You can scrape facebook groups by going to
Code:
https://www.facebook.com/search/groups/?q=[COLOR=#ff0000]keyword 
[/COLOR]
Replace the red word.
Scroll down with "end" button from your keyboard or if you are lazy paste this code to console
Code:
setInterval(function() { window.scrollTo(0, document.body.scrollHeight); }, 100);

Than extract all links with this chrome extension and make sure to options select txt not csv.

After extration open your file with notepad++ and delete everything except lines with
Code:
http://facebook.com/groups/
If you dont know how to do it here is a example.
 
Nice man thanks for the share, this will come in handy.
 
Thank you man! :cool:
We will wait for the macro to group autoposting :)
 
Hi, thanks for sharing.
I can't figure out how and where to put those imacros and javascript codes to run properly.
I can't run them both on the same time. When I run imacros code, the only thing it does is going through the list of my fb groups, but not joining them.
 
Hi, thanks for sharing.
I can't figure out how and where to put those imacros and javascript codes to run properly.
I can't run them both on the same time. When I run imacros code, the only thing it does is going through the list of my fb groups, but not joining them.

Make sure you have the facebook in english.
 
Dori92.. Do you know how to make like that using this tool... i have 2k fake account... but i want to use this method..
 
Dori92.. Do you know how to make like that using this tool... i have 2k fake account... but i want to use this method..
Please be more clear.You want a tool to like a post from your 2k accounts ?
 
ok like this i have 2k fake account.. i want every 2k like my facebook page every post in that facebook page... can you do that?
 
ok like this i have 2k fake account.. i want every 2k like my facebook page every post in that facebook page... can you do that?
You will need proxies for that and i can't do it with imacros.
 
Back
Top