Another New Instagram iMacros Likes + Comments

Do you have a script that can go to a user's followers and comment on the first picture of each follower?

I'm not an iMacros expert with a collection of scripts :) when somebody ask I usually make it in a few minutes.

Anyway, here's yours:

- Go to iconosquare.com
- Sign in
- At the top right, use the search bar to find the user that you want his followers
- Click on his number of followers
- Scroll down as long as you want

Code:
SET !ERRORIGNORE YESSET !EXTRACT_TEST_POPUP NO
SET !TIMEOUT_STEP 2
TAB T=1
TAG POS={{!LOOP}} TYPE=A ATTR=CLASS:lienPhotoGrid&&HREF:#/user/*/ EXTRACT=HREF
TAB OPEN
TAB T=2
URL GOTO={{!EXTRACT}}
TAG POS=1 TYPE=SPAN ATTR=CLASS:comment_picto<SP>ss-chat&&TXT:
TAG POS=1 TYPE=TEXTAREA ATTR=ID:comment-* CONTENT=[COLOR=#ffff00]your comment here[/COLOR]
TAG POS=1 TYPE=A ATTR=ID:postComment-*
WAIT SECONDS=2
TAB CLOSE
WAIT SECONDS=58

Note: If you want to use some comments with multiple words, you'll have to add <SP> as a space, let's say you want to comment

Code:
really beautiful

Then in the script you'll have to write

Code:
really<SP>beautiful
 
Last edited:
Yep, but it's for Iconosquare (they all work the same anyway) first you'll need to scroll down to load a bunch of users, to do this automatically, use this macro:

(When I use it I run like 3000 loops)

Code:
URL GOTO=javascript:window.scrollBy(0,20000)

And then:

Code:
SET !ERRORIGNORE YESSET !EXTRACT_TEST_POPUP NO
SET !TIMEOUT_STEP 2
TAB T=1
TAG POS={{!LOOP}} TYPE=A ATTR=CLASS:lienPhotoGrid&&HREF:#/user/*/ EXTRACT=HREF
TAB OPEN
TAB T=2
URL GOTO={{!EXTRACT}}
WAIT SECONDS=2
TAG POS=1 TYPE=A ATTR=ID:like-*
WAIT SECONDS=2
TAB CLOSE
WAIT SECONDS=24

any way to make this like 10 photos with 5 sec delay between each then wait 5 minutes before repeating? so the follower feed doen't looked like spam to others.
 
any way to make this like 10 photos with 5 sec delay between each then wait 5 minutes before repeating? so the follower feed doen't looked like spam to others.

Nope, no way, but you can change the "WAIT SECONDS=" to your wishes.
 
when i try to run this, it only likes one picture and then an error would pop.
" (HTTP status code 403), line 4 (Error code: - i)" how do i fix this? :)
 
hi,

Do you have some tutorials of how to use it!?

Kind of newbie here..!
 
when i try to run this, it only likes one picture and then an error would pop.
" (HTTP status code 403), line 4 (Error code: - i)" how do i fix this? :)

Apparently that means that the website have some temporary issues, what if you wait and try later?
 
whats the script for iconosquare just for liking photos of a specific tag? :) thanks

When you have done your research and have the result, use this to scroll down automatically (it'll load a lot of pictures to like. Put a big number in the loop case like 30000)

Code:
URL GOTO=javascript:window.scrollBy(0,20000)

And then

Code:
TAG POS={{!LOOP}} TYPE=A ATTR=ID:like-*
WAIT SECONDS=28

You're welcome :)
 
URL GOTO=javascript:window.scrollBy(0,20000)
TAG POS={{!LOOP}} TYPE=A ATTR=ID:like-*
WAIT SECONDS=28

this one didnt work though, it only likes the first pic and then unlike it again after repetition.

i tried this code, but it would stop eventually after 9-10 loops.
TAB T=1
URL GOTO=<url>#/tag/love/grid
TAG POS=1 TYPE=A ATTR=ID:like-*
WAIT SECONDS=29
 
URL GOTO=javascript:window.scrollBy(0,20000)
TAG POS={{!LOOP}} TYPE=A ATTR=ID:like-*
WAIT SECONDS=28

this one didnt work though, it only likes the first pic and then unlike it again after repetition.

i tried this code, but it would stop eventually after 9-10 loops.
TAB T=1
URL GOTO=<url>#/tag/love/grid
TAG POS=1 TYPE=A ATTR=ID:like-*
WAIT SECONDS=29

You have to use them as 2 separated scripts, that's why I separated them when I answered you above.

And why would you change TAG POS={{!LOOP}} by TAG POS=1
 
Last edited:
You have to use them as 2 separated scripts, that's why I separated them when I answered you above.

And why would you change TAG POS={{!LOOP}} by TAG POS=1

Oh ok. it didnt work at first. I'll try to fix this one with yours. but TAG POS=1 did work in iconosquare :D
 
Hey, any updates on this? followgram.me turned collec.to so the skript above does not work anymore. Is there any update or any other client you have the code for? Like, Commenting? :) thanks in advance dude!
 
Hey, any updates on this? followgram.me turned collec.to so the skript above does not work anymore. Is there any update or any other client you have the code for? Like, Commenting? :) thanks in advance dude!

They did changed their domain to collec.to but their website is still the same, and the scripts are still working, I just tested them.
 
Sorry guys I won't have the time the answer to all the comments anymore, if you have a problem read the other comments :D
 
Yep, but it's for Iconosquare (they all work the same anyway) first you'll need to scroll down to load a bunch of users, to do this automatically, use this macro:

(When I use it I run like 3000 loops)

Code:
URL GOTO=javascript:window.scrollBy(0,20000)

And then:

Code:
SET !ERRORIGNORE YESSET !EXTRACT_TEST_POPUP NO
SET !TIMEOUT_STEP 2
TAB T=1
TAG POS={{!LOOP}} TYPE=A ATTR=CLASS:lienPhotoGrid&&HREF:#/user/*/ EXTRACT=HREF
TAB OPEN
TAB T=2
URL GOTO={{!EXTRACT}}
WAIT SECONDS=2
TAG POS=1 TYPE=A ATTR=ID:like-*
WAIT SECONDS=2
TAB CLOSE
WAIT SECONDS=24

iconosquare has been blocking my account quite frequently so i've
been trying to replicate this with enjoygram as it has a scrollable follower list but I can't get the URL to extract in a new tab
 
Back
Top