Working Facebook Unfollow for Imacros Script

miana80

Newbie
Joined
Dec 1, 2013
Messages
7
Reaction score
4
hi all, i would like to share my personal imacros script to unfollow people,( not pages ) on Facebook
i mean this works for me, i guess it will for you.

log in to FB
instead the xxxxxxxxx, put your FB's url


VERSION BUILD=8601111 RECORDER=FX
TAB T=1
URL GOTO=hXXXs://XXX.facebook.XXX/XXXXXXXXXXXXXXXXXXXXXXXXXXXX/following
TAG POS=1 TYPE=SPAN ATTR=TXT:People
WAIT SECONDS=2
TAG POS=1 TYPE=A ATTR=TXT:Following
WAIT SECONDS=4
TAG POS=2 TYPE=A ATTR=TXT:Following
WAIT SECONDS=3
TAG POS=3 TYPE=A ATTR=TXT:Following
WAIT SECONDS=5
TAG POS=4 TYPE=A ATTR=TXT:Following
WAIT SECONDS=3
TAG POS=5 TYPE=A ATTR=TXT:Following
WAIT SECONDS=2
TAG POS=6 TYPE=A ATTR=TXT:Following
WAIT SECONDS=4
TAG POS=7 TYPE=A ATTR=TXT:Following
WAIT SECONDS=15


max to how much as you need, and press play loop.

see ya



P.S sometimes appens that the people to unfollow runs out, and the script wil end with error,
it's ok, you'll have only to wait the page to came back to normal, and run it again
 
Last edited:
Should put at least a 2 second wait between unfollows, won't be too long before you get a 'slow down' message from Facebook otherwise.
 
sure, i'm gonna edit the script right now.
thank you for the tip :)
 
Best to stay safe & make the wait time random as well - some at 2 secs, some at 3, some at 4.
 
ok, no problems at all.
lots of people will be gratefull if we build a safe script to unfollows,
because the imacros on the web are useless.
TY
 
hey im getting an error on line 4: RuntimeError: element A specified by TXT:People was not found, line: 4 (Error code: -921)

Its this line thats giving me an error: TAG POS=1 TYPE=SPAN ATTR=TXT:People

Can you help?
 
hi all, i would like to share my personal imacros script to unfollow people,( not pages ) on Facebook
i mean this works for me, i guess it will for you.

log in to FB
instead the xxxxxxxxx, put your FB's url


VERSION BUILD=8601111 RECORDER=FX
TAB T=1
URL GOTO=hXXXs://XXX.facebook.XXX/XXXXXXXXXXXXXXXXXXXXXXXXXXXX/following
TAG POS=1 TYPE=SPAN ATTR=TXT:People
WAIT SECONDS=2
TAG POS=1 TYPE=A ATTR=TXT:Following
WAIT SECONDS=4
TAG POS=2 TYPE=A ATTR=TXT:Following
WAIT SECONDS=3
TAG POS=3 TYPE=A ATTR=TXT:Following
WAIT SECONDS=5
TAG POS=4 TYPE=A ATTR=TXT:Following
WAIT SECONDS=3
TAG POS=5 TYPE=A ATTR=TXT:Following
WAIT SECONDS=2
TAG POS=6 TYPE=A ATTR=TXT:Following
WAIT SECONDS=4
TAG POS=7 TYPE=A ATTR=TXT:Following
WAIT SECONDS=15


max to how much as you need, and press play loop.

see ya



P.S sometimes appens that the people to unfollow runs out, and the script wil end with error,
it's ok, you'll have only to wait the page to came back to normal, and run it again

hey im getting an error on line 4: RuntimeError: element A specified by TXT:People was not found, line: 4 (Error code: -921)

Its this line thats giving me an error: TAG POS=1 TYPE=SPAN ATTR=TXT:People

Can you help?
 
hey im getting an error on line 4: RuntimeError: element A specified by TXT:People was not found, line: 4 (Error code: -921)

Its this line thats giving me an error: TAG POS=1 TYPE=SPAN ATTR=TXT:People

Can you help?

facebook made some change to that page, i'm working on it.
i'll post soon the new script
 
Ok, change this old line "TAG POS=1 TYPE=SPAN ATTR=TXT:People"

with this new one "TAG POS=1 TYPE=DIV ATTR=TXT:People"

and it'll work like a charm.

BTW, you can add all the lines u need till 400 by only changing the number in a progressive order

example;
TAG POS=201 TYPE=A ATTR=TXT:Following
WAIT SECONDS=5
TAG POS=202 TYPE=A ATTR=TXT:Following
WAIT SECONDS=3
TAG POS=203 TYPE=A ATTR=TXT:Following
WAIT SECONDS=2
TAG POS=204 TYPE=A ATTR=TXT:Following
WAIT SECONDS=4
TAG POS=205 TYPE=A ATTR=TXT:Following

enjoy and sorry for my crappy english
 
Ok, change this old line "TAG POS=1 TYPE=SPAN ATTR=TXT:People"

with this new one "TAG POS=1 TYPE=DIV ATTR=TXT:People"

and it'll work like a charm.

BTW, you can add all the lines u need till 400 by only changing the number in a progressive order

example;
TAG POS=201 TYPE=A ATTR=TXT:Following
WAIT SECONDS=5
TAG POS=202 TYPE=A ATTR=TXT:Following
WAIT SECONDS=3
TAG POS=203 TYPE=A ATTR=TXT:Following
WAIT SECONDS=2
TAG POS=204 TYPE=A ATTR=TXT:Following
WAIT SECONDS=4
TAG POS=205 TYPE=A ATTR=TXT:Following

enjoy and sorry for my crappy english

I keep getting this message: "RuntimeError: element DIV specified by TXT:People was not found, line: 4 (Error code: -921)"

EDIT: I removed this line: "TAG POS=1 TYPE=DIV ATTR=TXT:People" from script and works fine!Thank you OP!
 
Last edited:
facebook made some change......like always :(

anyway the script working is:

VERSION BUILD=8601111 RECORDER=FX
TAB T=1
URL GOTO=hXXXs://XXX.facebook.XXX/XXXXXXXXXXXXXXXXXXXXXXXXXXXX/following
WAIT SECONDS=2
TAG POS=1 TYPE=A ATTR=TXT:Following
WAIT SECONDS=4
TAG POS=2 TYPE=A ATTR=TXT:Following
WAIT SECONDS=3
TAG POS=3 TYPE=A ATTR=TXT:Following
WAIT SECONDS=5
TAG POS=4 TYPE=A ATTR=TXT:Following
WAIT SECONDS=3
TAG POS=5 TYPE=A ATTR=TXT:Following
WAIT SECONDS=2
TAG POS=6 TYPE=A ATTR=TXT:Following
WAIT SECONDS=4
TAG POS=7 TYPE=A ATTR=TXT:Following
WAIT SECONDS=15





enjoy :)
 
this last script is working, i am running as .iim without problems. thanks
 
Thanks a lot it working , tried it on chrome and it did not work , but when i did on firefox it did 100% , :)
 
Back
Top