Instagram iMacros Scripts [2016]

how to add multiple accounts? It always picks the first one.
 
The imacros are working, i testeted a few days ago, with one vps , and editing the script (seconds) you can grow nice accs.
 
Is there a way or script to unfollow all the people you've followed using this script? Always better to have an unfollowing strategy after a following spree to maintain legibility of the account
 
Hi I got the macro in and it seems to be working fine. The accounts that I have linked are popping up at the correct times but the number of accounts I am following is not going up.
What's wrong?
 
Can anyone confirm this is still working? I am getting an error on line 6.
 
For Firefox.

  1. Install this addon in Firefox: https://addons.mozilla.org/en-US/firefox/addon/imacros-for-firefox/
  2. This will create a folder named iMacros in your Documents folder on Windows.
  3. Copy the code into an .iim file and put the file in iMacros/Macros folder.
  4. Paste the .txt file containing your list of Accounts in iMacros/Datasources folder.
  5. Login to your Instagram account on Firefox.
  6. Click on iMacros button in your toolbar > choose the iim file you just created and Play Loop with the number of times you want to run the script.
TypeError: Cannot read property 'length' of undefined, line: 1
I'm getting this
 
No problem, let me know if you face any problems.
Thanks for the script! So far it's working well. I have one issue though. After it cycles through the first account it seems to stop and not move onto the next account.

Also for anyone reading: Make sure you start the accounts.txt in a plain text editor. I first used TextEdit on mac OS and it adds a bunch of header/formatting data to the document because it saves as RTF regardless if you tell it to add the txt extension. MS Word saved as plain text worked like a charm.

UPDATE: I found the fix for the above issue of the script not moving to the next account. There is no repeat command built into the script, use the Loop Playback function and the script will automatically move down to the next account in your ACCOUNTS.TXT file. Seems so stupidly obvious to me now.
 
Last edited:
  • Like
Reactions: sus
This is awesome and is working great for me.

I would like to see if you can help create this setting for me someone.

I want it to only follow 77 people an hour then wait 16 mins then start the loop all over again.
 
sorry if this sounds dumb but do you mean that it follows and then un-follows?
cheers =]
 
Hello,

I thought I would share some Instagram iMacros scripts that I made, with the community. I will start with a script but might share a few more later on.

1. Follow Latest Followers of an Account


Instructions:

  1. Gather the usernames of a few top accounts in your Niche. Eg: Nike, Adidas etc
  2. Make a text file named accounts.txt with all the usernames (only username, no @ or links) and put it in the Datasources folder of iMacros.
  3. Copy the code below into a file named follow.iim and Play it on Loop in your browser after logging into your Instagram account.
iMacros Script:

Code:
SET !VAR1 EVAL("var randomNumber=Math.floor(Math.random()*6 + 1); randomNumber;")
SET !VAR2 EVAL("var randomNumber=Math.floor(Math.random()*8 + 1); randomNumber;")
SET !VAR3 EVAL("var randomNumber=Math.floor(Math.random()*4 + 1); randomNumber;")
SET !VAR4 EVAL("var randomNumber=Math.floor(Math.random()*20 + 8); randomNumber;")
SET !ERRORIGNORE YES
SET !DATASOURCE ACCOUNTS.txt
SET !DATASOURCE_COLUMNS 1
SET !DATASOURCE_LINE {{!LOOP}}
URL GOTO=https://www.instagram.com/{{!COL1}}
TAG POS=1 TYPE=A ATTR=TXT:*<SP>followers
TAG POS=2 TYPE=BUTTON ATTR=TXT:Follow
WAIT SECONDS={{!var1}}
WAIT SECONDS=17
TAG POS=2 TYPE=BUTTON ATTR=TXT:Follow
WAIT SECONDS={{!var2}}
WAIT SECONDS=17
TAG POS=2 TYPE=BUTTON ATTR=TXT:Follow
WAIT SECONDS={{!var3}}
WAIT SECONDS=17
TAG POS=2 TYPE=BUTTON ATTR=TXT:Follow
WAIT SECONDS={{!var4}}
WAIT SECONDS=17
TAG POS=2 TYPE=BUTTON ATTR=TXT:Follow
WAIT SECONDS={{!var1}}
WAIT SECONDS=17
TAG POS=2 TYPE=BUTTON ATTR=TXT:Follow
WAIT SECONDS={{!var3}}
WAIT SECONDS=17
TAG POS=2 TYPE=BUTTON ATTR=TXT:Follow
WAIT SECONDS={{!var4}}
WAIT SECONDS=17
TAG POS=2 TYPE=BUTTON ATTR=TXT:Follow
WAIT SECONDS={{!var2}}
WAIT SECONDS=17
TAG POS=2 TYPE=BUTTON ATTR=TXT:Follow
WAIT SECONDS={{!var1}}
WAIT SECONDS=17
TAG POS=2 TYPE=BUTTON ATTR=TXT:Follow
WAIT SECONDS={{!var4}}

What it does:

This script will go through the list of popular accounts and click on their followers button which pops up the list of their most recent follower (unlike what most people are saying, am still seeing the most recent follower) and follows 10 people with a wait time of 17 seconds + random time to make it look real then moves on to another account and does the same.

Thank you.



Can you make the scrip work in CHROME? So I can run 2 accounts on one computer?
 
Can you make the scrip work in CHROME? So I can run 2 accounts on one computer?
I guess you can, but i wouldn't recommend using iMacros with Chrome, i always found it somewhat inconvenient or not nearly as good as with Firefox or even the standalone iMacros browser. So if you want to run 2 accs simultaneously, i would either recommend a Firefox instance and an iMacros browser instance or look into creating multiple Firefox profiles, so you can have different settings and you can run 2 instances of Firefox simultaneously. Plus if you use proxies, the instances of the separate profiles will use their own proxy settings and not the setting of only one profile. It's the easiest, if you download Portable Firefox and make a copy, so you can keep your everything separated at all times. No login mixups or anything like that.
 
Back
Top