Quote:
Originally Posted by stefans94
Could it be this server won't work with the Visuel C#2010 edition?
Because when i try to login i get an error ain visual C# about the gameSocket
something that i only can use 1 socket.. whatever, is it because of C# 2010?
|
I've found that the best way to fix simple errors in this source is to scan through the source code like a hawk. For instance I had a few problems when I started this source can't remember if I had socket related ones or not because I scanned through it as soon as I got it to make sure I get all the simple error stuff out of the way.
For example I was getting database related errors on startup so I looked at Database.cs and found this:
Code:
#if HYBRID_BUILD
// This is just so I don't need to include the database in the rar anymore :P
DatabasePath = @"[Some path that was in no way related to my computer]";
#else
DatabasePath = (Application.StartupPath + @"\Database");
#endif
Also if you're going to ask for help it's always a good idea to include more information like screenshots or errors exactly as they are given to you.
Thats the only example I can think of at the moment but use some common sense about what the error says, Maybe try clicking it in the debugger and see if it brings you to a line of code that might be miss typed or something.
Also i'm able to compile this source in visual studio 2010 easily.