[GET] iMacros Hotmail Bot

Would you know how to open an email in hotmail, then click a link? For some reason imacros is getting stuck with hotmail and throwing a -933 error. Thanks!
 
Anyway to have the captcha's appear in the dialog box or do you have to actually view the captcha on the website to solve?
 
check out the shared imacros thread, I believe they solved that problem by implementing some of the paid captcha systems
 
Anyone with iMacros should find this very easy to use. I don't know how to do proxy support, but I just created another macro (not imacros) to switch proxies and press begin imacros again, works good for me :)

Nice, I haven't tried it, but it should work.

BTW, you can use proxies this way:
Code:
PROXY ADDRESS=127.0.0.1:3128 [BYPASS=page_name]

If you don't want to bypass ANY page, just leave it blank like:
Code:
PROXT ADDRESS=127.0.0.1:3128

IF you however want to exlude the proxy settings for any reason for particular page(s) do it like:
Code:
PROXY ADDRESS=127.0.0.1:3128 BYPASS= *google* *youtube*

This works in the FREE version of the firefox plugin.

SOURCE for more information:
Code:
http://wiki.imacros.net/PROXY

For "multithreading" (kind of) and better performance, you may check out my thread here:
Code:
http://www.blackhatworld.com/blackhat-seo/black-hat-seo-tools/429026-tutorial-multiple-firefox-instances-imacors-automation-benefits-tips.html

Regards,
Mr.Profit
 
Hey,

Just wan to run it but facing an issue that is "RuntimeError: Data source file does not exist, line: 3 "

Can Anyone tell me where I need to put the hotmail.csv file I mean in which folder.

Thanks in advance
 
any review???guys how many accounts you've created already? -just wanted to ask :)
im going to test it later...:)
 
Thanks a lot for this. I just made 14 accounts and they work fine.
 
Good job !

But it doesn't work for me, all the entries you made are not the same for me ... so your iMacro crash each time ... I guess you should get the full version to deal with bugs.

I'm automating with Autoit and I will lunch a "Pinterest bot for mass pinning" tomorrow for beta testing.

If you want we can work on something together :)
 
You say proxies?

Proxy checker:
Code:
VERSION BUILD=6900210     
SET !ERRORIGNORE YES
SET !EXTRACT_TEST_POPUP NO
'open the proxy file
SET !DATASOURCE C:\Users\Me\Documents\iMacros\Datasources\proxies.txt
SET !DATASOURCE_COLUMNS 1
SET !LOOP 1
SET !DATASOURCE_LINE {{!LOOP}}

CLEAR
PROXY ADDRESS={{!col1}}

TAB T=1     
TAB CLOSEALLOTHERS     
URL GOTO=http://www.whatismyip.com/     
TAG POS=1 TYPE=DIV ATTR=TXT:*&&ID:ip EXTRACT=TXT    

ADD !EXTRACT {{!col1}}

SAVEAS TYPE=EXTRACT FOLDER=C:\Users\Me\Documents\iMacros\Datasources\ FILE=proxies-good.txt


To use proxies in your imacro use this:
Code:
PROXY ADDRESS=127.0.0.1:8080
127.0.0.1:8080 = your proxy :P

Good luck
 
Code:
PROMPT captcha !VAR1
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:NoFormName ATTR=ID:iCdHIPBInput0 CONTENT={{!VAR1}}
TAG POS=1 TYPE=BUTTON ATTR=TXT:I<SP>accept

For the ATTR ID i have made
Code:
 TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:NoFormName ATTR=ID:* CONTENT={{!VAR1}}

But for some reason when I insert the captcha code manually the automaton just finished, and don't reach the accept button. Anyone can help me?
 
Code:
PROMPT captcha !VAR1
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:NoFormName ATTR=ID:iCdHIPBInput0 CONTENT={{!VAR1}}
TAG POS=1 TYPE=BUTTON ATTR=TXT:I<SP>accept

For the ATTR ID i have made
Code:
 TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:NoFormName ATTR=ID:* CONTENT={{!VAR1}}

But for some reason when I insert the captcha code manually the automaton just finished, and don't reach the accept button. Anyone can help me?

I already know why, i should make:
Code:
 TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:NoFormName ATTR=ID:wlspisp* CONTENT={{!VAR1}}
 
I got this error:

RuntimeError: element INPUT specified by ID:imembernamelive was not found, line 7 (Error code: -921)

I created the .csv template as exactly you said, and still got this error. Do you know where did I do wrong? Thanks for your code btw.
 
Back
Top