Help for Patch 5730

05/25/2013 01:52 mdy19#1
Hello I have a problem Patch 5730 for Name

 
[Only registered and activated users can see links. Click Here To Register...]
05/25/2013 13:54 abdoumatrix#2
update CharacterInfo
that is all i get
PHP Code:
 Writer.WriteByte((byte)client.Entity.Name.Length117buffer);
            
Writer.WriteStringWithLength(client.Entity.Name118buffer);            
            
Writer.WriteByte((byte)client.Entity.Spouse.Length119 client.Entity.Name.Lengthbuffer);
            
Writer.WriteString(client.Entity.Spouse120 client.Entity.Name.Lengthbuffer); 
05/25/2013 16:55 magnon#3
Quote:
Originally Posted by abdoumatrix View Post
update CharacterInfo
that is all i get
PHP Code:
 Writer.WriteByte((byte)client.Entity.Name.Length117buffer);
            
Writer.WriteStringWithLength(client.Entity.Name118buffer);            
            
Writer.WriteByte((byte)client.Entity.Spouse.Length119 client.Entity.Name.Lengthbuffer);
            
Writer.WriteString(client.Entity.Spouse120 client.Entity.Name.Lengthbuffer); 
Thanks For Help but it's not Work Still Name not Apear
05/25/2013 17:28 pro4never#4
Then you did it wrong.

Your packet structure is wrong, I suggest you fix it.
05/25/2013 17:54 magnon#5
Quote:
Originally Posted by pro4never View Post
Then you did it wrong.

Your packet structure is wrong, I suggest you fix it.
Aha :rtfm: I try but it's Still Not Apear
05/25/2013 19:56 teroareboss1#6
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));
05/25/2013 20:15 abdoumatrix#7
Quote:
Originally Posted by teroareboss1 View Post
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));
ty but what about flag spawn?
05/26/2013 01:08 magnon#8
Other Bug at upgrade the Icon Of Whisper Chat Not Apear
05/26/2013 05:03 pro4never#9
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?
05/26/2013 07:36 InfamousNoone#10
Quote:
Originally Posted by pro4never View Post
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?
inb4 "Where's the code?"
05/27/2013 01:56 magnon#11
Quote:
Originally Posted by pro4never View Post
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: