OHH EMM GG!

11/03/2009 00:41 -Shunsui-#1
Ok Now i got another Error It lets me make an Account but i cant Login into the Game -.-

Las error was fixed thanz to Below Post's :P
THIS THE NEW ERROR
[Only registered and activated users can see links. Click Here To Register...]

ASLSO OTHER PEOPLE CAN MAKE NEW CHARS LOGIN AND PLAY :(
11/03/2009 00:42 _legitimate_#2
debug everything you have edited (ip etcs) i know this is a crappy response but thats what made it work when it happened to me.
11/03/2009 00:43 raidenx123#3
make sure port 5817 is open
11/03/2009 00:46 Fish*#4
i laughed at the think
Quote:
OMG MORE OPEN THE SPOILER?? LOOK@#@@
Well, check that all ips are set and your database is setup with same ips etc.
11/03/2009 00:47 raidenx123#5
yeah now i actually looked at the pic and its because u didnt set up the IP right, look at the line fix from n0mansland
11/03/2009 00:52 Luiz01#6
LoginServer > Connections > AuthHandler
delete, and copy this:
Quote:
/*
* Created by SharpDevelop.
* User: sams
* Date: 3/8/2009
* Time: 2:19 PM
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
using System.IO;
using System.Net.Sockets;

namespace CoEmu_v2_LoginServer.Connections
{
/// <summary>
/// Description of AuthSocket.
/// </summary>
public static class AuthSocket
{
private static Socket Auth;
private const string SERVER_IP = "127.0.0.1";
public const string NANO_IP = "70.190.77.101";
private const int AUTH_PORT = 5817;

public static bool Authorize(string user, uint key, bool nano)
{
try
{
Auth = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
if (!nano)
{
Auth.Connect(SERVER_IP, AUTH_PORT);
}
else
{
Auth.Connect(NANO_IP, AUTH_PORT);
}
Auth.Send(System.Text.Encoding.ASCII.GetBytes("(A) " + user + "," + key));
Auth.Close();
}
catch (Exception e)
{
Console.WriteLine(e.ToString());
return false;
}
return true;
}
}
}
PRESS THANKS IF HELPED!
11/03/2009 00:54 -Shunsui-#7
Thanx alot guys

@ raidenx123
Ty u help me in every one of my threads ;p
11/03/2009 01:13 -Shunsui-#8
Quote:
Originally Posted by raidenx123 View Post
make sure port 5817 is open
Hmm How can i Port Forward?:P
11/03/2009 01:18 raidenx123#9
its fine thats not the problem
11/03/2009 01:49 Zanzibar#10
I really don't know why people just cant SEARCH BEFORE ASKING because there has surely been people who had the same problem as you.
11/03/2009 02:26 -Shunsui-#11
Added the new Error And yes i searched and FOUND NOTHING TO THIS