[DiscordArchive] What doesn't work exactly?
[DiscordArchive] What doesn't work exactly?
Archived author: MaxtorCoder • Posted: 2021-03-20T12:27:15.096000+00:00
Original source
What doesn't work exactly?
Archived author: JORGIE • Posted: 2021-03-20T12:44:07.046000+00:00
Original source
this project just translate the c++ code to c#
Archived author: MaxtorCoder • Posted: 2021-03-20T12:44:51.526000+00:00
Original source
Yeah, but what are you trying to do with the packet format
Archived author: MaxtorCoder • Posted: 2021-03-20T12:45:13.275000+00:00
Original source
Size : int32_t
Tag : byte[12]
Opcode : uint16_t
Archived author: JORGIE • Posted: 2021-03-20T12:47:01.136000+00:00
Original source
yes, all right.
Archived author: JORGIE • Posted: 2021-03-20T12:50:24.598000+00:00
Original source
When I response the AuthChallenge packet to the client. the client send a packet that can not decode with the package frame.
Archived author: JORGIE • Posted: 2021-03-20T12:53:18.306000+00:00
Original source
```java
/**
* World Packet Frame
* +--------+-------------------------+
* | BodyLength(4bytes)| Packet Header|
* | Tag(12bytes) | |
* +--------+-------------------------+
* | Opcode(2bytes) | Packet Body |
* | Payload | |
* +--------+-------------------------+
*/
public final class WorldPacketFrame {
}
```
Archived author: MaxtorCoder • Posted: 2021-03-20T12:55:39.130000+00:00
Original source
<:Thonk:736242406877298738>
Archived author: MaxtorCoder • Posted: 2021-03-20T12:56:21.518000+00:00
Original source
I assume you already did the `WORLD OF WARCRAFT CONNECTION - SERVER TO CLIENT - V2` stuff?
Archived author: JORGIE • Posted: 2021-03-20T12:58:15.747000+00:00
Original source
Yes, I did.