Показать сообщение отдельно
Непрочитано 15.05.2016, 15:09   #12
Пользователь

По умолчанию Re: need help to decrypt

Цитата:
Сообщение от Awiion Посмотреть сообщение
Judging by the fact that battle mode also does not display.
download IDA, Find the package, look how many x bytes reads...
Then do the fix, but the offset is not right, and it is not known how much,

After equip,
writeEquipedItems player.getEqipment());
Works

in between

writeB(new byte[] { (byte) 209, 81, 0, 0, 119, 0, 0, 0, 0, 0, 0, 0, 0 }); // new
writeB(new byte[40]);
writeC(1); // WriteC(Auth.AuthConfig.EnableInventory); ??

the enumeration of the bytes, or not enough...

And anyway, after equip is how I remember the max rank on the server

short <- 0
short <- 55
short <- 0
short <- 55

And judging by the dump package, 4 game version 1.34 client...
You are using an old version of the client...
Of course there will be different structures
Awiion
How To fix

Код:
        protected internal override void write()
        {
            base.writeH(0xa0e);
            base.writeD(1);
            base.writeH((short) this._channel.getAnnounceSize());
            base.writeS(this._channel.getAnnounce(), this._channel.getAnnounceSize());
            base.writeD(0);
        }
crayonnet вне форума Ответить с цитированием