Hey folks, im upgrading my source to 5660, and ive run into a problem with the characterinfo spawn packets, i can see the character name from an alternative account, but i cant see the name from the current account, im assuming TQ updated the spawn packets this is what i have so far
Entity Flag Spawn Packet is correct im having no issues with that
the problem is the name spawn packet 0x271e any help will be appreciated
Code:
WriteByte((byte)client.Entity.Flags, 0x6E, Packet);
//WriteUInt16(0x3ee, 2, Packet);
WriteStringWithLength(client.Entity.Name, 0x271e, Packet);
WriteByte((byte)client.Entity.Name.Length, 0x271e, Packet);
WriteByte((byte)client.Entity.Spouse.Length, 113 + client.Entity.Name.Length, Packet);
WriteString(client.Entity.Spouse, 114 + client.Entity.Name.Length, Packet);
the problem is the name spawn packet 0x271e any help will be appreciated