[DiscordArchive] https://github.com/TrinityCore/TrinityCore/blob/9c5b8927f89cda74eb7350801c364b003048ba2b/src/server/
[DiscordArchive] https://github.com/TrinityCore/TrinityCore/blob/9c5b8927f89cda74eb7350801c364b003048ba2b/src/server/
Archived author: MaxtorCoder • Posted: 2024-02-23T17:55:22.769000+00:00
Original source
https://github.com/TrinityCore/TrinityCo...r.cpp#L414 ??
[Embed: TrinityCore/src/server/game/Handlers/GroupHandler.cpp at 9c5b8927f8...]
TrinityCore Open Source MMO Framework (master = 10.2.5.53262, 3.3.5 = 3.3.5a.12340, wotlk_classic = 3.4.3.52237) - TrinityCore/TrinityCore
https://github.com/TrinityCore/TrinityCo...andler.cpp
Archived author: MaxtorCoder • Posted: 2024-02-23T17:55:27.907000+00:00
Original source
Just look for it on Github?\
Archived author: _mrfade_ • Posted: 2024-02-23T17:58:05.859000+00:00
Original source
Thanks ye I was looking around for it just blind apparently
Archived author: MaxtorCoder • Posted: 2024-02-23T17:58:26.743000+00:00
Original source
You can literally just look for it through the github search bar <:KEKW:946712477557727262>
Archived author: _mrfade_ • Posted: 2024-02-23T18:01:45.237000+00:00
Original source
```cpp
struct Packet {
void* VMT;
char _pad[0x18];
uint64_t Send() {
return ((uint64_t(*)(void*))(reinterpret_cast<__int64>(GetModuleHandle(nullptr)) + CLIENTSERVICES_SEND))((void*)this);
}
};
#pragma pack(0)
struct RandomRollPacket : Packet
{
int rolls[2];
RandomRollPacket(int min, int max)
{
this->VMT = (void*)(reinterpret_cast<__int64>(GetModuleHandle(nullptr)) + RANDOM_ROLL_PACKET_VMT);
this->rolls[0] = min;
this->rolls[1] = max;
}
};
```
Archived author: _mrfade_ • Posted: 2024-02-23T18:01:52.350000+00:00
Original source
https://tenor.com/view/piddel-piddel-mem...f-26176777
Archived author: MaxtorCoder • Posted: 2024-02-23T18:25:08.025000+00:00
Original source
Huh, what are you even trying to do.
Archived author: _mrfade_ • Posted: 2024-02-23T18:27:46.808000+00:00
Original source
Send a RandomRoll packet from my client