Not you again -.-
ok i got it app.config :awesome:Quote:
i think there is a problem in database connection because i always get access denied error and i am sure about my connection info.
Umm, my first guess would be that a variable is being used when its null(no-assigned value). for example: if you made a variable Entity user and then used it like this: if (user.Name == Arvydas).Quote:
Maybe someone can help fix it this error? URL]
using System;
using System.Text;
namespace Conquer_Online_Server.Network.GamePackets
{
public class EnitityCreate : Interfaces.IPacket
{
public string Name;
public ushort Body;
public byte Class;
public void Deserialize(byte[] buffer)
{
Name = Encoding.UTF7.GetString(buffer, 24, 16).Replace("\0","");
Body = BitConverter.ToUInt16(buffer, 72);
Class = (byte)BitConverter.ToUInt16(buffer, 74);
}
public byte[] ToArray()
{
throw new NotImplementedException();
}
public void Send(Client.GameState client)
{
throw new NotImplementedException();
}
}
}
But my code like this" if (EntityUID.Now == 0) "Quote:
Umm, my first guess would be that a variable is being used when its null(no-assigned value). for example: if you made a variable Entity user and then used it like this: if (user.Name == Arvydas).
You have to assign a value to the var first.