S>C 0x07 BOTNET_USER_DISC
Transport Layer: | Transmission Control Protocol (TCP) |
---|---|
Application Layer: | BotNet Messages (PACKET) |
Message Id: | 0x07 |
Message Name: | BOTNET_USER_DISC |
Direction: | Server to Client |
Used By: | (nothing or unknown) |
Message Format: (does not include protocol header) |
|
Remarks
User disconnected.
This message is sent from the server when another user disconnects from the server. The Bot ID corresponds to the one in S>C 0x06 BOTNET_USER
.
| Edited:
Anonymous
Comments
pcid pkid length uid reason
[01] [07] [09 00] [9F 03 00 00] - [06]
switch (reason) {
case 0x3: { s_reason = "[Kicked] By Admin"; break; }
case 0x5: { s_reason = "[Kicked] For Protocol Violation"; break; }
case 0x6: { s_reason = "[Connection Dropped] Network Error"; break; }
case 0x7: { s_reason = "disconnected"; break; }
default: { s_reason = "unknowen"; break; }
}