JackSparrow
Elite Member
- Mar 24, 2007
- 1,526
- 2,142
Hi BHW!
Been tinkering around with a few of my old imacros scripts which i posted on this forum in the past. And today I have looked at improving on the Instagram follower script that I created. Again we are going to be using the online instagram viewer that is statigr.am to successfully follow Instagram users.
Method:
Open up your Mozilla Firefox browser. Log into statigr.am with your Instagram account. Copy and paste the below script into your iMacros in Firefox. Set your max loop to whatever you want (recommended 1000 per script run).
NOTE FOR MULTIPLE SCRIPT RUNS:
Say on the first run of the script you set your max loop to 100 and it successfully finished. The next time you run your script your would like to follow 100 more, but you would not want the script to go from 1 to 100 because you have already followed these. So what you would do is set your max loop to 200 in iMacros and alter the script changing the SET !LOOP 1 to SET !LOOP 101. So that you would follow 101 to 200.
You will need to do this each time you run the script so I would do max loops of say 200 to 500 each time making sure to keep a note of the max loop you set last time, so you can easily alter the imacro script where necessary. Again e.g if your max loop last time was 200 you would change the script to SET !LOOP 201 or if your max loop last time was 500 you would change the script to SET !LOOP 501 etc..
Here is the unfollow script that works exactly like the follow script above, so don't forget to change your max loop and the SET !LOOP to whatever you need to successfully unfollow users:
I would recommend using the follow script and the unfollow script on alternate days so you get some kind of consistency.
ENJOY!
Been tinkering around with a few of my old imacros scripts which i posted on this forum in the past. And today I have looked at improving on the Instagram follower script that I created. Again we are going to be using the online instagram viewer that is statigr.am to successfully follow Instagram users.
Method:
Open up your Mozilla Firefox browser. Log into statigr.am with your Instagram account. Copy and paste the below script into your iMacros in Firefox. Set your max loop to whatever you want (recommended 1000 per script run).
Code:
SET !ERRORIGNORE YES
SET !TIMEOUT_STEP 2
FILTER TYPE=IMAGES STATUS=ON
SET !LOOP 1
TAB T=1
URL GOTO=http://statigr.am/viewer.php#/user/{{!LOOP}}/
WAIT SECONDS=5
TAG POS=1 TYPE=A ATTR=TXT:Follow
WAIT SECONDS=18
NOTE FOR MULTIPLE SCRIPT RUNS:
Say on the first run of the script you set your max loop to 100 and it successfully finished. The next time you run your script your would like to follow 100 more, but you would not want the script to go from 1 to 100 because you have already followed these. So what you would do is set your max loop to 200 in iMacros and alter the script changing the SET !LOOP 1 to SET !LOOP 101. So that you would follow 101 to 200.
You will need to do this each time you run the script so I would do max loops of say 200 to 500 each time making sure to keep a note of the max loop you set last time, so you can easily alter the imacro script where necessary. Again e.g if your max loop last time was 200 you would change the script to SET !LOOP 201 or if your max loop last time was 500 you would change the script to SET !LOOP 501 etc..
Here is the unfollow script that works exactly like the follow script above, so don't forget to change your max loop and the SET !LOOP to whatever you need to successfully unfollow users:
Code:
SET !ERRORIGNORE YES
SET !TIMEOUT_STEP 2
FILTER TYPE=IMAGES STATUS=ON
SET !LOOP 1
TAB T=1
URL GOTO=http://statigr.am/viewer.php#/user/{{!LOOP}}/
WAIT SECONDS=5
TAG POS=1 TYPE=A ATTR=TXT:Unfollow
WAIT SECONDS=18
I would recommend using the follow script and the unfollow script on alternate days so you get some kind of consistency.
ENJOY!