Very Simple iMacros Question

appage

Newbie
Joined
Apr 15, 2008
Messages
5
Reaction score
0
Hi, if this is the wrong forum for this please feel free to flame me and point me in the right direction

im trying to run a macro that will autopost to a vbulletin. This vbulletin needs you to have a certain amount of posts before u can post links..

anyways..they have a thread where they are trying to count to a million replies and i want to create a macro that will reply every 60 (post limit) with the next number

this is what i have so far and it works once. I have the next 100 or so numbers they are trying to count in the input.csv file and it posts that first number but it doesnt go on to refresh and post again...



Code:
VERSION BUILD=6700624 RECORDER=FX
TAB T=1
SET !DATASOURCE input.csv
SET !DATASOURCE_COLUMNS 1
SET !DATASOURCE_LINE {{!LOOP}}
URL GOTO=cant post the link
TAG POS=1 TYPE=TEXTAREA FORM=NAME:vbform ATTR=ID:vB_Editor_QR_textarea CONTENT={{!COL1}}
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ID:qrform ATTR=ID:qr_submit
WAIT SECONDS=15


is it a coding problem or is there a setting im missing?

thanks
 
I don't understand the issue very well but I'll try to help.
So the macro is executed only once.
You need to use the Play(Loop) button to run it in a loop. Set the max value to the number of entries in the csv file.
 
damn i feel dumb. I thought for some odd reason that it would continue to post the same number if I enabled that option.

Thanks man
 
No problem dude. IMacros is excellent, you can do a lot of stuff there.
 
took me a while to figure out the same issue lol, was kicking myself also :p
 
actually i have another question you experts might be able to help me with

in my code i have the wait seconds set to 45...basically i'm wondering if there is a code that will count how long the entire process takes and makes it wait until it reaches 60 seconds total.

the forum makes you wait 60 seconds inbetween posts. I would like the macro to only wait if the process has took under 60 seconds. I'm running it through a proxy so the time always varies, which is why the wait seconds code isn't efficient.

any clue?


thanks yall
 
Please understand that while IMacros is a cool thing it is also very limited.
To do this you'll have to integrate/connect the Imacro code with another language:
javascript, java, vb etc.
 
Hello appage, could you better explain i dont understand what do you want
in your csv file if you have numbers it seems that its what you are posting and with the loop you will post all them peerhaps coulmd you show with what url exactly you need help
 
it looks like you want to post x time reply then go to the link page and post your link.
my stupid way is:
just example
====
Url goto=xxxx
post reply
wait seconds=60
Url goto=xxxx
post reply
wait seconds=60
Url goto=xxxx
post reply
wait seconds=60
Url goto=xxxx
post reply
wait seconds=60
Url goto=xxxx
post reply
wait seconds=60
Url goto=xxxx
post reply
wait seconds=60
Url goto=xxxx
post reply
wait seconds=60
Url goto=xxxx
post reply
wait seconds=60
Url goto=xxxx
post reply
wait seconds=60
Url goto=xxxx
post reply
wait seconds=60
url goto=post link
post link
 
Back
Top