|
You last visited: Today at 13:24
Advertisement
[Guide]CoEmu v2 Source Setup
Discussion on [Guide]CoEmu v2 Source Setup within the CO2 PServer Guides & Releases forum part of the CO2 Private Server category.
05/28/2009, 08:56
|
#76
|
elite*gold: 0
Join Date: Aug 2008
Posts: 11
Received Thanks: 0
|
thx for ur help teroareboss1 :] i just found my biggest mistake from the start >< haha now downloading and trying it again later ...
|
|
|
05/28/2009, 12:37
|
#77
|
elite*gold: 0
Join Date: Oct 2006
Posts: 64
Received Thanks: 4
|
gonna reinstall my comp ;D maby will work ;D
|
|
|
05/28/2009, 14:18
|
#78
|
elite*gold: 0
Join Date: Mar 2008
Posts: 131
Received Thanks: 16
|
i have problem help login freez how can i fix it
|
|
|
05/28/2009, 14:21
|
#79
|
elite*gold: 0
Join Date: Dec 2006
Posts: 684
Received Thanks: 238
|
Quote:
Originally Posted by backtomatrix
i have problem help login freez how can i fix it 
|
I had login freeze, problem = invalid conquer version.
|
|
|
05/28/2009, 15:23
|
#80
|
elite*gold: 0
Join Date: Jun 2008
Posts: 13
Received Thanks: 0
|
in game server i got this error
line 34
MySqlConnection C = null;
try{
C = new MySqlConnection("Server=" + SERVER + ";Database='" + DATA_BASE + "';Username='" + USER_NAME + "';Password='" + PASSWORD + "'; Min Pool Size = 300; Max Pool Size = 900");
C.Open();
}
catch(Exception e)
},<---- this is the line 34
Console.WriteLine(e.ToString());
return null;
}
return C;
}
}
at login server i got this error
MySql.Data.MySqlClient.MySqlException:acess denied for user 'coemuorg'@'localhost
line 30
MySqlConnection C = null;
try{
C = new MySqlConnection("Server=" + SERVER + ";Database='" + DATA_BASE + "';Username='" + USER_NAME + "';Password='" + PASSWORD + "'");
C.Open(); <---- line 30
}
catch(Exception e)
{
Console.WriteLine(e.ToString());
return null;
}
return C;
}
}
|
|
|
05/28/2009, 18:17
|
#81
|
elite*gold: 0
Join Date: Nov 2008
Posts: 25
Received Thanks: 1
|
hi can i ask u something pm me at  please"?
|
|
|
05/28/2009, 19:02
|
#82
|
elite*gold: 0
Join Date: Nov 2008
Posts: 25
Received Thanks: 1
|
can i ask some1 here? i got probs please pm me at yahoo messenger..
|
|
|
05/28/2009, 21:11
|
#83
|
elite*gold: 0
Join Date: May 2008
Posts: 248
Received Thanks: 279
|
Nice guide
|
|
|
05/29/2009, 12:31
|
#84
|
elite*gold: 0
Join Date: Aug 2008
Posts: 11
Received Thanks: 0
|
Quote:
Originally Posted by scottdavey
I had login freeze, problem = invalid conquer version.
|
i have 5095 and i still got login freeze any idea?
|
|
|
05/29/2009, 14:41
|
#85
|
elite*gold: 20
Join Date: Feb 2007
Posts: 660
Received Thanks: 79
|
having this problem some1 can help in database.cs line 516
Quote:
System.InvalidOperationException was unhandled
Message="Connection must be valid and open."
Source="MySql.Data"
StackTrace:
at MySql.Data.MySqlClient.MySqlCommand.CheckState()
at MySql.Data.MySqlClient.MySqlCommand.ExecuteReader( CommandBehavior behavior)
at CoEmu_v2_GameServer.Database.Database.LoadMonsters () in C:\Documents and Settings\Owner\Desktop\co\restart\CoEmu v2\CoEmu v2 GameServer\Database\Database.cs:line 516
at CoEmu_v2_GameServer.Structs.Struct.LoadMonsters() in C:\Documents and Settings\Owner\Desktop\co\restart\CoEmu v2\CoEmu v2 GameServer\Structs\DataLoader.cs:line 142
at CoEmu_v2_GameServer.Nano.StartServer() in C:\Documents and Settings\Owner\Desktop\co\restart\CoEmu v2\CoEmu v2 GameServer\Nano.cs:line 67
at CoEmu_v2_GameServer.Program.Main(String[] args) in C:\Documents and Settings\Owner\Desktop\co\restart\CoEmu v2\CoEmu v2 GameServer\Main.cs:line 32
at System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args)
at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
at Microsoft.VisualStudio.HostingProcess.HostProc.Run UsersAssembly()
at System.Threading.ThreadHelper.ThreadStart_Context( Object state)
at System.Threading.ExecutionContext.Run(ExecutionCon text executionContext, ContextCallback callback, Object state)
at System.Threading.ThreadHelper.ThreadStart()
InnerException:
|
|
|
|
05/29/2009, 15:13
|
#86
|
elite*gold: 0
Join Date: Jun 2008
Posts: 13
Received Thanks: 0
|
plz somebody help me
i follow all step
and i get my old error game server
line 34
using MySql.Data.MySqlClient;
namespace CoEmu_v2_GameServer.Database
{
/// <summary>
/// Provides MySql resource connections, for multiple connections to a single MySql database.
/// This is due to the fact that the server is multi-threaded, so allowing a single connection would
/// likely result in errors, or general loss of performance.
/// </summary>
public static class DatabaseConnection
{
public const string USER_NAME = "root";
public const string PASSWORD = "test";
public const string SERVER = "127.0.0.1";
public const string DATA_BASE = "conqueremu";
public static MySqlConnection DBConnection = null;
public static MySqlConnection NewConnection()
{
MySqlConnection C = null;
try{
C = new MySqlConnection("Server=" + SERVER + ";Database='" + DATA_BASE + "';Username='" + USER_NAME + "';Password='" + PASSWORD + "'");
C.Open(); <--- say error at this too
}
catch(Exception e)
{ <---- line 34
Console.WriteLine(e.ToString());
return null;
}
return C;
}
}
and at login server i got this
/*
* Created by SharpDevelop.
* User: sams
* Date: 3/8/2009
* Time: 1:13 PM
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
using MySql.Data.MySqlClient;
namespace CoEmu_v2_LoginServer.Database
{
/// <summary>
/// Provides MySql resource connections, for multiple connections to a single MySql database.
/// This is due to the fact that the server is multi-threaded, so allowing a single connection would
/// likely result in errors, or general loss of performance.
/// </summary>
public static class DatabaseConnection
{
public const string USER_NAME = "root";
public const string PASSWORD = "test";
public const string SERVER = "127.0.0.1";
public const string DATA_BASE = "conqueremu";
public static MySqlConnection NewConnection()
{
MySqlConnection C = null;
try{
C = new MySqlConnection("Server=" + SERVER + ";Database='" + DATA_BASE + "';Username='" + USER_NAME + "';Password='" + PASSWORD + "'");
C.Open(conqueremu); <---- line 30
}
catch(Exception e)
{
Console.WriteLine(e.ToString());
return null;
}
return C;
}
}
i use MySql navicat 8.1
DatabaseConnection.cs the name conqueremu does not exist in the current context
OpenSSL could not be found (6) times
Warning
ManagedOpenSsl
acess denied for 'coemuorg'@'localhost'
|
|
|
05/29/2009, 15:17
|
#87
|
elite*gold: 0
Join Date: Jan 2007
Posts: 1,034
Received Thanks: 58
|
Quote:
Originally Posted by geloux
plz somebody help me
i follow all step
and i get my old error game server
line 34
using MySql.Data.MySqlClient;
namespace CoEmu_v2_GameServer.Database
{
/// <summary>
/// Provides MySql resource connections, for multiple connections to a single MySql database.
/// This is due to the fact that the server is multi-threaded, so allowing a single connection would
/// likely result in errors, or general loss of performance.
/// </summary>
public static class DatabaseConnection
{
public const string USER_NAME = "root";
public const string PASSWORD = "test";
public const string SERVER = "127.0.0.1";
public const string DATA_BASE = "conqueremu";
public static MySqlConnection DBConnection = null;
public static MySqlConnection NewConnection()
{
MySqlConnection C = null;
try{
C = new MySqlConnection("Server=" + SERVER + ";Database='" + DATA_BASE + "';Username='" + USER_NAME + "';Password='" + PASSWORD + "'");
C.Open(); <--- say error at this too
}
catch(Exception e)
{ <---- line 34
Console.WriteLine(e.ToString());
return null;
}
return C;
}
}
and at login server i got this
/*
* Created by SharpDevelop.
* User: sams
* Date: 3/8/2009
* Time: 1:13 PM
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
using MySql.Data.MySqlClient;
namespace CoEmu_v2_LoginServer.Database
{
/// <summary>
/// Provides MySql resource connections, for multiple connections to a single MySql database.
/// This is due to the fact that the server is multi-threaded, so allowing a single connection would
/// likely result in errors, or general loss of performance.
/// </summary>
public static class DatabaseConnection
{
public const string USER_NAME = "root";
public const string PASSWORD = "test";
public const string SERVER = "127.0.0.1";
public const string DATA_BASE = "conqueremu";
public static MySqlConnection NewConnection()
{
MySqlConnection C = null;
try{
C = new MySqlConnection("Server=" + SERVER + ";Database='" + DATA_BASE + "';Username='" + USER_NAME + "';Password='" + PASSWORD + "'");
C.Open(conqueremu); <---- line 30
}
catch(Exception e)
{
Console.WriteLine(e.ToString());
return null;
}
return C;
}
}
i use MySql navicat 8.1
acess denied for 'coemuorg'@'localhost'
|
PRESS THE M&%HER F$%KING Rebuild and then DEBUG GAMESERVER N LOGIN SERVER! GEEZ.
|
|
|
05/29/2009, 15:29
|
#88
|
elite*gold: 0
Join Date: Nov 2008
Posts: 266
Received Thanks: 37
|
Those settings really did the job.
Thanks damianpesta ever so much for your time and understanding.
|
|
|
05/30/2009, 18:56
|
#89
|
elite*gold: 0
Join Date: May 2008
Posts: 50
Received Thanks: 3
|
I neeeeeeedz help. I did everything on this guide and when i start the server it says Connecting to the account server, for a really long time. I did the fix for some issues and i wish to play this source.
|
|
|
05/30/2009, 23:00
|
#90
|
elite*gold: 20
Join Date: May 2007
Posts: 1,125
Received Thanks: 332
|
Quote:
Originally Posted by gme4l1f3
I neeeeeeedz help. I did everything on this guide and when i start the server it says Connecting to the account server, for a really long time. I did the fix for some issues and i wish to play this source.
|
One possibility is you didn't change the ServerNames or keep them consistent with the server/client. =d
|
|
|
Similar Threads
|
[Guide] CoEmu Setup+LoginFix+Line30,31,34 Fix
03/09/2010 - CO2 PServer Guides & Releases - 17 Replies
Setting Up CoEmuV2
Download everything Here
Download Client from Here
Thanks andy123 and BrokeN^WinG
Now let's start...
|
[Guide] How to setup Reflex Source
09/11/2009 - CO2 PServer Guides & Releases - 14 Replies
hey 4 people pmed me that they dont know how to setup a source and i saw that beta and someone else didnt knew it eiter how to set it up so here is a guide.
Downloads:
The Source (http://www.elitepvpers.com/forum/co2-pserver-discu ssions-questions/197876-release-project-reflex-sou rce-v1-0-a.html)
APPServer 2.6.0 (AppServNetwork)
Co Client Patch 5017 (Conquer_2.0.rar - FileFront.com)
Note: People with Windows Vista need APPserver 2.5.1
The Final Guide:
|
I need some one to setup a Coemu source for me please....
07/03/2009 - CO2 Private Server - 1 Replies
Add meh on msn if u wanna help [email protected]
thanx<3 i just want some one to setup it on navicat or w/e :)
|
All times are GMT +1. The time now is 13:25.
|
|