Home
Extended
FiltersTips and TricksServiceProtocolMessage TypesAuthenticate Response TypesIdentification TypesChat Message FormatEvent Message FormatAuthenticate Message FormatAuthenticate Response Message FormatSupport
TroubleshootingProtocol
Message Types
enum MessageType{MessageInvalid = 0,MessageAuthenticate,MessageAuthenticateResponse,MessageChat,MessageEvent,MessageTypeCount,}
Authenticate Response Types
enum AuthenticateResponse{AuthenticateInvalid = 0,AuthenticateSuccess,AuthenticateDenied,AuthenticateResponseCount,}
Identification Types
enum IdentificationType{IdentificationInvalid = 0,IdentificationSteam,IdentificationDiscord,IdentificationTypeCount,}
Chat Message Format
| Data | Type | Comment |
|---|---|---|
| Header | byte | MessageChat value of MessageType enum |
| EntityName | stringSz | Entity name of the host sending the message |
| IDType | byte | Item from IdentificationType enum |
| ID | stringSz | Unique identification of the user |
| Username | stringSz | Name of the user sending the message |
| Message | stringSz | Message content |
Event Message Format
| Data | Type | Comment |
|---|---|---|
| Header | byte | MessageEvent value of MessageType enum |
| EntityName | stringSz | Entity name of the host sending the message |
| Event | stringSz | Name of the event |
| Data | stringSz | Data of the event |
Authenticate Message Format
| Data | Type | Comment |
|---|---|---|
| Header | byte | MessageAuthenticate value of MessageType enum |
| EntityName | stringSz | Entity name of the host sending the message |
| Token | stringSz | Authentication token |
Authenticate Response Message Format
| Data | Type | Comment |
|---|---|---|
| Header | byte | MessageAuthenticate value of MessageType enum |
| EntityName | stringSz | Entity name of the host sending the message |
| Response | byte | Item from AuthenticateResponse enum |