{IMACROS} Follow another Twitter User's followers Quickly!

is there a way to set it so that it doesnt unfollow people you already follow?
 
is there a way to set it so that it doesnt unfollow people you already follow?

This here. ^

I would think it has something to do with IGNORE ERROR, but I'm not that illiterate with iMacro's, so I can't say for sure.
 
2 accounts suspended fast as fuck because of this. great.
 
This here. ^

I would think it has something to do with IGNORE ERROR, but I'm not that illiterate with iMacro's, so I can't say for sure.

Yes this would be great if it doesnt unfollow people..... does anyone have an idea?
 
I've tried working out and have yet to figure it out, if anyone would like to edit the script be my guest!
 
is there a way to set it so that it doesnt unfollow people you already follow?

Yes, you have to use javascript.
Here's a quick js I wrote that detects followers and ignores it goes to the next.
Just save it as a .js in your imacros. followCount is how many times to loop.

Code:
followCount = 25;
i = 5;
for (f=1; f<=followCount; f++ && i++){
    e = window.document.getElementsByClassName('follow-text')[i];
    var css = window.document.defaultView.getComputedStyle(e,null);
    display = css.getPropertyValue('display');

    if(display == 'block'){
        var macro = 'CODE:' +
            'TAG POS={{i}} TYPE=BUTTON ATTR=TXT:Follow<SP>Following<SP>Unfollow<SP>Blocked<SP>Unblock<SP>Pen*';
            iimSet("i",i); iimPlay(macro); iimDisplay(i);
    }else {
       iimDisplay(i);
    }   
}//end of Message Count
iimExit();
 
Yes, you have to use javascript.
Here's a quick js I wrote that detects followers and ignores it goes to the next.
Just save it as a .js in your imacros. followCount is how many times to loop.

Code:
followCount = 25;
i = 5;
for (f=1; f<=followCount; f++ && i++){
    e = window.document.getElementsByClassName('follow-text')[i];
    var css = window.document.defaultView.getComputedStyle(e,null);
    display = css.getPropertyValue('display');

    if(display == 'block'){
        var macro = 'CODE:' +
            'TAG POS={{i}} TYPE=BUTTON ATTR=TXT:Follow<SP>Following<SP>Unfollow<SP>Blocked<SP>Unblock<SP>Pen*';
            iimSet("i",i); iimPlay(macro); iimDisplay(i);
    }else {
       iimDisplay(i);
    }   
}//end of Message Count
iimExit();

I am not very familiar with javascript, and I really appreciate you posting this. However, is there a way to put a wait of like 90 seconds so that you can use this without rapidly following and then possibly getting your account suspended? If that was in iMacros form then I could do it, like I said I'm not experienced with javascript. Thanks! (If anyone could help it would be greatly appreciated.)
 
Yes, you have to use javascript.
Here's a quick js I wrote that detects followers and ignores it goes to the next.
Just save it as a .js in your imacros. followCount is how many times to loop.


Modified the code a bit. Sets followCount to only if you follower someone. Before it just ran a set amount of times regardless if it followed someone or skipped someone. This way you are for sure to get the full followCount amount of followers each time you run it.

Code:
//Set Followers Count
followCount = 55; 

//Leave Numbers Alone
i = 5; 
u = i - 1; 
f = 0; 
skipped = 0; 

//Script loops and follows full 55 people disregarding skipped aka already following
while (f < followCount){
    var scroll = 'CODE:' + 'URL GOTO=javascript:window.scrollBy(0,20000)';
    iimPlay(scroll); 
    e = window.document.getElementsByClassName('follow-text')[u]; 
    var css = window.document.defaultView.getComputedStyle(e, null); 
    display = css.getPropertyValue('display'); 


    if(display === "block"){
    iimSet("i",i); 
        var macro = 'CODE:' + 'TAG POS={{i}} TYPE=BUTTON ATTR=TXT:Follow<SP>Following<SP>Unfollow<SP>Blocked<SP>Unblock<SP>Pen*'; 
        i++; f++; u++; 
        iimPlay(macro);
    }else {i++; u++; skipped++;}   
}//end of Message Count
iimExit();
 
You could drop the imarco version of WAIT SECONDS=90 into the marco part of the javascript.
But if you set your relay speed in the options settings to medium, it will run more human like speed and you shouldn't have to worry about it.

var macro = 'CODE:' +
'TAG POS={{i}} TYPE=BUTTON ATTR=TXT:Follow<SP>Following<SP>Unfollow<SP>Blocked<SP>Unblock<SP>Pen*'
+ 'WAIT SECONDS=90';
 
Modified the code a bit. Sets followCount to only if you follower someone. Before it just ran a set amount of times regardless if it followed someone or skipped someone. This way you are for sure to get the full followCount amount of followers each time you run it.

Code:
//Set Followers Count
followCount = 55; 

//Leave Numbers Alone
i = 5; 
u = i - 1; 
f = 0; 
skipped = 0; 

//Script loops and follows full 55 people disregarding skipped aka already following
while (f < followCount){
    var scroll = 'CODE:' + 'URL GOTO=javascript:window.scrollBy(0,20000)';
    iimPlay(scroll); 
    e = window.document.getElementsByClassName('follow-text')[u]; 
    var css = window.document.defaultView.getComputedStyle(e, null); 
    display = css.getPropertyValue('display'); 


    if(display === "block"){
    iimSet("i",i); 
        var macro = 'CODE:' + 'TAG POS={{i}} TYPE=BUTTON ATTR=TXT:Follow<SP>Following<SP>Unfollow<SP>Blocked<SP>Unblock<SP>Pen*'; 
        i++; f++; u++; 
        iimPlay(macro);
    }else {i++; u++; skipped++;}   
}//end of Message Count
iimExit();

Hi. I tried using the code but is not working.

This is what's showing
unknown command: FOLLOWCOUNT, line 1 (Error code: 910)

Thanks
 
Is there some script like this, but without unfollowing people who you already follow? Tnx
 
Modified the code a bit. Sets followCount to only if you follower someone. Before it just ran a set amount of times regardless if it followed someone or skipped someone. This way you are for sure to get the full followCount amount of followers each time you run it.

Code:
//Set Followers Count
followCount = 55; 

//Leave Numbers Alone
i = 5; 
u = i - 1; 
f = 0; 
skipped = 0; 

//Script loops and follows full 55 people disregarding skipped aka already following
while (f < followCount){
    var scroll = 'CODE:' + 'URL GOTO=javascript:window.scrollBy(0,20000)';
    iimPlay(scroll); 
    e = window.document.getElementsByClassName('follow-text')[u]; 
    var css = window.document.defaultView.getComputedStyle(e, null); 
    display = css.getPropertyValue('display'); 


    if(display === "block"){
    iimSet("i",i); 
        var macro = 'CODE:' + 'TAG POS={{i}} TYPE=BUTTON ATTR=TXT:Follow<SP>Following<SP>Unfollow<SP>Blocked<SP>Unblock<SP>Pen*'; 
        i++; f++; u++; 
        iimPlay(macro);
    }else {i++; u++; skipped++;}   
}//end of Message Count
iimExit();


Hi Craigmoney,

Do you happen to have a code to mute people on Twitter as well without unmuting those I already muted?


Thanks
Coco
 
Hey I know this is an older thread...is this still working with the current twitter interface? I was having some difficulty and I am thinking that may be the problem?
 
This macro click on all buttons to follow regardless of whether this user already follow.
Is it possible to skip to users who you already follow?

Thakns
 
Back
Top