ardley216
Elite Member
- Mar 28, 2008
- 2,389
- 2,418
Basically I barely know iMacros. I have only made a few bots, but I thought I would share this with you.
It's a short iMacros script that will sign up for you, give you a captcha prompt, and hit enter. All you need to do is make a CSV file with the details in, and put it into datasource folder.
Just change this line:
To what ever postcode/zipcode you want. you can add it as another column if you like.
The template for the CSV will be like this
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
Thanks and/or rep would be nice, but just enjoy the script
It's a short iMacros script that will sign up for you, give you a captcha prompt, and hit enter. All you need to do is make a CSV file with the details in, and put it into datasource folder.
Code:
VERSION BUILD=7401110 RECORDER=FX
TAB T=1
SET !DATASOURCE hotmail.csv
SET !DATASOURCE_COLUMNS 5
SET !DATASOURCE_LINE {{!LOOP}}
URL GOTO=https://signup.live.com/signup.aspx?wreply=http:%2F%2Fmail.live.com&id=64855&mkt=en-GB&lic=1
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:NoFormName ATTR=ID:imembernamelive CONTENT={{!COL1}}
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:NoFormName ATTR=ID:iPwd CONTENT={{!COL2}}
TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:NoFormName ATTR=ID:iRetypePwd CONTENT={{!COL2}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:NoFormName ATTR=ID:iAltEmail CONTENT={{!COL3}}
TAG POS=1 TYPE=DIV ATTR=ID:iPhoneHint
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:NoFormName ATTR=ID:iFirstName CONTENT={{!COL4}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:NoFormName ATTR=ID:iLastName CONTENT={{!COL5}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:NoFormName ATTR=ID:iZipCode CONTENT=[CHANGE]<SP>[THIS zipcode]
TAG POS=1 TYPE=INPUT:RADIO FORM=ID:SignUpForm ATTR=ID:iGenderMale
TAG POS=1 TYPE=SELECT FORM=NAME:NoFormName ATTR=ID:iBirthDay CONTENT=%3
TAG POS=1 TYPE=SELECT FORM=NAME:NoFormName ATTR=ID:iBirthMonth CONTENT=%3
TAG POS=1 TYPE=SELECT FORM=NAME:NoFormName ATTR=ID:iBirthYear CONTENT=%1950
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
Just change this line:
Code:
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:NoFormName ATTR=ID:iZipCode CONTENT=[CHANGE]<SP>[THIS zipcode]
The template for the CSV will be like this
Code:
randomusername314134 password [email protected] firstname lastname
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
Thanks and/or rep would be nice, but just enjoy the script