change all mensajes of header 2
Catalog.cs: Session.GetMessageH andler().GetResponse().Init(2);
Catalog.cs: Session.GetMessageH andler().GetResponse().Init(2);
GameClient.cs: GetMessageHandler().GetResponse().Init(2);
... etc..
add 1 AppendInt32(1); ..
example:
in Login(string AuthTicket)
before:
after:Code:GetMessageHandler().GetResponse().Init(2); GetMessageHandler().GetResponse().AppendInt32(Rights.Count); foreach (string Right in Rights) { GetMessageHandler().GetResponse().AppendStringWithBreak(Right); } GetMessageHandler().SendResponse();
now working the hc .. and others stuffCode:GetMessageHandler().GetResponse().Init(2); GetMessageHandler().GetResponse().AppendInt32(1); GetMessageHandler().GetResponse().AppendInt32(Rights.Count); foreach (string Right in Rights) { GetMessageHandler().GetResponse().AppendStringWithBreak(Right); } GetMessageHandler().SendResponse();





