-
Notifications
You must be signed in to change notification settings - Fork 28
How to send raw packet
Muhammad Kevin edited this page Mar 7, 2023
·
3 revisions
In this page will tell you how to send your own OnPacket
to send raw packet, use sendPacketRaw()
function
Example Code
struct GameUpdatePacket gamePacket;
memset(&gamePacket, 0, sizeof(GameUpdatePacket));
gamePacket.type = 4;
// ...
sendPacketRaw(&gamePacket, sizeof(GameUpdatePacket), peer);
Wiki
Introduction
Building the Project
- Codeblocks (Windows Version)
- Manual Build (GCC Windows Version)
- Manual Build (Linux Version)
- Manual Build (Android Version)
Connecting to GTProxy
Configuration File
- Default Configuration File
- usingServerData
- serverDataIP
- manualIP
- manualPort
- manualMeta
- usingNewPacket
- httpsPort
- skipGazette
- isSpoofed
GTProxy Tutorial