Hello I have a problem Patch 5730 for Name
| [Only registered and activated users can see links. Click Here To Register...] |
| [Only registered and activated users can see links. Click Here To Register...] |
Writer.WriteByte((byte)client.Entity.Name.Length, 117, buffer);
Writer.WriteStringWithLength(client.Entity.Name, 118, buffer);
Writer.WriteByte((byte)client.Entity.Spouse.Length, 119 + client.Entity.Name.Length, buffer);
Writer.WriteString(client.Entity.Spouse, 120 + client.Entity.Name.Length, buffer);
Thanks For Help but it's not Work Still Name not ApearQuote:
update CharacterInfo
that is all i get
PHP Code:Writer.WriteByte((byte)client.Entity.Name.Length, 117, buffer);
Writer.WriteStringWithLength(client.Entity.Name, 118, buffer);
Writer.WriteByte((byte)client.Entity.Spouse.Length, 119 + client.Entity.Name.Length, buffer);
Writer.WriteString(client.Entity.Spouse, 120 + client.Entity.Name.Length, buffer);
ty but what about flag spawn?Quote:
byte[] packet = new byte[128 + client.Spouse.Length + client.Name.Length];
......
WriteByte(3, 116);//??
WriteByte((byte)(client.Name.Length), 117);
WriteString(client.Name, 118);
WriteByte((byte)client.Spouse.Length, (byte)(119 + client.Name.Length));
WriteString(client.Spouse, (byte)(120 + client.Name.Length));
inb4 "Where's the code?"Quote:
We've already explained magnon. Your packet structure is wrong.
Log one from official tq, reverse engineer the client, look at existing sources or guess at updated offsets.
Any of those options would have you solving your own problems within 5-10 minutes rather than begging here (again, as you always do). We've explained what is wrong in your source, we've explained how to fix it... what more do you want from us?
It's Just Asking And If no one help me it's Okay why you Nervous it's Wrong to ask for help at CO2 PServer - Discussions / Questions :confused:Quote:
We've already explained magnon. Your packet structure is wrong.
Log one from official tq, reverse engineer the client, look at existing sources or guess at updated offsets.
Any of those options would have you solving your own problems within 5-10 minutes rather than begging here (again, as you always do). We've explained what is wrong in your source, we've explained how to fix it... what more do you want from us?