Well I got them to appear, however now it just doesn't show their names.
Code:
public string Name
{
get { return _Name; }
set
{
_Name = value;
SpawnPacket = new byte[8 + 235 + Name.Length];
WriteUInt16((ushort)(235 + Name.Length), 0, SpawnPacket);
WriteUInt16(10014, 2, SpawnPacket);
WriteString(_Name, 234, SpawnPacket);
}
}
I've read through these threads:
Further help would be great! Thanks