[GET] iMacros Facebook Group Joiner

Thanks for sharing,
How can I sort Facebook groups by the number of members?
 
So at first I need to scrape facebook groups? If I can't do that, this macro is pointless. :)

If you can't search for facebook groups, you being here is pointless.


Great share by the way. i'm going to try this.
 
Last edited:
VERSION BUILD=8920312 RECORDER=FX
SET !VAR1 EVAL("var randomNumber=Math.floor(Math.random()*180+ 60); randomNumber;")
SET !VAR2 EVAL("var randomNumber=Math.floor(Math.random()*1534+ 1); randomNumber;")
SET !ERRORIGNORE YES
SET !DATASOURCE groups.txt
SET !DATASOURCE_COLUMNS 1
SET !DATASOURCE_LINE {{!LOOP}}
URL GOTO = {{!COL1}}
TAG POS=2 TYPE=A ATTR=TXT:Join<SP>Group
WAIT SECONDS={{!VAR1}}{{!LOOP}}


Thanks for the script but i have used the code above and i got this error "SyntaxError: illegal character, line 2 (Error code: -1001)"
 
Can you make the version to search and like FB pages?
 
macro1 += "SET !VAR1 EVAL(\"var randomNumber=Math.floor(Math.random()*180 + 60); randomNumber;\")" + "\n";
macro1 += "SET !VAR2 EVAL(\"var randomNumber=Math.floor(Math.random()*1534+ 1); randomNumber;\")" + "\n";

You know you can just use javascript to generate a random number instead of using javascript to add those lines into the imacros which then calls javascript to evaluate those lines again.
 
iMacros working fine, I jused Play Loop but after 5-10 minutes it just stop. Do you known why? Can I make it runs all the day?

Thanks
 
iMacros working fine, I jused Play Loop but after 5-10 minutes it just stop. Do you known why? Can I make it runs all the day?

Thanks
Yes u can make loop 99999
 
Thanks for sharing this!

Maybe you can help me with something related to imacros. .

I run everyday the same macros, but it's a pain in the ass to remember and to do it "manually"... do you know a way to set the imacros to execute the script everyday without you running the macros "manually"???

Thanks mate!

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 sharing this!

Maybe you can help me with something related to imacros. .

I run everyday the same macros, but it's a pain in the ass to remember and to do it "manually"... do you know a way to set the imacros to execute the script everyday without you running the macros "manually"???

Thanks mate!
I always do it manually so i dont have an idea how to do it
 
It might be a good idea to do it as I thought, right? :-)

This task scheduler is for windows, my computer is a MAC. There's a similar program called for MAC called Automator, but I haven't been able to make it work...

My technical knowledge is limited... it would be awesome if someone can sort this out for the MAC users!

Thanks a lot in any case!

I always do it manually so i dont have an idea how to do it
 
Back
Top