Need help with imacros deathbycaptcha !!

slowpoison1987@gmail

Registered Member
Joined
Dec 17, 2010
Messages
53
Reaction score
2
Hey guys,

Sorry if i started this thread in the wrong section, its my first thread tbh..feel free to move the thread in the section it belongs to :)

Alright to start off i am using imacros scripting interface v6.90, i can extract the captcha image from the target url, save the captcha pic, then upload to dbc and dbc fills my captcha......it all works fine 100%

NOW lets say the captcha is filled/inputted wrong by deathbycaptcha (nothing against dbc..its human errors i understand) its only then my macro goes crazy !!:help:

So if someone could share a (if...else if conditional statement) js & how to integrate it with imacros....which would basically mean if the captcha is correct, then move to next step on my macro, or else report the failed captcha to deathbycaptcha then refresh the same target page and redo a new captcha then continue to the next step in imacros..if someone could help me with this i would really appreciate his/her help..

If you already have a code which is somewhat similar to the above described problem, i would be thankful, if u could share it with me..i would try and workaround and see if i can make it to my use..:)
 
Last edited:
Your imacros code can modified not to go mad with wrong captcha..

I dont think there is something like if/else in imacors, if there is I would like to know too.

Thanks and Regards
 
Your imacros code can modified not to go mad with wrong captcha..

I dont think there is something like if/else in imacors, if there is I would like to know too.

Thanks and Regards

- ok i see...could give me a brief idea as to how to go about doing it directly on my macro, that would save all the hassle i am going through atm... or could u send me a copy of your modified macro via pm, which could possibly deal with wrong captchas...i could try and edit it for my use..

-with the scripting edition, m guessing it is possible check out their wiki cant paste the link here, just google this "if else imacros" and click the first result then read question 1.3 Q:
 
- ok i see...could give me a brief idea as to how to go about doing it directly on my macro, that would save all the hassle i am going through atm... or could u send me a copy of your modified macro via pm, which could possibly deal with wrong captchas...i could try and edit it for my use..

-with the scripting edition, m guessing it is possible check out their wiki cant paste the link here, just google this "if else imacros" and click the first result then read question 1.3 Q:

The code has to be modified.. like what next you macros does after clicking submit button? Make it click something which you find when the submission was successful if the script cant find it. Script will loop to next row in 6 secs...

Simple...

I read the wiki but that is not for mozilla and chrome..

Thanks
 
I would love to have the script if possible.
My credits on DBC have been idling too long and need to spent :D

Thank you in advance
 
The code has to be modified.. like what next you macros does after clicking submit button? Make it click something which you find when the submission was successful if the script cant find it. Script will loop to next row in 6 secs...

Simple...

I read the wiki but that is not for mozilla and chrome..

Thanks
You mean it only works on their own browser?
 
Using the native iMacros EVAL and complementing the check with a javascript statement will almost certainly do the trick.
 
Anyone care to share the javascript code for any captcha breaker operator.
I am urgently need the service that works well with my imacro

Thank you in advance
 
Code:
VERSION BUILD=7210419 RECORDER=FX
SET !ERRORIGNORE YES
SET !EXTRACT_TEST_POPUP NO
SET !REPLAYSPEED SLOW
SET !TIMEOUT 120
SET !EXTRACT NULL
TAB T=1
URL GOTO=hxxps://sa.edit.yahoo.com/registration?.pd=&intl=us&origIntl=&done=http%3A%2F%2Fus.yahoo.com%2F&src=fpctx&last=&partner=yahoo_default&domain=&yahooid=&lang=en-US
WAIT SECONDS=5
FILEDELETE NAME=C:\captchas\captcha.jpg
ONDOWNLOAD FOLDER=C:\captchas\ FILE=captcha.jpg
TAG POS=1 TYPE=IMG ATTR=ID:captchaV5ClassicCaptchaImg CONTENT=EVENT:SAVEPICTUREAS
WAIT SECONDS=5
TAB OPEN
TAB T=2
URL GOTO=hxxp://api.deathbycaptcha.com/decaptcher?function=picture2&print_format=html
TAG POS=1 TYPE=INPUT ATTR=NAME:username CONTENT=username
TAG POS=1 TYPE=INPUT ATTR=NAME:password CONTENT=password
TAG POS=1 TYPE=INPUT ATTR=NAME:pict CONTENT=C:\captchas\captcha.jpg
TAG POS=1 TYPE=INPUT ATTR=TYPE:submit
WAIT SECONDS=5
TAG POS=6 TYPE=TD ATTR=* EXTRACT=TXT
SET !VAR1 {{!EXTRACT}}
TAB T=1
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:regFormBody ATTR=ID:captchaV5Answer CONTENT={{!VAR1}}
this's a part of my macro to work with DBC , its working perfect for me :D
 
Last edited:
Back
Top