-
Notifications
You must be signed in to change notification settings - Fork 29
Reading ID_AUTH_KEY
Denis edited this page Sep 11, 2021
·
2 revisions
InterceptIncomingInternalPacket = true
WhiteListInternalPackets = [12]
const ID_AUTH_KEY = 12;
IInternalPacket:ID_AUTH_KEY(playerid, BitStream:bs)
{
new auth_key[512];
BS_IgnoreBits(bs, 8); // packetid
BS_ReadValue(bs, PR_STRING8, auth_key, sizeof(auth_key));
printf("playerid %d auth_key %s", playerid, auth_key);
return 1;
}
- Refer to BrunoBM16's RPC and Packet lists