🌐GC
Table to work with Game Coordinator (GC).
Possible message types and message bodies could be found at here Message type id starts with k_E
prefix, for example k_EMsgGCMatchmakingStatsRequest = 7197;
. Message body starts with with C
prefix instead of "k_E", for example message CMsgDOTAMatchmakingStatsRequest {}
.
SendMessage(msg: userdata
, msg_type: integer
, msg_size: integer
): nil
userdata
, msg_type: integer
, msg_size: integer
): nil
Name
Type
Description
msg
userdata
Pointer to protobuf message buffer.
msg_type
integer
Protobuf message type ID.
msg_size
integer
Size of the protobuf message.
Sends protobuff message to game coordinator. Response will be received in OnGCMessage
callback.
Example
GetSteamID(): string
string
Returns local player Steam ID as string.
Last updated