How integrate deathbycaptcha in codecreator ?

kendy

Новичок
Joined
May 6, 2011
Messages
18
Reaction score
0
Points
0
Hi friends !

I have a little problem with codecreator. i want integrate deathbycaptcha in my c# template, i try but without success.

How can i do ?

Thanks for your answers.
 

bigcajones

Client
Joined
Feb 9, 2011
Messages
1,228
Reaction score
685
Points
113
When you have your template open in CC, right-click on references, select add reference. Then hit the browse button and select deathbycaptcha.dll from your computer in the \Progs folder. After the reference is added, open the step where the decaptcha is. In the code, right under 'using Zennolab.CommandCenter;' type in 'using DeathByCaptcha.dll' without the quote. Then look for the step in the code where the decaptcha recognition is called for. Make sure that you put in DeathByCaptcha.dll for the module. Should work after that.

I put up a video on youtube about this:

http://www.youtube.com/watch?v=GBpQgQDLMMg
 

jen

Client
Joined
Sep 17, 2011
Messages
33
Reaction score
0
Points
6
hello bigcajones,

thank you for this nice tutorials.
I have the same problem.
I watched your video but i don't found how i can add the result of deathbycaptcha on my template

at the begin :

Code:
using System;
using Zennolab.CommandCenter;
using Emulations;
using DeCaptcher;


at the end :

Code:
// Captcha recognition
			he = instance.GetTabByAddress("page").GetDocumentByAddress("0").FindElementByTag("form", 1).FindChildByAttribute("img", "fulltag", "img", "text", 1);
			if (he.IsVoid) return -1;

			var res = ZennoPoster.CaptchaRecognition("DeCaptcher.dll", he, "");

			// Setting captcha text
			he = instance.GetTabByAddress("page").GetDocumentByAddress("0").FindElementByTag("form", 1).FindChildByName("captcha_response");
			if (he.IsVoid) {
				he = instance.GetTabByAddress("page").GetDocumentByAddress("0").FindElementByTag("form", 1).FindChildById("captcha_response");
			}
			if (he.IsVoid) {
				he = instance.GetTabByAddress("page").GetDocumentByAddress("0").FindElementByTag("form", 1).FindChildByAttribute("input:text", "fulltag", "input:text", "text", 4);
			}
			if (he.IsVoid) return -1;


			// Set focus on this html elemet (it's necessarily for SendString of SentText)
			he.Focus();
			
			// Enter password again with delay 100-200 ms
			Emulator.SendString(instance.MainTab.Handle, res, 100, 200);
can you tell me where is the error ?
 

bigcajones

Client
Joined
Feb 9, 2011
Messages
1,228
Reaction score
685
Points
113
In my template I use Decaptcher services. You need to change the 'using Decaptcher;' to 'using DeathByCaptcha;' and put this in your template:

var res = Zennoposter.CaptchaRecognition ("DeathByCaptcha.dll", he, ""); where mine says "Decaptcher.dll"
 

kendy

Новичок
Joined
May 6, 2011
Messages
18
Reaction score
0
Points
0
Thank you Bigcajones for this really usefull tutorial !
 

kendy

Новичок
Joined
May 6, 2011
Messages
18
Reaction score
0
Points
0
hello bigcajones,

thank you for this nice tutorials.
I have the same problem.
I watched your video but i don't found how i can add the result of deathbycaptcha on my template
Do you use a paid version or a trial version ?

If you use a trial version, that's why captcha don't work on your template
 

Users Who Are Viewing This Thread (Total: 1, Members: 0, Guests: 1)