Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Conquer Online 2 > CO2 Programming
You last visited: Today at 13:48

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



CO Account Creation.

Discussion on CO Account Creation. within the CO2 Programming forum part of the Conquer Online 2 category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Feb 2010
Posts: 25
Received Thanks: 0
CO Account Creation.

Are there any documents / Threads on how the account creation works
using the web method of course. decaptcha? basically i want to create each account over a new proxy this would be to bypass the 10 minute delay between creations. i do have programming experience im just new to this scene. any help would be appreciated.
appledrink is offline  
Old 02/21/2012, 21:47   #2

 
Kiyono's Avatar
 
elite*gold: 20
Join Date: Jun 2006
Posts: 3,296
Received Thanks: 925
Guess I'll move this to the programming section then.
Kiyono is offline  
Old 02/21/2012, 22:42   #3
 
donn's Avatar
 
elite*gold: 0
Join Date: Jan 2007
Posts: 485
Received Thanks: 272
Well, if you can crack the captcha (never tried to do it) sending the parameters to a web form from c# it's pretty easy, doable in like 20 lines max.

A simple search on Google returned that :

Code:
private String readHtmlPage(string url)
   {

    //setup some variables

    String username  = "demo";
    String password  = "password";
    String firstname = "John";
    String lastname  = "Smith";

    //setup some variables end

      String result = "";
      String strPost = "username="+username+"&password="+password+"&firstname="+firstname+"&lastname="+lastname;
      StreamWriter myWriter = null;

      HttpWebRequest objRequest = (HttpWebRequest)WebRequest.Create(url);
      objRequest.Method = "POST";
      objRequest.ContentLength = strPost.Length;
      objRequest.ContentType = "application/x-www-form-urlencoded";

      try
      {
         myWriter = new StreamWriter(objRequest.GetRequestStream());
         myWriter.Write(strPost);
      }
      catch (Exception e) 
      {
         return e.Message;
      }
      finally {
         myWriter.Close();
      }

      HttpWebResponse objResponse = (HttpWebResponse)objRequest.GetResponse();
      using (StreamReader sr = 
         new StreamReader(objResponse.GetResponseStream()) )
      {
         result = sr.ReadToEnd();

         // Close and clean up the StreamReader
         sr.Close();
      }
      return result;
   }
And with a few tweaks it works (I know it does, I used it before TQ added CAPTCHA).

Now all you need more is adding the CAPTCHA response. If you can't crack it, there are some paid services available, one of them being , offering an easy C# API for that.
donn is offline  
Thanks
6 Users
Old 02/23/2012, 14:58   #4
 
elite*gold: 0
Join Date: Feb 2010
Posts: 25
Received Thanks: 0
Thank you.

Although my question was Extreamly vague i would like to thank you
for answering it..
appledrink is offline  
Reply


Similar Threads Similar Threads
KTS Account Creation
04/12/2011 - Rappelz Trading - 7 Replies
Ich biete hier nun meinen service an,KTS accounts zu erstellen. pro account: 5$ spart euch die billig flames. nicht jeder schafft es (komischerweise) sich nen kts acc zu machen und ich bin es leid die ganzen accounts umsonst zu machen und meine zeit damit zu verschwenden. einfach eine pm mit den Wunsch-Daten schreiben.
[HELP!!!] Account Creation
04/02/2010 - CO2 Private Server - 5 Replies
Ok, i have my server running top shape, unfortunately i can only create accounts through BetaCo. Not only that but the database is virtually useless. I make an account in database and the BetaCo.exe is getting them from C:\OldCODB\Users Basically what im saying is i would like to be able to make a script (batch, php, whatever) to let me send the command to BetaCo.exe like so: PHP registration page sends the username and pass to a batch file. the batch file then sends the command /newacc...
Account creation.
05/26/2009 - S4 League - 5 Replies
Hi all, Its just me or is the account creation stopped? I can create a account but the activation key isnt sent to my email. if somebody have the same problem, post it here. btw. back to s4 league .
Account creation
09/02/2005 - General Gaming Discussion - 5 Replies
If you cannot log on, give me a pm and I will create accounts for those of you who cannot, I have created four succsessfully already. ______________________________ Details needed: Your wanted ID Your wanted Pass



All times are GMT +1. The time now is 13:50.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.