Add Network.CMD_WHISPER

Wirlaburla 2023-09-30 03:02:17 -04:00
parent 6645d6ae4e
commit 17a34fc7fd

19
Network.CMD_WHISPER.md Normal file

@ -0,0 +1,19 @@
## Server
| Name | Type | Required | Description |
| ---- | ---- | :------: | :---------- |
| Length | Byte | ✗ | |
| ObjID | [ObjectID](Network.ObjectID) | ✗ | Always the client. |
| Type | Byte | ✗ | `0x11 (17)` |
| - | - | - | - |
| Sender | [ObjectID](Network.ObjectID) | ✗ | Message sender. Short IDs aren't used here. |
| Text | String | ✗ | Message |
## Client
| Name | Type | Required | Description |
| ---- | ---- | :------: | :---------- |
| Length | Byte | ✗ | |
| ObjID | [ObjectID](Network.ObjectID) | ✗ | The recipient. Long IDs only. |
| Type | Byte | ✗ | `0x11 (17)` |
| - | - | - | - |
| Sender | [ObjectID](Network.ObjectID) | ✗ | Always an empty long ID. |
| Text | String | ✗ | Message |