So I Made My First Bot With Imacros

Ranga, looking forward to playing with ubot, thanks
 
@lighthouse

Just see the videos above its so easy to make bots nowdays which do simple tasks and I also am not much of a programmer but still can do lots of simple bots so just take action and see

Also, which program u want out of the above I can host it and post a link here

Also, if you dont want to do programming check out automate it is really nice.
it.
Automate, NQL, and ubot if you have em. Like i said i have licenced versions of imacros and winauto. id love to try others out. ill have to take a good dive into the videos on creating bots though. i know with PHP you can send Useragent data to appear that you are using a browser which is a good idea.
 
Thanks for this. I have to say to anyone like me who knows absolutely nothing about using imacros, go the the wiki site there is a ton of information with script examples and training there. It looks pretty simple once you read through some of it.
 
ok so i decided to put up my yahoo email account creator eith captcha support from beatcaptchasi made a while back heres the link:

http://rapidshare.com/files/272389580/yahooaccountcreator.zip

This is for imacros scripting edition only and will not work with the firefox edition
Instructions
1. put the 2 macro files accyahoo.iim and accyahooerror.iim into your macros folder and put the vbs file yahooaccount.vbs wherever you want
2. open yahooaccount.vbs with notepad or any text editor and edit the top part that says: Customize this

It looks like this and explains what and how to edit the sections you need to

'CUSTOMIZE THESE PARTS
'------------------------------------------------------------------'
'put your BeatCaptcha Key here
beatcaptchakey = "INSERTYOURKEYHERE"
'change makeaccounts variable to the amount of accounts you want to make
makeaccounts = 3
'change runintray variable to yes if you want the account creator to run in your tray
runintray = "no"
'wait time between making accounts in seconds
waittime = 5
'this is the directory you want the account information stored
strDirectory = "c:\yahooaccounts"
'this is what you want the file to be called
strFile = "\yahooaccounts.txt"
'---------------------------------------------------------------------'


once you edit the settings to your liking just doubleclick/open yahooaccount.vbs normally and let it run
 
Just thought I'd ask here cuz someone might know.

As you all know decaptcher using HTTP post function returns strings like this:

0|Major ID|Minor ID|0|0|captcha

My problem is when I use the extract function in imacros it gives me the whole string! Is there a way to just extract the captcha text and major/minor/id and store them as variables?

Tried fooling around with the extraction wizard with no success always got whole string.

[FONT='times new roman', serif]
[/FONT]
 
Just thought I'd ask here cuz someone might know.

As you all know decaptcher using HTTP post function returns strings like this:

0|Major ID|Minor ID|0|0|captcha

My problem is when I use the extract function in imacros it gives me the whole string! Is there a way to just extract the captcha text and major/minor/id and store them as variables?

Tried fooling around with the extraction wizard with no success always got whole string.

[FONT='times new roman', serif]
[/FONT]

you have to set relative positioning, i have not been able to figure it out where there is text after what you want to extract but if the capatcha solve is the last thing on the page it should be easy to extract all text after a relative postion and saveas !extract
 
ok so i decided to put up my yahoo email account creator eith captcha support from beatcaptchasi made a while back heres the link:

http://rapidshare.com/files/272389580/yahooaccountcreator.zip

This is for imacros scripting edition only and will not work with the firefox edition
Instructions
1. put the 2 macro files accyahoo.iim and accyahooerror.iim into your macros folder and put the vbs file yahooaccount.vbs wherever you want
2. open yahooaccount.vbs with notepad or any text editor and edit the top part that says: Customize this

It looks like this and explains what and how to edit the sections you need to

'CUSTOMIZE THESE PARTS
'------------------------------------------------------------------'
'put your BeatCaptcha Key here
beatcaptchakey = "INSERTYOURKEYHERE"
'change makeaccounts variable to the amount of accounts you want to make
makeaccounts = 3
'change runintray variable to yes if you want the account creator to run in your tray
runintray = "no"
'wait time between making accounts in seconds
waittime = 5
'this is the directory you want the account information stored
strDirectory = "c:\yahooaccounts"
'this is what you want the file to be called
strFile = "\yahooaccounts.txt"
'---------------------------------------------------------------------'


once you edit the settings to your liking just doubleclick/open yahooaccount.vbs normally and let it run


these would be awesome to intergrate with proxies as well. either way thanks for sharing!
 
Just thought I'd ask here cuz someone might know.

As you all know decaptcher using HTTP post function returns strings like this:

0|Major ID|Minor ID|0|0|captcha

My problem is when I use the extract function in imacros it gives me the whole string! Is there a way to just extract the captcha text and major/minor/id and store them as variables?

Tried fooling around with the extraction wizard with no success always got whole string.

[FONT='times new roman', serif]
[/FONT]

You may have to do some coding to strip the rest of the text from the captcha. I have a Vbscript that can strip a number from a sentence but nothing for stripping words from a sentence yet.
 
WOW!! so easy to do such automation nowadays...
Save my money!! thanks gogeta..
 
You may have to do some coding to strip the rest of the text from the captcha. I have a Vbscript that can strip a number from a sentence but nothing for stripping words from a sentence yet.


would it work for pulling a password out of an email to save it as VAR1?
 
CSV file are way better to manipulate if you use "KILLink CSV "
this is a soft, look for it in a portable verison
google : killink csv portable
if you want me to upload it for you just PM me
 
would it work for pulling a password out of an email to save it as VAR1?

maybe, I will have to see what I can come up with in the morning. I don't think I can save it as VAR1 if I use VBscript to strip the rest of the text from the password but I could save it as RAV1
 
any idea how to randomly pick values from excel column????????

Hi, I posted this in another thread found here: How to make iMACROS Firefox plugin run every 2 minutes

I'm guessing like most of us starting out with Imacros you don't know how to write a VB script, so you can use this to randomly pick a line in excel.



Code:
SET !EXTRACT NULL
SET !EXTRACT_TEST_POPUP NO
URL GOTO=http://www.graphpad.com/quickcalcs/randomN1.cfm     
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:CFForm_1 ATTR=ID:low CONTENT=1
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:CFForm_1 ATTR=ID:hi CONTENT=10
TAG POS=1 TYPE=INPUT:SUBMIT FORM=NAME:CFForm_1 ATTR=NAME:Random 
TAG POS=18 TYPE=TD ATTR=TXT:* EXTRACT=TXT  
SET !LOOP {{!EXTRACT}}

Just put this code above yours, hope it helps. Make sure to change the high number in this code to match the amount of lines your using in your csv.
 
maybe, I will have to see what I can come up with in the morning. I don't think I can save it as VAR1 if I use VBscript to strip the rest of the text from the password but I could save it as RAV1


yeah the issue i was having without being able to script from lack of knowledge was pulling a password from and email, the password is the last bit then it returns 2 lines and starts more text so relative positioning is tough or i do not know it well enough yet.
 
I'm having a problem, when my macro runs into a video for over 18's it hangs at the verification page, how do I overcome it?
 
Thank you so much for this, inspired me to write a youtube commenter, works perfect. Now I need to write a youtube URL harvester.
 
anyone know the basic code to start a macro and rotate a proxy/clear cache each time its looped? I have everything else done in the IDe but i do not know how to prgram it in the scripting version and do what i want.
 
I'm having a problem, when my macro runs into a video for over 18's it hangs at the verification page, how do I overcome it?

The way I would overcome it is by extracting the text from the over 18 page pushing it to a script as a variable and then use a Conditional statement such as "If Then" inside a loop so the script can decide what to do next.

"LightHouse" I am working on that grab password from email thing for you but may have to code a different script for each email that's from a different site since they word their emails differently
 
anyone know the basic code to start a macro and rotate a proxy/clear cache each time its looped? I have everything else done in the IDe but i do not know how to prgram it in the scripting version and do what i want.

To clear cache in a macro simply add CLEAR somewhere in the macro and to rotate proxies throw all your proxies in a csv file and add a PROXY ADDRESS={{!COL1}} in the macro...Don't forget to set your datasource and add all your proxies to Column 1 of your csv file
 
Back
Top