imacros: how to pick up where last loop left off (change current in current-max)

punkinhead

Regular Member
Joined
Feb 19, 2015
Messages
450
Reaction score
37
Using free version of imacros as FF addon in browser

Example is Twitter bot which can only follow 900 of a competitor's followers per day. First day goes fine, but on day 2, I don't want to follow users 1-900, but rather users 901-1800. While I can change the max to any number I like, the Current is set to 1 and grayed out.

Is this disabled on purpose in the free version? How do I pick up where I left off the previous day?

Code in this example is:

VERSION BUILD=8890130 RECORDER=FX
SET !ERRORIGNORE YES
TAB T=1
TAG POS={{!LOOP}} TYPE=BUTTON ATTR=TXT:Follow<SP>Following<SP>Unfollow<SP>Blocked<SP>Unblock<SP>Pen*
WAIT SECONDS=1

If I can't change Current value in imacros window, then can I add some math functions inside script? Something like:

TAG POS={{!LOOP+900}} TYPE=BUTTON
 
Back
Top