[HELP] Can anyone help me fix this tiny macro?

SquatsDidThis

Newbie
Joined
Mar 28, 2013
Messages
43
Reaction score
16
Hey guys,

I have this tiny Twitter macro here, but how can I make it skip the first follow? The first follow being the person whose account's followers you're about to follow, because the current state of the code will end up unfollowing the first person before following the others below him/her. As you can imagine, that must be extremely annoying for them if you do it every 2 days or so...

Code:
SET !ERRORIGNORE YES
SET !LOOP 1
TAG POS={{!LOOP}} TYPE=BUTTON ATTR=TYPE:button&&CLASS:js-follow-btn<SP>follow-button<SP>btn&&TXT:Follow<SP>Following<SP>Unfollow<SP>Blocked<SP>Unblock<SP>Pen*
WAIT SECONDS=0

Any advice?
 
Last edited:
To be more beneficial, I thought I'd summerize. The following iMacro script will Mass follow on Twitter and will skip the first person who's follower's list you are trying to follow. Problem however is that it keeps skipping one between each follow. Anyone know how to fix that issue?

Code:
SET !ERRORIGNORE YES
SET !LOOP 2
TAG POS={{!LOOP}} TYPE=BUTTON ATTR=TYPE:button&&CLASS:js-follow-btn<SP>follow-button<SP>btn&&TXT:Follow<SP>Following<SP>Unfollow<SP>Blocked<SP>Unblock<SP>Pen*
WAIT SECONDS=0

Enjoy!:o
 
sadly there was nothing i could do in my inexperience sorry friend
 
make a txt file
paste below code
then change it to javascript extension ie .js

Code:
for(i=0;i<1000;i++){
if (i==0){}
else
{
var macro;
macro = "CODE:";
macro += "SET !ERRORIGNORE YES" + "\n"; 
macro += "TAG POS="+i+" TYPE=BUTTON ATTR=TYPE:button&&CLASS:js-follow-btn<SP>follow-button<SP>btn&&TXT:Follow<SP>Following<SP>Unfollow<SP>Blocked<SP>Unblock<SP>Pen*" + "\n"; 
macro += "WAIT SECONDS=0" + "\n"; 
iimPlay(macro)
}


}
 
OP pm me if you are still looking for your issue to be sorted out..

Thanks
 
Back
Top