Friday, October 8, 2010

How to automate ANYTHING -save tons of time and sell for profit!

Step 1: get imacros SCRIPTING edition and a macro program like macro express or AutoMate i use Automate v6.2.1 you can find them from lots of places like mininova and other torrent sites i got mine from demonoid and they might be on here too.
step 2: learn the basics of imacros and automate6 its generally simple and explains itself and both programs have a large help file and site. I am willing to write an ebook on this stuff if their is enough interest
step 3: once you got the basics down you can dive into the key part to the operation, visual basic scripting(VBS) now VBS can be used alongside imacros and provides a TON more functionality for imacros, heres an example of one VBS http://wiki.imacros.net/Random-Numbers.vbs. Here is a small adaption on how you might want to use it with a snipet of the code from the random numbers vbs code
Randomize
rn = cint (rnd()*5 + 1)
select case rn
case 1:
firstname = “mark”
case 2:
firstname = “jack”
case 3:
firstname = “steven”
case 4:
firstname = “luke”
case 5:
firstname = “mike”
case else:
firstname = “erik”
end select
‘Set the variables for imacros
iret = iim1.iimSet(“-var_firstname”, firstname)
So basically when a VBS runs it generates variables for imacros and in this case randomly picks one of the names and then sends it to imacros which uses those variables where you need them. I personally have it randomly choose one of 9000 first names and 15000 last names along with several random letters and numbers for the thousands of gmails and craigslist usernames inputs and such on signup so EVERY signup is unique.
step 4 – Captchas
now this is the part that plaques most people. How to get past the captchas. Well I use a captcha service beatcaptchas.com which has the best deals i have found by far, it starts at 8 dollars for 1000 captchas which = .008 a captcha down to 300 for 50000 which =.006 a captcha. Its directly made for imacros and you basically just plugin a couple lines of their code which is on the site and you never have to worry about captchas again.
step 5-autuomation
I use automate 6 because i need to change my ip quite often. the key for me was finding when to trigger when to disconnect/reconnect what i used was the wait for pixel feature, you pick several pixels on the screen and when the screen matches all those pixels it passes that step so the last step of my imacros macro i had it go to a site with unqiue colors and setup the wait pixel step so everytime it went to that site it would trigger the step and go onto whats next. So my automate 6 script looks like:
Loop 1000 times(if i want to create 1000 accounts)
run createyahooacounts.vbs
wait for pixels command(i have 5 pixel colors on diff parts of the screen it needs to see at the same time)
disconnect internet
reconnect internet
end Loop
*Imacros does have a built in dialup disconnect/recconect code/setting also and it works with some aircards
I know this may sound confusing and there is likely an easier way of doing this but this is what i have been using for a while and it works great and you will likely understand this step better once you play with the program.
you could also use windows scheduler in place of macro programs but i do not know how you would change your ip.
STEP 6- saving your accounts
this part is simple I just extract the text right after I input it and then use the imacros command for saving extracted text for example
step 1 input username
step 2 extract username
step 3 input password
step 4 extract password
so when im done I have a nice clean text/csv file that has the info I need
and looks like this
username,password
username2,password2
username3,password3
STEP 7 -extra stuff
another key thing is making an error macro for when thigns go wrong or you get the captcha wrong. You input what macro to run in your VBS script and when the error hits it will run the error macro you choose. Basically what i do is cut out all the stuff leading up to the captcha and just have from the captcha on being the error macro and this works perfectly.

No comments:

Post a Comment