[DiscordArchive] How exactly should those packet data be interpreted?
[DiscordArchive] How exactly should those packet data be interpreted?
Archived author: Vel • Posted: 2025-09-18T20:53:28.963000+00:00
Original source
How exactly should those packet data be interpreted?
```c++
_worldPacket << Size<uint32>(GossipOptions);
_worldPacket << Size<uint32>(GossipText);
```
I guess it's not just uint32 but something like an array?
Archived author: Fabian • Posted: 2025-09-18T20:55:36.068000+00:00
Original source
Im sure u have the whole function open
Archived author: Fabian • Posted: 2025-09-18T20:55:43.463000+00:00
Original source
that should answer your question
Archived author: Fabian • Posted: 2025-09-18T20:55:54.040000+00:00
Original source
``` for (ClientGossipOptions const& options : GossipOptions)
_worldPacket << options;
```
Archived author: MaxtorCoder • Posted: 2025-09-18T20:56:46.602000+00:00
Original source
Literally says Size tho, so it writes the size to buffer
Archived author: MaxtorCoder • Posted: 2025-09-18T20:56:47.679000+00:00
Original source
Archived author: ModoX • Posted: 2025-09-18T20:57:14.478000+00:00
Original source
the forbidden word! <a:dracthyr_fear:1002454125994315818>
Archived author: Vel • Posted: 2025-09-18T21:01:38.720000+00:00
Original source
Thanks!
Archived author: Vel • Posted: 2025-09-18T21:02:02.601000+00:00
Original source
https://tenor.com/view/php-laravel-alyx-...f-24352699
Archived author: Whatifeel • Posted: 2025-09-18T21:20:15.965000+00:00
Original source
i have TWW emulator written in PHP