Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Conquer Online 2 > CO2 Private Server > CO2 PServer Guides & Releases
You last visited: Today at 15:53

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

Advertisement



Guide/Release: Conquer Server (CoFuture) Using MySql!

Discussion on Guide/Release: Conquer Server (CoFuture) Using MySql! within the CO2 PServer Guides & Releases forum part of the CO2 Private Server category.

Closed Thread
 
Old 12/11/2007, 01:45   #181
 
[GMs]'s Avatar
 
elite*gold: 100
Join Date: Apr 2007
Posts: 183
Received Thanks: 57
I still got the same error. I can't login. Please check the images if they are correct. I am using conquer client with patch 4348 and with my server information in server.dat. I had port forward with 192.168.0.1, 192.168.0.101, and 127.0.0.1. I think the Auth has a problem. In the guide says the Type and Auth has to be 2, when i try with type 2 and auth 1 i can connect but not sure if i had some bugs that i couldnt see some npcs sometimes. If you dont see any problems, can u send me ur working COFuture release and ill change the databse information to mines.

Connection


localhost/phpmyadmin


Port Forward, Client Information
[GMs] is offline  
Old 12/11/2007, 16:37   #182
 
Elmonodara's Avatar
 
elite*gold: 0
Join Date: Jan 2006
Posts: 24
Received Thanks: 15
i keep getting "cannot connect to game server"
Elmonodara is offline  
Old 12/11/2007, 20:53   #183
 
[GMs]'s Avatar
 
elite*gold: 100
Join Date: Apr 2007
Posts: 183
Received Thanks: 57
I think my problem is about Auth server that it isnt able to connect.
[GMs] is offline  
Old 12/12/2007, 16:41   #184
 
elite*gold: 0
Join Date: Jul 2006
Posts: 60
Received Thanks: 170
I know how to fix it
extrat and include in the project my attachment
goto AuthPacketsIncomming folder and Open AuthRequest
goto line 121 and replace this Line
Quote:
Start.Auth.SyncSendData(CPacket.KeyResponse(Server IP, Key1, Key2, Port), ClientData.Conn);
for this

Quote:
Start.Auth.SyncSendData(NPacket.AuthResponse(Serve rIP, Key1, Key2), ClientData.Conn);

and goto Start.cs and right click and select "View Code
goto line 30
replace
Quote:
private const int AUTHPORT = 9960;
for
Quote:
private const int AUTHPORT = 9958;
and goto line 42
replace
Quote:
public const int GAMEPORT = 9958;
for
Quote:
public const int GAMEPORT = 5816;
rebuild the project and test now
Attached Files
File Type: rar NPacket.rar (553 Bytes, 135 views)
master15 is offline  
Old 12/12/2007, 18:52   #185
 
elite*gold: 0
Join Date: Jun 2006
Posts: 14
Received Thanks: 0
Please help me! My server work fine but i can't connect to my server
here is some pictures









AND i enable that ports in windows firewall!

and one more question!
if i don't have Conquer client with patch 4348 but hinger version if that cud be a problem why i can't connect to my server?
Udza is offline  
Old 12/13/2007, 01:32   #186
 
[GMs]'s Avatar
 
elite*gold: 100
Join Date: Apr 2007
Posts: 183
Received Thanks: 57
I error still persists. I saw the error I think it is the packets in C:/Server/Network/Packet/ConquerPacket.cs: line 254 & C:/Server/AuthPacketsIncomming/AuthCompletion.cs: line 77.


AuthCompletion.cs Error Code
Code:
                 {
                    Start.Game.SyncSendData(CPacket.Chat(ClientData.Client.MessageID, "SYSTEM", "ALLUSERS", "ANSWER_OK", ChatType.LoginInformation), e.Conn);
                    ClientData.Client.Char = Database.GetChar(ClientData.Client.Account, ClientData.Client.Server);
                    ClientData.Client.Char.Client = ClientData.Client;
                    Database.GetItems(ClientData.Client.Char);
                    Database.GetSkills(ClientData.Client.Char);
                    Start.Game.SyncSendData(CPacket.CharInfo(ClientData.Client.Char), e.Conn);
                    Start.Clients.Add(ClientData.Client.Account, ClientData.Client);
                    ClientData.Client.Status = Mode.Login;
                    ClientData.Conn.CharID = ClientData.Client.Char.CharID;
                    ClientData.Client.AuthTimer.Elapsed += new ElapsedEventHandler(ClientData.Client.Disconnect);
                    ClientData.Client.AuthTimer.Interval = 20000;
                    ClientData.Client.AuthTimer.Start();

                    //Following lines start a thread for each character which determines when their xp skill shows up

                    Character.XpThread = new Thread(new ThreadStart(ClientData.Client.Char.XpThreadHandel));
                    Character.XpThread.Name = "'XpThread";
                    Character.XpThread.Priority = ThreadPriority.Normal;
                    Character.XpThread.Start();

                    Character.XpThread = new Thread(new ThreadStart(ClientData.Client.Char.PkPointRemove));
                    Character.XpThread.Name = "'PkpThread";
                    Character.XpThread.Priority = ThreadPriority.Normal;
                    Character.XpThread.Start();
                }
ConquerPackets.cs Error Code
Code:
         public byte[] CharInfo(Character Char)
        {
            Length((68 + Char.Name.Length + Char.Spouse.Length));
            Type(1006);
            Long(Char.CharID);
            Long(Char.Model);
            Short(Char.HairStyle);
            Short(0);
            Long(Char.Money);
            Long(Char.CPoints);
            Long(Char.Exp);
            Long(0);
            Long(0);
            Long(0);
            Long(0);
            Short(Char.Str);
            Short(Char.Dex);
            Short(Char.Vit);
            Short(Char.Spi);
            Short(Char.StatPoints);
            Short(Char.CurrentHP);
            Short(Char.CurrentMana);
            Short(Char.PkPoints);
            ByteInt(Char.Level);
            ByteInt(Convert.ToInt32(Char.Class));//Class
            Short(0);
            ByteInt(1);
            ByteInt(2);
            ByteInt(Char.Name.Length);
            for (int x = 0; x < Char.Name.Length; x++)
            {
                ByteInt(Char.Name[x]);
            }
            ByteInt(Char.Spouse.Length);
            for (int x = 0; x < Char.Spouse.Length; x++)
            {
                ByteInt(Char.Spouse[x]);
            }
            return getBytes();
        }
If you don't know how to fix it send me your source and ill edit it to my information.
[GMs] is offline  
Old 12/13/2007, 01:59   #187
 
BaZam's Avatar
 
elite*gold: 0
Join Date: Feb 2007
Posts: 8
Received Thanks: 0
@leavemealone, sorry if this question was all ready asked i have looking through 12 pages of this post and cannot find my answer XD but when i go to log into localhost/phpmyadmin/ it will not take my user and password and i am 100% positive its the right pass and the user is root obviously... any reason why it would be doing this?
BaZam is offline  
Old 12/13/2007, 06:47   #188
 
elite*gold: 0
Join Date: Jun 2006
Posts: 14
Received Thanks: 0
BaZam try delete that apache server and install new, but now remember all passwords and logins you choose in apache server!
Udza is offline  
Old 12/13/2007, 06:47   #189
 
elite*gold: 0
Join Date: Jun 2006
Posts: 14
Received Thanks: 0
Who know where i can download Conquer client with patch v4348 ?
Udza is offline  
Old 12/13/2007, 10:56   #190
 
Elmonodara's Avatar
 
elite*gold: 0
Join Date: Jan 2006
Posts: 24
Received Thanks: 15
my server is working fine but i can not connect to it, i done what master15 said and that still did not work just keeps saying "can not connect to server, please try again later"
Elmonodara is offline  
Old 12/14/2007, 03:49   #191
 
elite*gold: 0
Join Date: Jul 2006
Posts: 60
Received Thanks: 170
What is ur CO Version? I use 4338 patch
master15 is offline  
Old 12/14/2007, 04:53   #192
 
BaZam's Avatar
 
elite*gold: 0
Join Date: Feb 2007
Posts: 8
Received Thanks: 0
Quote:
Originally Posted by Udza View Post
BaZam try delete that apache server and install new, but now remember all passwords and logins you choose in apache server!
i know what the password and user is and i have tryed reinstalling
BaZam is offline  
Old 12/14/2007, 08:05   #193
 
elite*gold: 0
Join Date: Jun 2006
Posts: 14
Received Thanks: 0
BaZam = then i can't help you!

master15 - i use conquer version 4348 but i still get this ******* error when i try to connect to my server! this error -->
who can help fix this error?

master15 - you have your own private server? if yes, then what server files you use(leavemealone server files or someone else server files)? and what conquer client you use to connect to your private server?
Udza is offline  
Old 12/14/2007, 16:21   #194
 
elite*gold: 0
Join Date: Jun 2006
Posts: 14
Received Thanks: 0
wtf ir wrong with \Server\AuthPacketsIncomming\AuthCompletion.cs line-77
Start.Game.SyncSendData(CPacket.CharInfo(ClientDat a.Client.Char), e.Conn);

and

\Server\Network\Packet\ConquerPacket.cs line-254
Length((68 + Char.Name.Length + Char.Spouse.Length));


i have same error like GMs and i don't know what to do! please help someone!
Udza is offline  
Old 12/14/2007, 22:28   #195
 
elite*gold: 0
Join Date: Jul 2006
Posts: 60
Received Thanks: 170
Check your database and if have all necessary colluns and if is correct, etc
@Udza, Yes I have my private server, Im using Old COE Source, coz de scripts is more easy, and de COFuture have alot bugs like equiping items, guild, etc.
master15 is offline  
Closed Thread


Similar Threads Similar Threads
[Guide]cofuture source
06/11/2011 - CO2 PServer Guides & Releases - 91 Replies
hi guys am new here and i hope stay here for long time ------------ i make this guide Couz i found alot pll cant work with cofuture source --------------- Coder source:future <<<Thanks to hime 1st helping me:haydeZ<<<<Thanks to hime 2nd --------------------------------------- What we are need? 1:cofuture source>>>Download Here 2:AppServ(MySQL, Apache, and PhpMyAdmin all in one)>>>>AppServNetwork
[Request]Conquer Server (CoFuture) Using MySql
06/25/2008 - Conquer Online 2 - 2 Replies
hey I want to get the Conquer Server (CoFuture) Using MySql Source but all links down Can someone add it on rapidshare? or other Site? thank you if you up it in a site ps:sorry for my bad english :)
Need help Guide/Release: Conquer Server (CoFuture) Using MySql!
05/28/2008 - Conquer Online 2 - 1 Replies
Hello i tryed that Guide/Release: Conquer Server (CoFuture) Using MySql! But it don't work i can't do that phpmyadmin think anyone can help me the language is german but i wanted to change it to english but idk how. If anyone got Teamviewer or somethink like that would be nice greetz



All times are GMT +1. The time now is 15:53.


Powered by vBulletin®
Copyright ©2000 - 2025, 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 ©2025 elitepvpers All Rights Reserved.