steamutils 1.2.51 → 1.2.53

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (226) hide show
  1. package/.idea/codeStyles/codeStyleConfig.xml +5 -0
  2. package/.idea/steamutils.iml +1 -1
  3. package/.idea/vcs.xml +1 -1
  4. package/SteamClient.js +18 -12
  5. package/example.js +1 -0
  6. package/helpers/protos.js +21 -0
  7. package/package.json +6 -6
  8. package/protos/{base_gcmessages.proto → csgo/base_gcmessages_csgo.proto} +547 -533
  9. package/protos/csgo/c_peer2peer_netmessages.proto +55 -0
  10. package/protos/csgo/clientmessages.proto +48 -0
  11. package/protos/csgo/connectionless_netmessages.proto +19 -0
  12. package/protos/csgo/cs_gameevents.proto +34 -0
  13. package/protos/csgo/cs_usercmd.proto +34 -0
  14. package/protos/{cstrike15_gcmessages.proto → csgo/cstrike15_gcmessages.proto} +1402 -1344
  15. package/protos/{cstrike15_usermessages.proto → csgo/cstrike15_usermessages.proto} +596 -597
  16. package/protos/csgo/demo.proto +160 -0
  17. package/protos/{econ_gcmessages.proto → csgo/econ_gcmessages.proto} +228 -225
  18. package/protos/{engine_gcmessages.proto → csgo/engine_gcmessages.proto} +14 -16
  19. package/protos/{enums_clientserver.proto → csgo/enums_clientserver.proto} +1529 -1534
  20. package/protos/{fatdemo.proto → csgo/fatdemo.proto} +125 -125
  21. package/protos/csgo/gameevents.proto +120 -0
  22. package/protos/{gcsdk_gcmessages.proto → csgo/gcsdk_gcmessages.proto} +323 -302
  23. package/protos/{gcsystemmsgs.proto → csgo/gcsystemmsgs.proto} +242 -246
  24. package/protos/csgo/netmessages.proto +604 -0
  25. package/protos/csgo/network_connection.proto +126 -0
  26. package/protos/csgo/networkbasetypes.proto +244 -0
  27. package/protos/csgo/networksystem_protomessages.proto +17 -0
  28. package/protos/{steamdatagram_messages_auth.proto → csgo/steamdatagram_messages_auth.proto} +65 -65
  29. package/protos/csgo/steamdatagram_messages_sdr.proto +534 -0
  30. package/protos/{steammessages.proto → csgo/steammessages.proto} +597 -601
  31. package/protos/{steammessages_base.proto → csgo/steammessages_base.proto} +301 -288
  32. package/protos/csgo/steammessages_cloud.steamworkssdk.proto +68 -0
  33. package/protos/{steammessages_gamenetworkingui.proto → csgo/steammessages_gamenetworkingui.proto} +61 -42
  34. package/protos/csgo/steammessages_helprequest.steamworkssdk.proto +22 -0
  35. package/protos/csgo/steammessages_oauth.steamworkssdk.proto +18 -0
  36. package/protos/csgo/steammessages_player.steamworkssdk.proto +254 -0
  37. package/protos/csgo/steammessages_publishedfile.steamworkssdk.proto +233 -0
  38. package/protos/csgo/steammessages_steamlearn.steamworkssdk.proto +357 -0
  39. package/protos/csgo/steammessages_unified_base.steamworkssdk.proto +30 -0
  40. package/protos/{steamnetworkingsockets_messages.proto → csgo/steamnetworkingsockets_messages.proto} +205 -204
  41. package/protos/{steamnetworkingsockets_messages_certs.proto → csgo/steamnetworkingsockets_messages_certs.proto} +39 -38
  42. package/protos/{steamnetworkingsockets_messages_udp.proto → csgo/steamnetworkingsockets_messages_udp.proto} +75 -75
  43. package/protos/csgo/te.proto +259 -0
  44. package/protos/{uifontfile_format.proto → csgo/uifontfile_format.proto} +13 -16
  45. package/protos/csgo/usercmd.proto +38 -0
  46. package/protos/csgo/usermessages.proto +721 -0
  47. package/protos/csgo/valveextensions.proto +17 -0
  48. package/protos/google/protobuf/descriptor.proto +281 -0
  49. package/protos/{clientmetrics.proto → steam/clientmetrics.proto} +45 -45
  50. package/protos/{content_manifest.proto → steam/content_manifest.proto} +62 -62
  51. package/protos/steam/contenthubs.proto +41 -0
  52. package/protos/{encrypted_app_ticket.proto → steam/encrypted_app_ticket.proto} +10 -10
  53. package/protos/{enums.proto → steam/enums.proto} +444 -285
  54. package/protos/steam/enums_clientserver.proto +1539 -0
  55. package/protos/steam/enums_productinfo.proto +13 -0
  56. package/protos/{htmlmessages.proto → steam/htmlmessages.proto} +1027 -993
  57. package/protos/steam/offline_ticket.proto +8 -0
  58. package/protos/{renderer → steam/renderer}/rendermessages.proto +893 -893
  59. package/protos/steam/steamdatagram_messages_auth.proto +65 -0
  60. package/protos/{steamdatagram_messages_sdr.proto → steam/steamdatagram_messages_sdr.proto} +533 -518
  61. package/protos/{steammessages_accounthardware.steamclient.proto → steam/steammessages_accounthardware.steamclient.proto} +201 -188
  62. package/protos/{steammessages_appoverview.proto → steam/steammessages_appoverview.proto} +187 -185
  63. package/protos/steam/steammessages_auth.steamclient.proto +435 -0
  64. package/protos/steam/steammessages_base.proto +332 -0
  65. package/protos/{steammessages_broadcast.steamclient.proto → steam/steammessages_broadcast.steamclient.proto} +759 -756
  66. package/protos/{steammessages_chat.steamclient.proto → steam/steammessages_chat.steamclient.proto} +1281 -1281
  67. package/protos/steam/steammessages_client_objects.proto +645 -0
  68. package/protos/{steammessages_clientlanp2p.proto → steam/steammessages_clientlanp2p.proto} +42 -26
  69. package/protos/{steammessages_clientmetrics.steamclient.proto → steam/steammessages_clientmetrics.steamclient.proto} +194 -176
  70. package/protos/{steammessages_clientnotificationtypes.proto → steam/steammessages_clientnotificationtypes.proto} +231 -129
  71. package/protos/{steammessages_clientserver.proto → steam/steammessages_clientserver.proto} +392 -384
  72. package/protos/{steammessages_clientserver_2.proto → steam/steammessages_clientserver_2.proto} +760 -776
  73. package/protos/{steammessages_clientserver_appinfo.proto → steam/steammessages_clientserver_appinfo.proto} +131 -166
  74. package/protos/{steammessages_clientserver_friends.proto → steam/steammessages_clientserver_friends.proto} +260 -260
  75. package/protos/{steammessages_clientserver_gameservers.proto → steam/steammessages_clientserver_gameservers.proto} +159 -159
  76. package/protos/{steammessages_clientserver_lbs.proto → steam/steammessages_clientserver_lbs.proto} +70 -70
  77. package/protos/{steammessages_clientserver_login.proto → steam/steammessages_clientserver_login.proto} +167 -159
  78. package/protos/{steammessages_clientserver_mms.proto → steam/steammessages_clientserver_mms.proto} +228 -235
  79. package/protos/{steammessages_clientserver_ucm.proto → steam/steammessages_clientserver_ucm.proto} +205 -202
  80. package/protos/{steammessages_clientserver_uds.proto → steam/steammessages_clientserver_uds.proto} +124 -104
  81. package/protos/{steammessages_clientserver_ufs.proto → steam/steammessages_clientserver_ufs.proto} +172 -172
  82. package/protos/{steammessages_clientserver_userstats.proto → steam/steammessages_clientserver_userstats.proto} +80 -80
  83. package/protos/steam/steammessages_clientsettings.proto +168 -0
  84. package/protos/{steammessages_cloud.steamclient.proto → steam/steammessages_cloud.steamclient.proto} +513 -512
  85. package/protos/{steammessages_contentsystem.steamclient.proto → steam/steammessages_contentsystem.steamclient.proto} +115 -77
  86. package/protos/{steammessages_credentials.steamclient.proto → steam/steammessages_credentials.steamclient.proto} +115 -141
  87. package/protos/steam/steammessages_datapublisher.steamclient.proto +116 -0
  88. package/protos/{steammessages_depotbuilder.steamclient.proto → steam/steammessages_depotbuilder.steamclient.proto} +118 -118
  89. package/protos/{steammessages_deviceauth.steamclient.proto → steam/steammessages_deviceauth.steamclient.proto} +203 -200
  90. package/protos/{steammessages_econ.steamclient.proto → steam/steammessages_econ.steamclient.proto} +150 -105
  91. package/protos/{steammessages_friendmessages.steamclient.proto → steam/steammessages_friendmessages.steamclient.proto} +168 -168
  92. package/protos/{steammessages_gamenetworking.steamclient.proto → steam/steammessages_gamenetworking.steamclient.proto} +32 -32
  93. package/protos/steam/steammessages_gamenetworkingui.proto +61 -0
  94. package/protos/{steammessages_gamenotifications.steamclient.proto → steam/steammessages_gamenotifications.steamclient.proto} +156 -156
  95. package/protos/{steammessages_gameservers.steamclient.proto → steam/steammessages_gameservers.steamclient.proto} +152 -152
  96. package/protos/{steammessages_hiddevices.proto → steam/steammessages_hiddevices.proto} +157 -156
  97. package/protos/{steammessages_inventory.steamclient.proto → steam/steammessages_inventory.steamclient.proto} +224 -224
  98. package/protos/{steammessages_linkfilter.steamclient.proto → steam/steammessages_linkfilter.steamclient.proto} +49 -49
  99. package/protos/{steammessages_lobbymatchmaking.steamclient.proto → steam/steammessages_lobbymatchmaking.steamclient.proto} +33 -33
  100. package/protos/{steammessages_market.steamclient.proto → steam/steammessages_market.steamclient.proto} +26 -26
  101. package/protos/steam/steammessages_marketingmessages.steamclient.proto +274 -0
  102. package/protos/{steammessages_offline.steamclient.proto → steam/steammessages_offline.steamclient.proto} +40 -37
  103. package/protos/{steammessages_parental.steamclient.proto → steam/steammessages_parental.steamclient.proto} +228 -186
  104. package/protos/{steammessages_parties.steamclient.proto → steam/steammessages_parties.steamclient.proto} +94 -94
  105. package/protos/{steammessages_partnerapps.steamclient.proto → steam/steammessages_partnerapps.steamclient.proto} +138 -136
  106. package/protos/{steammessages_player.steamclient.proto → steam/steammessages_player.steamclient.proto} +1060 -912
  107. package/protos/{steammessages_publishedfile.steamclient.proto → steam/steammessages_publishedfile.steamclient.proto} +813 -711
  108. package/protos/{steammessages_qms.steamclient.proto → steam/steammessages_qms.steamclient.proto} +125 -125
  109. package/protos/{steammessages_remoteclient.proto → steam/steammessages_remoteclient.proto} +99 -99
  110. package/protos/{steammessages_remoteclient_discovery.proto → steam/steammessages_remoteclient_discovery.proto} +235 -228
  111. package/protos/{steammessages_remoteclient_service.steamclient.proto → steam/steammessages_remoteclient_service.steamclient.proto} +86 -90
  112. package/protos/{steammessages_remoteclient_service_messages.proto → steam/steammessages_remoteclient_service_messages.proto} +217 -196
  113. package/protos/{steammessages_remoteplay.proto → steam/steammessages_remoteplay.proto} +976 -871
  114. package/protos/{steammessages_secrets.steamclient.proto → steam/steammessages_secrets.steamclient.proto} +39 -39
  115. package/protos/{steammessages_shader.steamclient.proto → steam/steammessages_shader.steamclient.proto} +108 -96
  116. package/protos/{steammessages_site_license.steamclient.proto → steam/steammessages_site_license.steamclient.proto} +128 -128
  117. package/protos/{steammessages_sitelicenseclient.proto → steam/steammessages_sitelicenseclient.proto} +38 -38
  118. package/protos/{steammessages_siteserverui.proto → steam/steammessages_siteserverui.proto} +130 -130
  119. package/protos/{steammessages_star.steamclient.proto → steam/steammessages_star.steamclient.proto} +64 -64
  120. package/protos/{steammessages_steamtv.steamclient.proto → steam/steammessages_steamtv.steamclient.proto} +630 -630
  121. package/protos/{steammessages_store.steamclient.proto → steam/steammessages_store.steamclient.proto} +371 -262
  122. package/protos/steam/steammessages_storebrowse.steamclient.proto +402 -0
  123. package/protos/{steammessages_timedtrial.steamclient.proto → steam/steammessages_timedtrial.steamclient.proto} +50 -50
  124. package/protos/{steammessages_twofactor.steamclient.proto → steam/steammessages_twofactor.steamclient.proto} +186 -154
  125. package/protos/{steammessages_unified_base.steamclient.proto → steam/steammessages_unified_base.steamclient.proto} +33 -33
  126. package/protos/{steammessages_unified_test.steamclient.proto → steam/steammessages_unified_test.steamclient.proto} +61 -50
  127. package/protos/{steammessages_useraccount.steamclient.proto → steam/steammessages_useraccount.steamclient.proto} +249 -210
  128. package/protos/{steammessages_vac.steamclient.proto → steam/steammessages_vac.steamclient.proto} +44 -44
  129. package/protos/steam/steammessages_video.steamclient.proto +171 -0
  130. package/protos/{steammessages_virtualcontroller.proto → steam/steammessages_virtualcontroller.proto} +138 -138
  131. package/protos/{steammessages_workshop.steamclient.proto → steam/steammessages_workshop.steamclient.proto} +23 -23
  132. package/protos/steam/steamnetworkingsockets_messages.proto +205 -0
  133. package/protos/steam/steamnetworkingsockets_messages_certs.proto +39 -0
  134. package/protos/steam/steamnetworkingsockets_messages_udp.proto +75 -0
  135. package/protos/steam/webuimessages_base.proto +24 -0
  136. package/protos/steam/webuimessages_gamenotes.proto +21 -0
  137. package/protos/steam/webuimessages_steamengine.proto +32 -0
  138. package/protos/steam/webuimessages_storagedevicemanager.proto +110 -0
  139. package/protos/steam/webuimessages_systemmanager.proto +17 -0
  140. package/protos/steam/webuimessages_transport.proto +18 -0
  141. package/protos/steam/webuimessages_transportvalidation.proto +97 -0
  142. package/protos/webui/common.proto +5508 -0
  143. package/protos/webui/common_base.proto +27 -0
  144. package/protos/webui/service_accountlinking.proto +27 -0
  145. package/protos/webui/service_accountprivacy.proto +42 -0
  146. package/protos/webui/service_auction.proto +97 -0
  147. package/protos/webui/service_authentication.proto +222 -0
  148. package/protos/webui/service_authenticationsupport.proto +74 -0
  149. package/protos/webui/service_broadcast.proto +562 -0
  150. package/protos/webui/service_chat.proto +11 -0
  151. package/protos/webui/service_chatroom.proto +810 -0
  152. package/protos/webui/service_chatusability.proto +107 -0
  153. package/protos/webui/service_clan.proto +41 -0
  154. package/protos/webui/service_clanchatrooms.proto +25 -0
  155. package/protos/webui/service_clanfaqs.proto +202 -0
  156. package/protos/webui/service_clientcomm.proto +150 -0
  157. package/protos/webui/service_clientmetrics.proto +63 -0
  158. package/protos/webui/service_cloud.proto +222 -0
  159. package/protos/webui/service_cloudconfigstore.proto +51 -0
  160. package/protos/webui/service_cloudgaming.proto +30 -0
  161. package/protos/webui/service_community.proto +365 -0
  162. package/protos/webui/service_econ.proto +134 -0
  163. package/protos/webui/service_embedded.proto +24 -0
  164. package/protos/webui/service_experimentservice.proto +6 -0
  165. package/protos/webui/service_fovasvideo.proto +15 -0
  166. package/protos/webui/service_friendmessages.proto +133 -0
  167. package/protos/webui/service_friendslist.proto +70 -0
  168. package/protos/webui/service_gamenotes.proto +15 -0
  169. package/protos/webui/service_helprequestlogs.proto +26 -0
  170. package/protos/webui/service_loyaltyrewards.proto +252 -0
  171. package/protos/webui/service_marketingmessages.proto +184 -0
  172. package/protos/webui/service_mobileapp.proto +18 -0
  173. package/protos/webui/service_mobileauth.proto +24 -0
  174. package/protos/webui/service_mobiledevice.proto +26 -0
  175. package/protos/webui/service_mobileperaccount.proto +31 -0
  176. package/protos/webui/service_news.proto +101 -0
  177. package/protos/webui/service_parental.proto +178 -0
  178. package/protos/webui/service_partnermembershipinvite.proto +29 -0
  179. package/protos/webui/service_partnerstorebrowse.proto +6 -0
  180. package/protos/webui/service_phone.proto +51 -0
  181. package/protos/webui/service_physicalgoods.proto +15 -0
  182. package/protos/webui/service_player.proto +885 -0
  183. package/protos/webui/service_promotioneventinvites.proto +50 -0
  184. package/protos/webui/service_promotionplanning.proto +72 -0
  185. package/protos/webui/service_publishedfile.proto +687 -0
  186. package/protos/webui/service_publishing.proto +119 -0
  187. package/protos/webui/service_quest.proto +127 -0
  188. package/protos/webui/service_salefeature.proto +315 -0
  189. package/protos/webui/service_saleitemrewards.proto +54 -0
  190. package/protos/webui/service_shoppingcart.proto +108 -0
  191. package/protos/webui/service_steamawards.proto +19 -0
  192. package/protos/webui/service_steamcharts.proto +75 -0
  193. package/protos/webui/service_steamengine.proto +36 -0
  194. package/protos/webui/service_steamlearn.proto +727 -0
  195. package/protos/webui/service_steamnotification.proto +84 -0
  196. package/protos/webui/service_steamtv.proto +495 -0
  197. package/protos/webui/service_steamvrvoicechat.proto +67 -0
  198. package/protos/webui/service_steamvrwebrtc.proto +48 -0
  199. package/protos/webui/service_storagedevicemanager.proto +104 -0
  200. package/protos/webui/service_store.proto +289 -0
  201. package/protos/webui/service_storeappsimilarity.proto +76 -0
  202. package/protos/webui/service_storebrowse.proto +73 -0
  203. package/protos/webui/service_storequery.proto +97 -0
  204. package/protos/webui/service_storesales.proto +15 -0
  205. package/protos/webui/service_storetopsellers.proto +44 -0
  206. package/protos/webui/service_systemmanager.proto +11 -0
  207. package/protos/webui/service_test_transporterror.proto +6 -0
  208. package/protos/webui/service_transportauth.proto +12 -0
  209. package/protos/webui/service_transportvalidation.proto +69 -0
  210. package/protos/webui/service_twofactor.proto +181 -0
  211. package/protos/webui/service_useraccount.proto +138 -0
  212. package/protos/webui/service_usergameactivity.proto +34 -0
  213. package/protos/webui/service_usergamenotes.proto +53 -0
  214. package/protos/webui/service_usernews.proto +68 -0
  215. package/protos/webui/service_userreviews.proto +96 -0
  216. package/protos/webui/service_video.proto +128 -0
  217. package/protos/webui/service_voicechat.proto +139 -0
  218. package/protos/webui/service_webrtc.proto +52 -0
  219. package/.idea/deployment.xml +0 -21
  220. package/protos/netmessages.proto +0 -491
  221. package/protos/network_connection.proto +0 -70
  222. package/protos/steamdatagram_messages.proto +0 -205
  223. package/protos/steammessages_auth.steamclient.proto +0 -192
  224. package/protos/steammessages_client_objects.proto +0 -336
  225. package/protos/steammessages_datapublisher.steamclient.proto +0 -67
  226. package/protos/steammessages_video.steamclient.proto +0 -84
@@ -1,1344 +1,1402 @@
1
- import "steammessages.proto";
2
- import "engine_gcmessages.proto";
3
-
4
- option optimize_for = SPEED;
5
- option cc_generic_services = false;
6
-
7
- enum ECsgoGCMsg {
8
- k_EMsgGCCStrike15_v2_Base = 9100;
9
- k_EMsgGCCStrike15_v2_MatchmakingStart = 9101;
10
- k_EMsgGCCStrike15_v2_MatchmakingStop = 9102;
11
- k_EMsgGCCStrike15_v2_MatchmakingClient2ServerPing = 9103;
12
- k_EMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate = 9104;
13
- k_EMsgGCCStrike15_v2_MatchmakingServerReservationResponse = 9106;
14
- k_EMsgGCCStrike15_v2_MatchmakingGC2ClientReserve = 9107;
15
- k_EMsgGCCStrike15_v2_MatchmakingClient2GCHello = 9109;
16
- k_EMsgGCCStrike15_v2_MatchmakingGC2ClientHello = 9110;
17
- k_EMsgGCCStrike15_v2_MatchmakingGC2ClientAbandon = 9112;
18
- k_EMsgGCCStrike15_v2_MatchmakingGCOperationalStats = 9115;
19
- k_EMsgGCCStrike15_v2_MatchmakingOperator2GCBlogUpdate = 9117;
20
- k_EMsgGCCStrike15_v2_ServerNotificationForUserPenalty = 9118;
21
- k_EMsgGCCStrike15_v2_ClientReportPlayer = 9119;
22
- k_EMsgGCCStrike15_v2_ClientReportServer = 9120;
23
- k_EMsgGCCStrike15_v2_ClientCommendPlayer = 9121;
24
- k_EMsgGCCStrike15_v2_ClientReportResponse = 9122;
25
- k_EMsgGCCStrike15_v2_ClientCommendPlayerQuery = 9123;
26
- k_EMsgGCCStrike15_v2_ClientCommendPlayerQueryResponse = 9124;
27
- k_EMsgGCCStrike15_v2_WatchInfoUsers = 9126;
28
- k_EMsgGCCStrike15_v2_ClientRequestPlayersProfile = 9127;
29
- k_EMsgGCCStrike15_v2_PlayersProfile = 9128;
30
- k_EMsgGCCStrike15_v2_PlayerOverwatchCaseUpdate = 9131;
31
- k_EMsgGCCStrike15_v2_PlayerOverwatchCaseAssignment = 9132;
32
- k_EMsgGCCStrike15_v2_PlayerOverwatchCaseStatus = 9133;
33
- k_EMsgGCCStrike15_v2_GC2ClientTextMsg = 9134;
34
- k_EMsgGCCStrike15_v2_Client2GCTextMsg = 9135;
35
- k_EMsgGCCStrike15_v2_MatchEndRunRewardDrops = 9136;
36
- k_EMsgGCCStrike15_v2_MatchEndRewardDropsNotification = 9137;
37
- k_EMsgGCCStrike15_v2_ClientRequestWatchInfoFriends2 = 9138;
38
- k_EMsgGCCStrike15_v2_MatchList = 9139;
39
- k_EMsgGCCStrike15_v2_MatchListRequestCurrentLiveGames = 9140;
40
- k_EMsgGCCStrike15_v2_MatchListRequestRecentUserGames = 9141;
41
- k_EMsgGCCStrike15_v2_GC2ServerReservationUpdate = 9142;
42
- k_EMsgGCCStrike15_v2_ClientVarValueNotificationInfo = 9144;
43
- k_EMsgGCCStrike15_v2_MatchListRequestTournamentGames = 9146;
44
- k_EMsgGCCStrike15_v2_MatchListRequestFullGameInfo = 9147;
45
- k_EMsgGCCStrike15_v2_GiftsLeaderboardRequest = 9148;
46
- k_EMsgGCCStrike15_v2_GiftsLeaderboardResponse = 9149;
47
- k_EMsgGCCStrike15_v2_ServerVarValueNotificationInfo = 9150;
48
- k_EMsgGCCStrike15_v2_ClientSubmitSurveyVote = 9152;
49
- k_EMsgGCCStrike15_v2_Server2GCClientValidate = 9153;
50
- k_EMsgGCCStrike15_v2_MatchListRequestLiveGameForUser = 9154;
51
- k_EMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockRequest = 9156;
52
- k_EMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponse = 9157;
53
- k_EMsgGCCStrike15_v2_AccountPrivacySettings = 9158;
54
- k_EMsgGCCStrike15_v2_SetMyActivityInfo = 9159;
55
- k_EMsgGCCStrike15_v2_MatchListRequestTournamentPredictions = 9160;
56
- k_EMsgGCCStrike15_v2_MatchListUploadTournamentPredictions = 9161;
57
- k_EMsgGCCStrike15_v2_DraftSummary = 9162;
58
- k_EMsgGCCStrike15_v2_ClientRequestJoinFriendData = 9163;
59
- k_EMsgGCCStrike15_v2_ClientRequestJoinServerData = 9164;
60
- k_EMsgGCCStrike15_v2_ClientRequestNewMission = 9165;
61
- k_EMsgGCCStrike15_v2_GC2ClientTournamentInfo = 9167;
62
- k_EMsgGC_GlobalGame_Subscribe = 9168;
63
- k_EMsgGC_GlobalGame_Unsubscribe = 9169;
64
- k_EMsgGC_GlobalGame_Play = 9170;
65
- k_EMsgGCCStrike15_v2_AcknowledgePenalty = 9171;
66
- k_EMsgGCCStrike15_v2_Client2GCRequestPrestigeCoin = 9172;
67
- k_EMsgGCCStrike15_v2_GC2ClientGlobalStats = 9173;
68
- k_EMsgGCCStrike15_v2_Client2GCStreamUnlock = 9174;
69
- k_EMsgGCCStrike15_v2_FantasyRequestClientData = 9175;
70
- k_EMsgGCCStrike15_v2_FantasyUpdateClientData = 9176;
71
- k_EMsgGCCStrike15_v2_GCToClientSteamdatagramTicket = 9177;
72
- k_EMsgGCCStrike15_v2_ClientToGCRequestTicket = 9178;
73
- k_EMsgGCCStrike15_v2_ClientToGCRequestElevate = 9179;
74
- k_EMsgGCCStrike15_v2_GlobalChat = 9180;
75
- k_EMsgGCCStrike15_v2_GlobalChat_Subscribe = 9181;
76
- k_EMsgGCCStrike15_v2_GlobalChat_Unsubscribe = 9182;
77
- k_EMsgGCCStrike15_v2_ClientAuthKeyCode = 9183;
78
- k_EMsgGCCStrike15_v2_GotvSyncPacket = 9184;
79
- k_EMsgGCCStrike15_v2_ClientPlayerDecalSign = 9185;
80
- k_EMsgGCCStrike15_v2_ClientLogonFatalError = 9187;
81
- k_EMsgGCCStrike15_v2_ClientPollState = 9188;
82
- k_EMsgGCCStrike15_v2_Party_Register = 9189;
83
- k_EMsgGCCStrike15_v2_Party_Unregister = 9190;
84
- k_EMsgGCCStrike15_v2_Party_Search = 9191;
85
- k_EMsgGCCStrike15_v2_Party_Invite = 9192;
86
- k_EMsgGCCStrike15_v2_Account_RequestCoPlays = 9193;
87
- k_EMsgGCCStrike15_v2_ClientGCRankUpdate = 9194;
88
- k_EMsgGCCStrike15_v2_ClientRequestOffers = 9195;
89
- k_EMsgGCCStrike15_v2_ClientAccountBalance = 9196;
90
- k_EMsgGCCStrike15_v2_ClientPartyJoinRelay = 9197;
91
- k_EMsgGCCStrike15_v2_ClientPartyWarning = 9198;
92
- k_EMsgGCCStrike15_v2_SetEventFavorite = 9200;
93
- k_EMsgGCCStrike15_v2_GetEventFavorites_Request = 9201;
94
- k_EMsgGCCStrike15_v2_ClientPerfReport = 9202;
95
- k_EMsgGCCStrike15_v2_GetEventFavorites_Response = 9203;
96
- k_EMsgGCCStrike15_v2_ClientRequestSouvenir = 9204;
97
- k_EMsgGCCStrike15_v2_ClientReportValidation = 9205;
98
- k_EMsgGCCStrike15_v2_GC2ClientRefuseSecureMode = 9206;
99
- k_EMsgGCCStrike15_v2_GC2ClientRequestValidation = 9207;
100
- k_EMsgGCCStrike15_v2_ClientRedeemMissionReward = 9209;
101
- k_EMsgGCCStrike15_ClientDeepStats = 9210;
102
- k_EMsgGCCStrike15_StartAgreementSessionInGame = 9211;
103
- k_EMsgGCCStrike15_v2_GC2ClientInitSystem = 9212;
104
- k_EMsgGCCStrike15_v2_GC2ClientInitSystem_Response = 9213;
105
- k_EMsgGCCStrike15_v2_PrivateQueues = 9214;
106
- k_EMsgGCCStrike15_v2_MatchListTournamentOperatorMgmt = 9215;
107
- }
108
-
109
- enum ECsgoSteamUserStat {
110
- k_ECsgoSteamUserStat_XpEarnedGames = 1;
111
- k_ECsgoSteamUserStat_MatchWinsCompetitive = 2;
112
- k_ECsgoSteamUserStat_SurvivedDangerZone = 3;
113
- }
114
-
115
- enum EClientReportingVersion {
116
- k_EClientReportingVersion_OldVersion = 0;
117
- k_EClientReportingVersion_BetaVersion = 1;
118
- k_EClientReportingVersion_SupportsTrustedMode = 2;
119
- }
120
-
121
- enum EInitSystemResult {
122
- k_EInitSystemResult_Invalid = 0;
123
- k_EInitSystemResult_Success = 1;
124
- k_EInitSystemResult_None = 2;
125
- k_EInitSystemResult_NotFound = 3;
126
- k_EInitSystemResult_Existing = 4;
127
- k_EInitSystemResult_FailedOpen = 5;
128
- k_EInitSystemResult_Mismatch = 6;
129
- k_EInitSystemResult_FailedInit = 7;
130
- k_EInitSystemResult_Max = 8;
131
- }
132
-
133
- message GameServerPing {
134
- optional int32 ping = 2;
135
- optional uint32 ip = 3;
136
- optional uint32 instances = 5;
137
- }
138
-
139
- message DataCenterPing {
140
- optional fixed32 data_center_id = 1;
141
- optional sint32 ping = 2;
142
- }
143
-
144
- message DetailedSearchStatistic {
145
- optional uint32 game_type = 1;
146
- optional uint32 search_time_avg = 2;
147
- optional uint32 players_searching = 4;
148
- }
149
-
150
- message TournamentPlayer {
151
- optional uint32 account_id = 1;
152
- optional string player_nick = 2;
153
- optional string player_name = 3;
154
- optional uint32 player_dob = 4;
155
- optional string player_flag = 5;
156
- optional string player_location = 6;
157
- optional string player_desc = 7;
158
- }
159
-
160
- message TournamentTeam {
161
- optional int32 team_id = 1;
162
- optional string team_tag = 2;
163
- optional string team_flag = 3;
164
- optional string team_name = 4;
165
- repeated .TournamentPlayer players = 5;
166
- }
167
-
168
- message TournamentEvent {
169
- optional int32 event_id = 1;
170
- optional string event_tag = 2;
171
- optional string event_name = 3;
172
- optional uint32 event_time_start = 4;
173
- optional uint32 event_time_end = 5;
174
- optional int32 event_public = 6;
175
- optional int32 event_stage_id = 7;
176
- optional string event_stage_name = 8;
177
- optional uint32 active_section_id = 9;
178
- }
179
-
180
- message GlobalStatistics {
181
- optional uint32 players_online = 1;
182
- optional uint32 servers_online = 2;
183
- optional uint32 players_searching = 3;
184
- optional uint32 servers_available = 4;
185
- optional uint32 ongoing_matches = 5;
186
- optional uint32 search_time_avg = 6;
187
- repeated .DetailedSearchStatistic search_statistics = 7;
188
- optional string main_post_url = 8;
189
- optional uint32 required_appid_version = 9;
190
- optional uint32 pricesheet_version = 10;
191
- optional uint32 twitch_streams_version = 11;
192
- optional uint32 active_tournament_eventid = 12;
193
- optional uint32 active_survey_id = 13;
194
- optional uint32 rtime32_cur = 14;
195
- optional uint32 rtime32_event_start = 15;
196
- }
197
-
198
- message OperationalStatisticDescription {
199
- optional string name = 1;
200
- optional uint32 idkey = 2;
201
- }
202
-
203
- message OperationalStatisticElement {
204
- optional uint32 idkey = 1;
205
- repeated int32 values = 2;
206
- }
207
-
208
- message OperationalStatisticsPacket {
209
- optional int32 packetid = 1;
210
- optional int32 mstimestamp = 2;
211
- repeated .OperationalStatisticElement values = 3;
212
- }
213
-
214
- message PlayerRankingInfo {
215
- optional uint32 account_id = 1;
216
- optional uint32 rank_id = 2;
217
- optional uint32 wins = 3;
218
- optional float rank_change = 4;
219
- optional uint32 rank_type_id = 6;
220
- optional uint32 tv_control = 7;
221
- }
222
-
223
- message PlayerCommendationInfo {
224
- optional uint32 cmd_friendly = 1;
225
- optional uint32 cmd_teaching = 2;
226
- optional uint32 cmd_leader = 4;
227
- }
228
-
229
- message PlayerMedalsInfo {
230
- repeated uint32 display_items_defidx = 7;
231
- optional uint32 featured_display_item_defidx = 8;
232
- }
233
-
234
- message AccountActivity {
235
- optional uint32 activity = 1;
236
- optional uint32 mode = 2;
237
- optional uint32 map = 3;
238
- optional uint64 matchid = 4;
239
- }
240
-
241
- message TournamentMatchSetup {
242
- optional int32 event_id = 1;
243
- optional int32 team_id_ct = 2;
244
- optional int32 team_id_t = 3;
245
- optional int32 event_stage_id = 4;
246
- }
247
-
248
- message ServerHltvInfo {
249
- optional uint32 tv_udp_port = 1;
250
- optional uint64 tv_watch_key = 2;
251
- optional uint32 tv_slots = 3;
252
- optional uint32 tv_clients = 4;
253
- optional uint32 tv_proxies = 5;
254
- optional uint32 tv_time = 6;
255
- optional uint32 game_type = 8;
256
- optional string game_mapgroup = 9;
257
- optional string game_map = 10;
258
- optional uint64 tv_master_steamid = 11;
259
- optional uint32 tv_local_slots = 12;
260
- optional uint32 tv_local_clients = 13;
261
- optional uint32 tv_local_proxies = 14;
262
- optional uint32 tv_relay_slots = 15;
263
- optional uint32 tv_relay_clients = 16;
264
- optional uint32 tv_relay_proxies = 17;
265
- optional uint32 tv_relay_address = 18;
266
- optional uint32 tv_relay_port = 19;
267
- optional uint64 tv_relay_steamid = 20;
268
- optional uint32 flags = 21;
269
- }
270
-
271
- message IpAddressMask {
272
- optional uint32 a = 1;
273
- optional uint32 b = 2;
274
- optional uint32 c = 3;
275
- optional uint32 d = 4;
276
- optional uint32 bits = 5;
277
- optional uint32 token = 6;
278
- }
279
-
280
- message CMsgCsgoSteamUserStatChange {
281
- optional int32 ecsgosteamuserstat = 1;
282
- optional int32 delta = 2;
283
- optional bool absolute = 3;
284
- }
285
-
286
- message XpProgressData {
287
- optional uint32 xp_points = 1;
288
- optional int32 xp_category = 2;
289
- }
290
-
291
- message MatchEndItemUpdates {
292
- optional uint64 item_id = 1;
293
- optional uint32 item_attr_defidx = 2;
294
- optional uint32 item_attr_delta_value = 3;
295
- }
296
-
297
- message ScoreLeaderboardData {
298
- message Entry {
299
- optional uint32 tag = 1;
300
- optional uint32 val = 2;
301
- }
302
-
303
- message AccountEntries {
304
- optional uint32 accountid = 1;
305
- repeated .ScoreLeaderboardData.Entry entries = 2;
306
- }
307
-
308
- optional uint64 quest_id = 1;
309
- optional uint32 score = 2;
310
- repeated .ScoreLeaderboardData.AccountEntries accountentries = 3;
311
- repeated .ScoreLeaderboardData.Entry matchentries = 5;
312
- }
313
-
314
- message PlayerQuestData {
315
- message QuestItemData {
316
- optional uint64 quest_id = 1;
317
- optional int32 quest_normal_points_earned = 2;
318
- optional int32 quest_bonus_points_earned = 3;
319
- }
320
-
321
- optional uint32 quester_account_id = 1;
322
- repeated .PlayerQuestData.QuestItemData quest_item_data = 2;
323
- repeated .XpProgressData xp_progress_data = 3;
324
- optional uint32 time_played = 4;
325
- optional uint32 mm_game_mode = 5;
326
- repeated .MatchEndItemUpdates item_updates = 6;
327
- optional bool operation_points_eligible = 7;
328
- repeated .CMsgCsgoSteamUserStatChange userstatchanges = 8;
329
- }
330
-
331
- message DeepPlayerStatsEntry {
332
- optional uint32 accountid = 1;
333
- optional uint64 match_id = 2;
334
- optional uint32 mm_game_mode = 3;
335
- optional uint32 mapid = 4;
336
- optional bool b_starting_ct = 5;
337
- optional uint32 match_outcome = 6;
338
- optional uint32 rounds_won = 7;
339
- optional uint32 rounds_lost = 8;
340
- optional uint32 stat_score = 9;
341
- optional uint32 stat_deaths = 12;
342
- optional uint32 stat_mvps = 13;
343
- optional uint32 enemy_kills = 14;
344
- optional uint32 enemy_headshots = 15;
345
- optional uint32 enemy_2ks = 16;
346
- optional uint32 enemy_3ks = 17;
347
- optional uint32 enemy_4ks = 18;
348
- optional uint32 total_damage = 19;
349
- optional uint32 engagements_entry_count = 23;
350
- optional uint32 engagements_entry_wins = 24;
351
- optional uint32 engagements_1v1_count = 25;
352
- optional uint32 engagements_1v1_wins = 26;
353
- optional uint32 engagements_1v2_count = 27;
354
- optional uint32 engagements_1v2_wins = 28;
355
- optional uint32 utility_count = 29;
356
- optional uint32 utility_success = 30;
357
- optional uint32 flash_count = 32;
358
- optional uint32 flash_success = 33;
359
- repeated uint32 mates = 34;
360
- }
361
-
362
- message DeepPlayerMatchEvent {
363
- optional uint32 accountid = 1;
364
- optional uint64 match_id = 2;
365
- optional uint32 event_id = 3;
366
- optional uint32 event_type = 4;
367
- optional bool b_playing_ct = 5;
368
- optional int32 user_pos_x = 6;
369
- optional int32 user_pos_y = 7;
370
- optional int32 user_pos_z = 12;
371
- optional uint32 user_defidx = 8;
372
- optional int32 other_pos_x = 9;
373
- optional int32 other_pos_y = 10;
374
- optional int32 other_pos_z = 13;
375
- optional uint32 other_defidx = 11;
376
- optional int32 event_data = 14;
377
- }
378
-
379
- message CMsgGC_ServerQuestUpdateData {
380
- repeated .PlayerQuestData player_quest_data = 1;
381
- optional bytes binary_data = 2;
382
- optional uint32 mm_game_mode = 3;
383
- optional .ScoreLeaderboardData missionlbsdata = 4;
384
- }
385
-
386
- message CMsgGCCStrike15_v2_MatchmakingGCOperationalStats {
387
- optional int32 packetid = 1;
388
- repeated .OperationalStatisticDescription namekeys = 2;
389
- repeated .OperationalStatisticsPacket packets = 3;
390
- }
391
-
392
- message CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirm {
393
- optional uint32 token = 1;
394
- optional uint32 stamp = 2;
395
- optional uint64 exchange = 3;
396
- }
397
-
398
- message CMsgGCCStrike15_v2_GC2ServerReservationUpdate {
399
- optional uint32 viewers_external_total = 1;
400
- optional uint32 viewers_external_steam = 2;
401
- }
402
-
403
- message CMsgGCCStrike15_v2_MatchmakingStart {
404
- repeated uint32 account_ids = 1;
405
- optional uint32 game_type = 2;
406
- optional string ticket_data = 3;
407
- optional uint32 client_version = 4;
408
- optional .TournamentMatchSetup tournament_match = 5;
409
- optional bool prime_only = 6;
410
- optional uint32 tv_control = 7;
411
- optional uint64 lobby_id = 8;
412
- }
413
-
414
- message CMsgGCCStrike15_v2_MatchmakingStop {
415
- optional int32 abandon = 1;
416
- }
417
-
418
- message CMsgGCCStrike15_v2_MatchmakingClient2ServerPing {
419
- repeated .GameServerPing gameserverpings = 1;
420
- optional int32 offset_index = 2;
421
- optional int32 final_batch = 3;
422
- repeated .DataCenterPing data_center_pings = 4;
423
- optional uint32 max_ping = 5;
424
- optional fixed32 test_token = 6;
425
- }
426
-
427
- message CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate {
428
- message Note {
429
- optional int32 type = 1;
430
- optional int32 region_id = 2;
431
- optional float region_r = 3;
432
- optional float distance = 4;
433
- }
434
-
435
- optional int32 matchmaking = 1;
436
- repeated uint32 waiting_account_id_sessions = 2;
437
- optional string error = 3;
438
- repeated uint32 ongoingmatch_account_id_sessions = 6;
439
- optional .GlobalStatistics global_stats = 7;
440
- repeated uint32 failping_account_id_sessions = 8;
441
- repeated uint32 penalty_account_id_sessions = 9;
442
- repeated uint32 failready_account_id_sessions = 10;
443
- repeated uint32 vacbanned_account_id_sessions = 11;
444
- optional .IpAddressMask server_ipaddress_mask = 12;
445
- repeated .CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate.Note notes = 13;
446
- repeated uint32 penalty_account_id_sessions_green = 14;
447
- repeated uint32 insufficientlevel_sessions = 15;
448
- repeated uint32 vsncheck_account_id_sessions = 16;
449
- repeated uint32 launcher_mismatch_sessions = 17;
450
- repeated uint32 insecure_account_id_sessions = 18;
451
- }
452
-
453
- message CDataGCCStrike15_v2_TournamentMatchDraft {
454
- message Entry {
455
- optional int32 mapid = 1;
456
- optional int32 team_id_ct = 2;
457
- }
458
-
459
- optional int32 event_id = 1;
460
- optional int32 event_stage_id = 2;
461
- optional int32 team_id_0 = 3;
462
- optional int32 team_id_1 = 4;
463
- optional int32 maps_count = 5;
464
- optional int32 maps_current = 6;
465
- optional int32 team_id_start = 7;
466
- optional int32 team_id_veto1 = 8;
467
- optional int32 team_id_pickn = 9;
468
- repeated .CDataGCCStrike15_v2_TournamentMatchDraft.Entry drafts = 10;
469
- }
470
-
471
- message CPreMatchInfoData {
472
- message TeamStats {
473
- optional int32 match_info_idxtxt = 1;
474
- optional string match_info_txt = 2;
475
- repeated string match_info_teams = 3;
476
- }
477
-
478
- optional int32 predictions_pct = 1;
479
- optional .CDataGCCStrike15_v2_TournamentMatchDraft draft = 4;
480
- repeated .CPreMatchInfoData.TeamStats stats = 5;
481
- repeated int32 wins = 6;
482
- }
483
-
484
- message CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve {
485
- repeated uint32 account_ids = 1;
486
- optional uint32 game_type = 2;
487
- optional uint64 match_id = 3;
488
- optional uint32 server_version = 4;
489
- optional uint32 flags = 18;
490
- repeated .PlayerRankingInfo rankings = 5;
491
- optional uint64 encryption_key = 6;
492
- optional uint64 encryption_key_pub = 7;
493
- repeated uint32 party_ids = 8;
494
- repeated .IpAddressMask whitelist = 9;
495
- optional uint64 tv_master_steamid = 10;
496
- optional .TournamentEvent tournament_event = 11;
497
- repeated .TournamentTeam tournament_teams = 12;
498
- repeated uint32 tournament_casters_account_ids = 13;
499
- optional uint64 tv_relay_steamid = 14;
500
- optional .CPreMatchInfoData pre_match_data = 15;
501
- optional uint32 rtime32_event_start = 16;
502
- optional uint32 tv_control = 17;
503
- }
504
-
505
- message CMsgGCCStrike15_v2_MatchmakingServerReservationResponse {
506
- optional uint64 reservationid = 1;
507
- optional .CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve reservation = 2;
508
- optional string map = 3;
509
- optional uint64 gc_reservation_sent = 4;
510
- optional uint32 server_version = 5;
511
- optional .ServerHltvInfo tv_info = 6;
512
- repeated uint32 reward_player_accounts = 7;
513
- repeated uint32 idle_player_accounts = 8;
514
- optional uint32 reward_item_attr_def_idx = 9;
515
- optional uint32 reward_item_attr_value = 10;
516
- optional uint32 reward_item_attr_reward_idx = 11;
517
- optional uint32 reward_drop_list = 12;
518
- optional string tournament_tag = 13;
519
- optional uint32 legacy_steamdatagram_port = 14;
520
- optional uint32 steamdatagram_routing = 17;
521
- optional fixed32 test_token = 15;
522
- optional uint32 flags = 16;
523
- }
524
-
525
- message CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve {
526
- optional uint64 serverid = 1;
527
- optional uint32 direct_udp_ip = 2;
528
- optional uint32 direct_udp_port = 3;
529
- optional uint64 reservationid = 4;
530
- optional .CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve reservation = 5;
531
- optional string map = 6;
532
- optional string server_address = 7;
533
- }
534
-
535
- message CMsgGCCStrike15_v2_MatchmakingServerRoundStats {
536
- message DropInfo {
537
- optional uint32 account_mvp = 1;
538
- }
539
-
540
- optional uint64 reservationid = 1;
541
- optional .CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve reservation = 2;
542
- optional string map = 3;
543
- optional int32 round = 4;
544
- repeated int32 kills = 5;
545
- repeated int32 assists = 6;
546
- repeated int32 deaths = 7;
547
- repeated int32 scores = 8;
548
- repeated int32 pings = 9;
549
- optional int32 round_result = 10;
550
- optional int32 match_result = 11;
551
- repeated int32 team_scores = 12;
552
- optional .CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirm confirm = 13;
553
- optional int32 reservation_stage = 14;
554
- optional int32 match_duration = 15;
555
- repeated int32 enemy_kills = 16;
556
- repeated int32 enemy_headshots = 17;
557
- repeated int32 enemy_3ks = 18;
558
- repeated int32 enemy_4ks = 19;
559
- repeated int32 enemy_5ks = 20;
560
- repeated int32 mvps = 21;
561
- optional uint32 spectators_count = 22;
562
- optional uint32 spectators_count_tv = 23;
563
- optional uint32 spectators_count_lnk = 24;
564
- repeated int32 enemy_kills_agg = 25;
565
- optional .CMsgGCCStrike15_v2_MatchmakingServerRoundStats.DropInfo drop_info = 26;
566
- optional bool b_switched_teams = 27;
567
- repeated int32 enemy_2ks = 28;
568
- repeated int32 player_spawned = 29;
569
- repeated int32 team_spawn_count = 30;
570
- optional uint32 max_rounds = 31;
571
- }
572
-
573
- message CMsgGCCStrike15_v2_MatchmakingClient2GCHello {
574
- }
575
-
576
- message CMsgGCCStrike15_v2_MatchmakingGC2ClientHello {
577
- optional uint32 account_id = 1;
578
- optional .CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve ongoingmatch = 2;
579
- optional .GlobalStatistics global_stats = 3;
580
- optional uint32 penalty_seconds = 4;
581
- optional uint32 penalty_reason = 5;
582
- optional int32 vac_banned = 6;
583
- optional .PlayerRankingInfo ranking = 7;
584
- optional .PlayerCommendationInfo commendation = 8;
585
- optional .PlayerMedalsInfo medals = 9;
586
- optional .TournamentEvent my_current_event = 10;
587
- repeated .TournamentTeam my_current_event_teams = 11;
588
- optional .TournamentTeam my_current_team = 12;
589
- repeated .TournamentEvent my_current_event_stages = 13;
590
- optional uint32 survey_vote = 14;
591
- optional .AccountActivity activity = 15;
592
- optional int32 player_level = 17;
593
- optional int32 player_cur_xp = 18;
594
- optional int32 player_xp_bonus_flags = 19;
595
- repeated .PlayerRankingInfo rankings = 20;
596
- }
597
-
598
- message CMsgGCCStrike15_v2_AccountPrivacySettings {
599
- message Setting {
600
- optional uint32 setting_type = 1;
601
- optional uint32 setting_value = 2;
602
- }
603
-
604
- repeated .CMsgGCCStrike15_v2_AccountPrivacySettings.Setting settings = 1;
605
- }
606
-
607
- message CMsgGCCStrike15_v2_MatchmakingGC2ClientAbandon {
608
- optional uint32 account_id = 1;
609
- optional .CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve abandoned_match = 2;
610
- optional uint32 penalty_seconds = 3;
611
- optional uint32 penalty_reason = 4;
612
- }
613
-
614
- message CMsgGCCStrike15_v2_ClientGCRankUpdate {
615
- repeated .PlayerRankingInfo rankings = 1;
616
- }
617
-
618
- message CMsgGCCStrike15_v2_MatchmakingOperator2GCBlogUpdate {
619
- optional string main_post_url = 1;
620
- }
621
-
622
- message CMsgGCCStrike15_v2_ServerNotificationForUserPenalty {
623
- optional uint32 account_id = 1;
624
- optional uint32 reason = 2;
625
- optional uint32 seconds = 3;
626
- optional bool communication_cooldown = 4;
627
- }
628
-
629
- message CMsgGCCStrike15_v2_ClientReportPlayer {
630
- optional uint32 account_id = 1;
631
- optional uint32 rpt_aimbot = 2;
632
- optional uint32 rpt_wallhack = 3;
633
- optional uint32 rpt_speedhack = 4;
634
- optional uint32 rpt_teamharm = 5;
635
- optional uint32 rpt_textabuse = 6;
636
- optional uint32 rpt_voiceabuse = 7;
637
- optional uint64 match_id = 8;
638
- optional bool report_from_demo = 9;
639
- }
640
-
641
- message CMsgGCCStrike15_v2_ClientCommendPlayer {
642
- optional uint32 account_id = 1;
643
- optional uint64 match_id = 8;
644
- optional .PlayerCommendationInfo commendation = 9;
645
- optional uint32 tokens = 10;
646
- }
647
-
648
- message CMsgGCCStrike15_v2_ClientReportServer {
649
- optional uint32 rpt_poorperf = 1;
650
- optional uint32 rpt_abusivemodels = 2;
651
- optional uint32 rpt_badmotd = 3;
652
- optional uint32 rpt_listingabuse = 4;
653
- optional uint32 rpt_inventoryabuse = 5;
654
- optional uint64 match_id = 8;
655
- }
656
-
657
- message CMsgGCCStrike15_v2_ClientReportResponse {
658
- optional uint64 confirmation_id = 1;
659
- optional uint32 account_id = 2;
660
- optional uint32 server_ip = 3;
661
- optional uint32 response_type = 4;
662
- optional uint32 response_result = 5;
663
- optional uint32 tokens = 6;
664
- }
665
-
666
- message CMsgGCCStrike15_v2_ClientRequestWatchInfoFriends {
667
- optional uint32 request_id = 1;
668
- repeated uint32 account_ids = 2;
669
- optional uint64 serverid = 3;
670
- optional uint64 matchid = 4;
671
- optional uint32 client_launcher = 5;
672
- repeated .DataCenterPing data_center_pings = 6;
673
- }
674
-
675
- message WatchableMatchInfo {
676
- optional uint32 server_ip = 1;
677
- optional uint32 tv_port = 2;
678
- optional uint32 tv_spectators = 3;
679
- optional uint32 tv_time = 4;
680
- optional bytes tv_watch_password = 5;
681
- optional uint64 cl_decryptdata_key = 6;
682
- optional uint64 cl_decryptdata_key_pub = 7;
683
- optional uint32 game_type = 8;
684
- optional string game_mapgroup = 9;
685
- optional string game_map = 10;
686
- optional uint64 server_id = 11;
687
- optional uint64 match_id = 12;
688
- optional uint64 reservation_id = 13;
689
- }
690
-
691
- message CMsgGCCStrike15_v2_ClientRequestJoinFriendData {
692
- optional uint32 version = 1;
693
- optional uint32 account_id = 2;
694
- optional uint32 join_token = 3;
695
- optional uint32 join_ipp = 4;
696
- optional .CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve res = 5;
697
- optional string errormsg = 6;
698
- }
699
-
700
- message CMsgGCCStrike15_v2_ClientRequestJoinServerData {
701
- optional uint32 version = 1;
702
- optional uint32 account_id = 2;
703
- optional uint64 serverid = 3;
704
- optional uint32 server_ip = 4;
705
- optional uint32 server_port = 5;
706
- optional .CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve res = 6;
707
- optional string errormsg = 7;
708
- }
709
-
710
- message CMsgGCCstrike15_v2_ClientRequestNewMission {
711
- optional uint32 mission_id = 2;
712
- optional uint32 campaign_id = 3;
713
- }
714
-
715
- message CMsgGCCstrike15_v2_ClientRedeemMissionReward {
716
- optional uint32 campaign_id = 1;
717
- optional uint32 redeem_id = 2;
718
- optional uint32 redeemable_balance = 3;
719
- optional uint32 expected_cost = 4;
720
- }
721
-
722
- message CMsgGCCstrike15_v2_GC2ServerNotifyXPRewarded {
723
- repeated .XpProgressData xp_progress_data = 1;
724
- optional uint32 account_id = 2;
725
- optional uint32 current_xp = 3;
726
- optional uint32 current_level = 4;
727
- optional uint32 upgraded_defidx = 5;
728
- optional uint32 operation_points_awarded = 6;
729
- }
730
-
731
- message CMsgGCCStrike15_ClientDeepStats {
732
- message DeepStatsRange {
733
- optional uint32 begin = 1;
734
- optional uint32 end = 2;
735
- optional bool frozen = 3;
736
- }
737
-
738
- message DeepStatsMatch {
739
- optional .DeepPlayerStatsEntry player = 1;
740
- repeated .DeepPlayerMatchEvent events = 2;
741
- }
742
-
743
- optional uint32 account_id = 1;
744
- optional .CMsgGCCStrike15_ClientDeepStats.DeepStatsRange range = 2;
745
- repeated .CMsgGCCStrike15_ClientDeepStats.DeepStatsMatch matches = 3;
746
- }
747
-
748
- message CMsgGCCStrike15_v2_WatchInfoUsers {
749
- optional uint32 request_id = 1;
750
- repeated uint32 account_ids = 2;
751
- repeated .WatchableMatchInfo watchable_match_infos = 3;
752
- optional uint32 extended_timeout = 5;
753
- }
754
-
755
- message CMsgGCCStrike15_v2_ClientRequestPlayersProfile {
756
- optional uint32 request_id__deprecated = 1;
757
- repeated uint32 account_ids__deprecated = 2;
758
- optional uint32 account_id = 3;
759
- optional uint32 request_level = 4;
760
- }
761
-
762
- message CMsgGCCStrike15_v2_PlayersProfile {
763
- optional uint32 request_id = 1;
764
- repeated .CMsgGCCStrike15_v2_MatchmakingGC2ClientHello account_profiles = 2;
765
- }
766
-
767
- message CMsgGCCStrike15_v2_PlayerOverwatchCaseUpdate {
768
- optional uint64 caseid = 1;
769
- optional uint32 suspectid = 3;
770
- optional uint32 fractionid = 4;
771
- optional uint32 rpt_aimbot = 5;
772
- optional uint32 rpt_wallhack = 6;
773
- optional uint32 rpt_speedhack = 7;
774
- optional uint32 rpt_teamharm = 8;
775
- optional uint32 reason = 9;
776
- }
777
-
778
- message CMsgGCCStrike15_v2_PlayerOverwatchCaseAssignment {
779
- optional uint64 caseid = 1;
780
- optional string caseurl = 2;
781
- optional uint32 verdict = 3;
782
- optional uint32 timestamp = 4;
783
- optional uint32 throttleseconds = 5;
784
- optional uint32 suspectid = 6;
785
- optional uint32 fractionid = 7;
786
- optional uint32 numrounds = 8;
787
- optional uint32 fractionrounds = 9;
788
- optional int32 streakconvictions = 10;
789
- optional uint32 reason = 11;
790
- }
791
-
792
- message CMsgGCCStrike15_v2_PlayerOverwatchCaseStatus {
793
- optional uint64 caseid = 1;
794
- optional uint32 statusid = 2;
795
- }
796
-
797
- message CClientHeaderOverwatchEvidence {
798
- optional uint32 accountid = 1;
799
- optional uint64 caseid = 2;
800
- }
801
-
802
- message CMsgGCCStrike15_v2_GC2ClientTextMsg {
803
- optional uint32 id = 1;
804
- optional uint32 type = 2;
805
- optional bytes payload = 3;
806
- }
807
-
808
- message CMsgGCCStrike15_v2_Client2GCTextMsg {
809
- optional uint32 id = 1;
810
- repeated bytes args = 2;
811
- }
812
-
813
- message CMsgGCCStrike15_v2_MatchEndRunRewardDrops {
814
- optional .CMsgGCCStrike15_v2_MatchmakingServerReservationResponse serverinfo = 3;
815
- optional .CMsgGC_ServerQuestUpdateData match_end_quest_data = 4;
816
- }
817
-
818
- message CEconItemPreviewDataBlock {
819
- message Sticker {
820
- optional uint32 slot = 1;
821
- optional uint32 sticker_id = 2;
822
- optional float wear = 3;
823
- optional float scale = 4;
824
- optional float rotation = 5;
825
- optional uint32 tint_id = 6;
826
- }
827
-
828
- optional uint32 accountid = 1;
829
- optional uint64 itemid = 2;
830
- optional uint32 defindex = 3;
831
- optional uint32 paintindex = 4;
832
- optional uint32 rarity = 5;
833
- optional uint32 quality = 6;
834
- optional uint32 paintwear = 7;
835
- optional uint32 paintseed = 8;
836
- optional uint32 killeaterscoretype = 9;
837
- optional uint32 killeatervalue = 10;
838
- optional string customname = 11;
839
- repeated .CEconItemPreviewDataBlock.Sticker stickers = 12;
840
- optional uint32 inventory = 13;
841
- optional uint32 origin = 14;
842
- optional uint32 questid = 15;
843
- optional uint32 dropreason = 16;
844
- optional uint32 musicindex = 17;
845
- optional int32 entindex = 18;
846
- }
847
-
848
- message CMsgGCCStrike15_v2_MatchEndRewardDropsNotification {
849
- optional .CEconItemPreviewDataBlock iteminfo = 6;
850
- }
851
-
852
- message CMsgItemAcknowledged {
853
- optional .CEconItemPreviewDataBlock iteminfo = 1;
854
- }
855
-
856
- message CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockRequest {
857
- optional uint64 param_s = 1;
858
- optional uint64 param_a = 2;
859
- optional uint64 param_d = 3;
860
- optional uint64 param_m = 4;
861
- }
862
-
863
- message CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponse {
864
- optional .CEconItemPreviewDataBlock iteminfo = 1;
865
- }
866
-
867
- message CMsgGCCStrike15_v2_MatchListRequestCurrentLiveGames {
868
- }
869
-
870
- message CMsgGCCStrike15_v2_MatchListRequestLiveGameForUser {
871
- optional uint32 accountid = 1;
872
- }
873
-
874
- message CMsgGCCStrike15_v2_MatchListRequestRecentUserGames {
875
- optional uint32 accountid = 1;
876
- }
877
-
878
- message CMsgGCCStrike15_v2_MatchListRequestTournamentGames {
879
- optional int32 eventid = 1;
880
- }
881
-
882
- message CMsgGCCStrike15_v2_MatchListRequestFullGameInfo {
883
- optional uint64 matchid = 1;
884
- optional uint64 outcomeid = 2;
885
- optional uint32 token = 3;
886
- }
887
-
888
- message CDataGCCStrike15_v2_MatchInfo {
889
- optional uint64 matchid = 1;
890
- optional uint32 matchtime = 2;
891
- optional .WatchableMatchInfo watchablematchinfo = 3;
892
- optional .CMsgGCCStrike15_v2_MatchmakingServerRoundStats roundstats_legacy = 4;
893
- repeated .CMsgGCCStrike15_v2_MatchmakingServerRoundStats roundstatsall = 5;
894
- }
895
-
896
- message CDataGCCStrike15_v2_TournamentGroupTeam {
897
- optional int32 team_id = 1;
898
- optional int32 score = 2;
899
- optional bool correctpick = 3;
900
- }
901
-
902
- message CDataGCCStrike15_v2_TournamentGroup {
903
- message Picks {
904
- repeated int32 pickids = 1;
905
- }
906
-
907
- optional uint32 groupid = 1;
908
- optional string name = 2;
909
- optional string desc = 3;
910
- optional uint32 picks__deprecated = 4;
911
- repeated .CDataGCCStrike15_v2_TournamentGroupTeam teams = 5;
912
- repeated int32 stage_ids = 6;
913
- optional uint32 picklockuntiltime = 7;
914
- optional uint32 pickableteams = 8;
915
- optional uint32 points_per_pick = 9;
916
- repeated .CDataGCCStrike15_v2_TournamentGroup.Picks picks = 10;
917
- }
918
-
919
- message CDataGCCStrike15_v2_TournamentSection {
920
- optional uint32 sectionid = 1;
921
- optional string name = 2;
922
- optional string desc = 3;
923
- repeated .CDataGCCStrike15_v2_TournamentGroup groups = 4;
924
- }
925
-
926
- message CDataGCCStrike15_v2_TournamentInfo {
927
- repeated .CDataGCCStrike15_v2_TournamentSection sections = 1;
928
- optional .TournamentEvent tournament_event = 2;
929
- repeated .TournamentTeam tournament_teams = 3;
930
- }
931
-
932
- message CMsgGCCStrike15_v2_MatchList {
933
- optional uint32 msgrequestid = 1;
934
- optional uint32 accountid = 2;
935
- optional uint32 servertime = 3;
936
- repeated .CDataGCCStrike15_v2_MatchInfo matches = 4;
937
- repeated .TournamentTeam streams = 5;
938
- optional .CDataGCCStrike15_v2_TournamentInfo tournamentinfo = 6;
939
- }
940
-
941
- message CMsgGCCStrike15_v2_MatchListTournamentOperatorMgmt {
942
- optional int32 eventid = 1;
943
- repeated .CDataGCCStrike15_v2_MatchInfo matches = 2;
944
- }
945
-
946
- message CMsgGCCStrike15_v2_Predictions {
947
- message GroupMatchTeamPick {
948
- optional int32 sectionid = 1;
949
- optional int32 groupid = 2;
950
- optional int32 index = 3;
951
- optional int32 teamid = 4;
952
- optional uint64 itemid = 5;
953
- }
954
-
955
- optional uint32 event_id = 1;
956
- repeated .CMsgGCCStrike15_v2_Predictions.GroupMatchTeamPick group_match_team_picks = 2;
957
- }
958
-
959
- message CMsgGCCStrike15_v2_Fantasy {
960
- message FantasySlot {
961
- optional int32 type = 1;
962
- optional int32 pick = 2;
963
- optional uint64 itemid = 3;
964
- }
965
-
966
- message FantasyTeam {
967
- optional int32 sectionid = 1;
968
- repeated .CMsgGCCStrike15_v2_Fantasy.FantasySlot slots = 2;
969
- }
970
-
971
- optional uint32 event_id = 1;
972
- repeated .CMsgGCCStrike15_v2_Fantasy.FantasyTeam teams = 2;
973
- }
974
-
975
- message CAttribute_String {
976
- optional string value = 1;
977
- }
978
-
979
- message CMsgCStrike15Welcome {
980
- optional uint32 store_item_hash = 5;
981
- optional uint32 timeplayedconsecutively = 6;
982
- optional uint32 time_first_played = 10;
983
- optional uint32 last_time_played = 12;
984
- optional uint32 last_ip_address = 13;
985
- optional uint64 gscookieid = 18;
986
- optional uint64 uniqueid = 19;
987
- }
988
-
989
- message CMsgGCCStrike15_v2_ClientVarValueNotificationInfo {
990
- optional string value_name = 1;
991
- optional int32 value_int = 2;
992
- optional uint32 server_addr = 3;
993
- optional uint32 server_port = 4;
994
- repeated string choked_blocks = 5;
995
- }
996
-
997
- message CMsgGCCStrike15_v2_ServerVarValueNotificationInfo {
998
- optional uint32 accountid = 1;
999
- repeated uint32 viewangles = 2;
1000
- optional uint32 type = 3;
1001
- repeated uint32 userdata = 4;
1002
- }
1003
-
1004
- message CMsgGCCStrike15_v2_GiftsLeaderboardRequest {
1005
- }
1006
-
1007
- message CMsgGCCStrike15_v2_GiftsLeaderboardResponse {
1008
- message GiftLeaderboardEntry {
1009
- optional uint32 accountid = 1;
1010
- optional uint32 gifts = 2;
1011
- }
1012
-
1013
- optional uint32 servertime = 1;
1014
- optional uint32 time_period_seconds = 2;
1015
- optional uint32 total_gifts_given = 3;
1016
- optional uint32 total_givers = 4;
1017
- repeated .CMsgGCCStrike15_v2_GiftsLeaderboardResponse.GiftLeaderboardEntry entries = 5;
1018
- }
1019
-
1020
- message CMsgGCCStrike15_v2_ClientSubmitSurveyVote {
1021
- optional uint32 survey_id = 1;
1022
- optional uint32 vote = 2;
1023
- }
1024
-
1025
- message CMsgGCCStrike15_v2_Server2GCClientValidate {
1026
- optional uint32 accountid = 1;
1027
- }
1028
-
1029
- message CMsgGCCStrike15_v2_GC2ClientTournamentInfo {
1030
- optional uint32 eventid = 1;
1031
- optional uint32 stageid = 2;
1032
- optional uint32 game_type = 3;
1033
- repeated uint32 teamids = 4;
1034
- }
1035
-
1036
- message CSOEconCoupon {
1037
- optional uint32 entryid = 1 [(key_field) = true];
1038
- optional uint32 defidx = 2;
1039
- optional fixed32 expiration_date = 3;
1040
- }
1041
-
1042
- message CSOQuestProgress {
1043
- optional uint32 questid = 1 [(key_field) = true];
1044
- optional uint32 points_remaining = 2;
1045
- optional uint32 bonus_points = 3;
1046
- }
1047
-
1048
- message CSOAccountSeasonalOperation {
1049
- optional uint32 season_value = 1 [(key_field) = true];
1050
- optional uint32 tier_unlocked = 2;
1051
- optional uint32 premium_tiers = 3;
1052
- optional uint32 mission_id = 4;
1053
- optional uint32 missions_completed = 5;
1054
- optional uint32 redeemable_balance = 6;
1055
- optional uint32 season_pass_time = 7;
1056
- }
1057
-
1058
- message CSOAccountRecurringSubscription {
1059
- optional uint32 time_next_cycle = 1;
1060
- optional uint32 time_initiated = 2;
1061
- }
1062
-
1063
- message CSOPersonaDataPublic {
1064
- optional int32 player_level = 1;
1065
- optional .PlayerCommendationInfo commendation = 2;
1066
- optional bool elevated_state = 3;
1067
- }
1068
-
1069
- message CMsgGC_GlobalGame_Subscribe {
1070
- optional uint64 ticket = 1;
1071
- }
1072
-
1073
- message CMsgGC_GlobalGame_Unsubscribe {
1074
- optional int32 timeleft = 1;
1075
- }
1076
-
1077
- message CMsgGC_GlobalGame_Play {
1078
- optional uint64 ticket = 1;
1079
- optional uint32 gametimems = 2;
1080
- optional uint32 msperpoint = 3;
1081
- }
1082
-
1083
- message CMsgGCCStrike15_v2_AcknowledgePenalty {
1084
- optional int32 acknowledged = 1;
1085
- }
1086
-
1087
- message CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoin {
1088
- optional uint32 defindex = 1;
1089
- optional uint64 upgradeid = 2;
1090
- optional uint32 hours = 3;
1091
- optional uint32 prestigetime = 4;
1092
- }
1093
-
1094
- message CMsgGCCStrike15_v2_Client2GCStreamUnlock {
1095
- optional uint64 ticket = 1;
1096
- optional int32 os = 2;
1097
- }
1098
-
1099
- message CMsgGCCStrike15_v2_ClientToGCRequestElevate {
1100
- optional uint32 stage = 1;
1101
- }
1102
-
1103
- message CMsgGCCStrike15_v2_ClientToGCChat {
1104
- optional uint64 match_id = 1;
1105
- optional string text = 2;
1106
- }
1107
-
1108
- message CMsgGCCStrike15_v2_GCToClientChat {
1109
- optional uint32 account_id = 1;
1110
- optional string text = 2;
1111
- }
1112
-
1113
- message CMsgGCCStrike15_v2_ClientAuthKeyCode {
1114
- optional uint32 eventid = 1;
1115
- optional string code = 2;
1116
- }
1117
-
1118
- message CMsgGCCStrike15_GotvSyncPacket {
1119
- optional .CEngineGotvSyncPacket data = 1;
1120
- }
1121
-
1122
- message PlayerDecalDigitalSignature {
1123
- optional bytes signature = 1;
1124
- optional uint32 accountid = 2;
1125
- optional uint32 rtime = 3;
1126
- repeated float endpos = 4;
1127
- repeated float startpos = 5;
1128
- repeated float right = 6;
1129
- optional uint32 tx_defidx = 7;
1130
- optional int32 entindex = 8;
1131
- optional uint32 hitbox = 9;
1132
- optional float creationtime = 10;
1133
- optional uint32 equipslot = 11;
1134
- optional uint32 trace_id = 12;
1135
- repeated float normal = 13;
1136
- optional uint32 tint_id = 14;
1137
- }
1138
-
1139
- message CMsgGCCStrike15_v2_ClientPlayerDecalSign {
1140
- optional .PlayerDecalDigitalSignature data = 1;
1141
- optional uint64 itemid = 2;
1142
- }
1143
-
1144
- message CMsgGCCStrike15_v2_ClientLogonFatalError {
1145
- optional uint32 errorcode = 1;
1146
- optional string message = 2;
1147
- optional string country = 3;
1148
- }
1149
-
1150
- message CMsgGCCStrike15_v2_ClientPollState {
1151
- optional uint32 pollid = 1;
1152
- repeated string names = 2;
1153
- repeated int32 values = 3;
1154
- }
1155
-
1156
- message CMsgGCCStrike15_v2_Party_Register {
1157
- optional uint32 id = 1;
1158
- optional uint32 ver = 2;
1159
- optional uint32 apr = 3;
1160
- optional uint32 ark = 4;
1161
- optional uint32 nby = 5;
1162
- optional uint32 grp = 6;
1163
- optional uint32 slots = 7;
1164
- optional uint32 launcher = 8;
1165
- optional uint32 game_type = 9;
1166
- }
1167
-
1168
- message CMsgGCCStrike15_v2_Party_Search {
1169
- optional uint32 ver = 1;
1170
- optional uint32 apr = 2;
1171
- optional uint32 ark = 3;
1172
- repeated uint32 grps = 4;
1173
- optional uint32 launcher = 5;
1174
- optional uint32 game_type = 6;
1175
- }
1176
-
1177
- message CMsgGCCStrike15_v2_Party_SearchResults {
1178
- message Entry {
1179
- optional uint32 id = 1;
1180
- optional uint32 grp = 2;
1181
- optional uint32 game_type = 3;
1182
- optional uint32 apr = 4;
1183
- optional uint32 ark = 5;
1184
- optional uint32 loc = 6;
1185
- optional uint32 accountid = 7;
1186
- }
1187
-
1188
- repeated .CMsgGCCStrike15_v2_Party_SearchResults.Entry entries = 1;
1189
- }
1190
-
1191
- message CMsgGCCStrike15_v2_Party_Invite {
1192
- optional uint32 accountid = 1;
1193
- optional uint32 lobbyid = 2;
1194
- }
1195
-
1196
- message CMsgGCCStrike15_v2_Account_RequestCoPlays {
1197
- message Player {
1198
- optional uint32 accountid = 1;
1199
- optional uint32 rtcoplay = 2;
1200
- optional bool online = 3;
1201
- }
1202
-
1203
- repeated .CMsgGCCStrike15_v2_Account_RequestCoPlays.Player players = 1;
1204
- optional uint32 servertime = 2;
1205
- }
1206
-
1207
- message CMsgGCCStrike15_v2_ClientToGCRequestTicket {
1208
- optional fixed64 authorized_steam_id = 1;
1209
- optional fixed32 authorized_public_ip = 2;
1210
- optional fixed64 gameserver_steam_id = 3;
1211
- optional string gameserver_sdr_routing = 5;
1212
- }
1213
-
1214
- message CMsgGCToClientSteamDatagramTicket {
1215
- optional bytes serialized_ticket = 16;
1216
- }
1217
-
1218
- message CMsgGCCStrike15_v2_ClientRequestOffers {
1219
- }
1220
-
1221
- message CMsgGCCStrike15_v2_ClientRequestSouvenir {
1222
- optional uint64 itemid = 1;
1223
- optional uint64 matchid = 2;
1224
- optional int32 eventid = 3;
1225
- }
1226
-
1227
- message CMsgGCCStrike15_v2_ClientAccountBalance {
1228
- optional uint64 amount = 1;
1229
- optional string url = 2;
1230
- }
1231
-
1232
- message CMsgGCCStrike15_v2_ClientPartyJoinRelay {
1233
- optional uint32 accountid = 1;
1234
- optional uint64 lobbyid = 2;
1235
- }
1236
-
1237
- message CMsgGCCStrike15_v2_ClientPartyWarning {
1238
- message Entry {
1239
- optional uint32 accountid = 1;
1240
- optional uint32 warntype = 2;
1241
- }
1242
-
1243
- repeated .CMsgGCCStrike15_v2_ClientPartyWarning.Entry entries = 1;
1244
- }
1245
-
1246
- message CMsgGCCStrike15_v2_SetEventFavorite {
1247
- optional uint64 eventid = 1;
1248
- optional bool is_favorite = 2;
1249
- }
1250
-
1251
- message CMsgGCCStrike15_v2_GetEventFavorites_Request {
1252
- optional bool all_events = 1;
1253
- }
1254
-
1255
- message CMsgGCCStrike15_v2_GetEventFavorites_Response {
1256
- optional bool all_events = 1;
1257
- optional string json_favorites = 2;
1258
- optional string json_featured = 3;
1259
- }
1260
-
1261
- message CMsgGCCStrike15_v2_ClientPerfReport {
1262
- message Entry {
1263
- optional uint32 perfcounter = 1;
1264
- optional uint32 length = 2;
1265
- optional bytes reference = 3;
1266
- optional bytes actual = 4;
1267
- optional uint32 sourceid = 5;
1268
- optional uint32 status = 6;
1269
- }
1270
-
1271
- repeated .CMsgGCCStrike15_v2_ClientPerfReport.Entry entries = 1;
1272
- }
1273
-
1274
- message CVDiagnostic {
1275
- optional uint32 id = 1;
1276
- optional uint32 extended = 2;
1277
- optional uint64 value = 3;
1278
- optional string string_value = 4;
1279
- }
1280
-
1281
- message CMsgGCCStrike15_v2_ClientReportValidation {
1282
- optional string file_report = 1;
1283
- optional string command_line = 2;
1284
- optional uint32 total_files = 3;
1285
- optional uint32 internal_error = 4;
1286
- optional uint32 trust_time = 5;
1287
- optional uint32 count_pending = 6;
1288
- optional uint32 count_completed = 7;
1289
- optional uint32 process_id = 8;
1290
- optional int32 osversion = 9;
1291
- optional uint32 clientreportversion = 10;
1292
- optional uint32 status_id = 11;
1293
- optional uint32 diagnostic1 = 12;
1294
- optional uint64 diagnostic2 = 13;
1295
- optional uint64 diagnostic3 = 14;
1296
- optional string last_launch_data = 15;
1297
- optional uint32 report_count = 16;
1298
- optional uint64 client_time = 17;
1299
- optional uint64 diagnostic4 = 18;
1300
- optional uint64 diagnostic5 = 19;
1301
- repeated .CVDiagnostic diagnostics = 20;
1302
- }
1303
-
1304
- message CMsgGCCStrike15_v2_GC2ClientRefuseSecureMode {
1305
- optional string file_report = 1;
1306
- optional bool offer_insecure_mode = 2;
1307
- optional bool offer_secure_mode = 3;
1308
- optional bool show_unsigned_ui = 4;
1309
- optional bool kick_user = 5;
1310
- optional bool show_trusted_ui = 6;
1311
- optional bool show_warning_not_trusted = 7;
1312
- optional bool show_warning_not_trusted_2 = 8;
1313
- optional string files_prevented_trusted = 9;
1314
- }
1315
-
1316
- message CMsgGCCStrike15_v2_GC2ClientRequestValidation {
1317
- optional bool full_report = 1;
1318
- optional string module = 2;
1319
- }
1320
-
1321
- message CMsgGCCStrike15_v2_GC2ClientInitSystem {
1322
- optional bool load = 1;
1323
- optional string name = 2;
1324
- optional string outputname = 3;
1325
- optional bytes key_data = 4;
1326
- optional bytes sha_hash = 5;
1327
- optional int32 cookie = 6;
1328
- optional string manifest = 7;
1329
- optional bytes system_package = 8;
1330
- optional bool load_system = 9;
1331
- }
1332
-
1333
- message CMsgGCCStrike15_v2_GC2ClientInitSystem_Response {
1334
- optional bool success = 1;
1335
- optional string diagnostic = 2;
1336
- optional bytes sha_hash = 3;
1337
- optional int32 response = 4;
1338
- optional int32 error_code1 = 5;
1339
- optional int32 error_code2 = 6;
1340
- optional int64 handle = 7;
1341
- optional .EInitSystemResult einit_result = 8 [default = k_EInitSystemResult_Invalid];
1342
- optional int32 aux_system1 = 9;
1343
- optional int32 aux_system2 = 10;
1344
- }
1
+ import "steammessages.proto";
2
+ import "engine_gcmessages.proto";
3
+ import "gcsdk_gcmessages.proto";
4
+
5
+ enum ECsgoGCMsg {
6
+ k_EMsgGCCStrike15_v2_Base = 9100;
7
+ k_EMsgGCCStrike15_v2_MatchmakingStart = 9101;
8
+ k_EMsgGCCStrike15_v2_MatchmakingStop = 9102;
9
+ k_EMsgGCCStrike15_v2_MatchmakingClient2ServerPing = 9103;
10
+ k_EMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate = 9104;
11
+ k_EMsgGCCStrike15_v2_MatchmakingServerReservationResponse = 9106;
12
+ k_EMsgGCCStrike15_v2_MatchmakingGC2ClientReserve = 9107;
13
+ k_EMsgGCCStrike15_v2_MatchmakingClient2GCHello = 9109;
14
+ k_EMsgGCCStrike15_v2_MatchmakingGC2ClientHello = 9110;
15
+ k_EMsgGCCStrike15_v2_MatchmakingGC2ClientAbandon = 9112;
16
+ k_EMsgGCCStrike15_v2_MatchmakingOperator2GCBlogUpdate = 9117;
17
+ k_EMsgGCCStrike15_v2_ServerNotificationForUserPenalty = 9118;
18
+ k_EMsgGCCStrike15_v2_ClientReportPlayer = 9119;
19
+ k_EMsgGCCStrike15_v2_ClientReportServer = 9120;
20
+ k_EMsgGCCStrike15_v2_ClientCommendPlayer = 9121;
21
+ k_EMsgGCCStrike15_v2_ClientReportResponse = 9122;
22
+ k_EMsgGCCStrike15_v2_ClientCommendPlayerQuery = 9123;
23
+ k_EMsgGCCStrike15_v2_ClientCommendPlayerQueryResponse = 9124;
24
+ k_EMsgGCCStrike15_v2_WatchInfoUsers = 9126;
25
+ k_EMsgGCCStrike15_v2_ClientRequestPlayersProfile = 9127;
26
+ k_EMsgGCCStrike15_v2_PlayersProfile = 9128;
27
+ k_EMsgGCCStrike15_v2_PlayerOverwatchCaseUpdate = 9131;
28
+ k_EMsgGCCStrike15_v2_PlayerOverwatchCaseAssignment = 9132;
29
+ k_EMsgGCCStrike15_v2_PlayerOverwatchCaseStatus = 9133;
30
+ k_EMsgGCCStrike15_v2_GC2ClientTextMsg = 9134;
31
+ k_EMsgGCCStrike15_v2_Client2GCTextMsg = 9135;
32
+ k_EMsgGCCStrike15_v2_MatchEndRunRewardDrops = 9136;
33
+ k_EMsgGCCStrike15_v2_MatchEndRewardDropsNotification = 9137;
34
+ k_EMsgGCCStrike15_v2_ClientRequestWatchInfoFriends2 = 9138;
35
+ k_EMsgGCCStrike15_v2_MatchList = 9139;
36
+ k_EMsgGCCStrike15_v2_MatchListRequestCurrentLiveGames = 9140;
37
+ k_EMsgGCCStrike15_v2_MatchListRequestRecentUserGames = 9141;
38
+ k_EMsgGCCStrike15_v2_GC2ServerReservationUpdate = 9142;
39
+ k_EMsgGCCStrike15_v2_ClientVarValueNotificationInfo = 9144;
40
+ k_EMsgGCCStrike15_v2_MatchListRequestTournamentGames = 9146;
41
+ k_EMsgGCCStrike15_v2_MatchListRequestFullGameInfo = 9147;
42
+ k_EMsgGCCStrike15_v2_GiftsLeaderboardRequest = 9148;
43
+ k_EMsgGCCStrike15_v2_GiftsLeaderboardResponse = 9149;
44
+ k_EMsgGCCStrike15_v2_ServerVarValueNotificationInfo = 9150;
45
+ k_EMsgGCCStrike15_v2_ClientSubmitSurveyVote = 9152;
46
+ k_EMsgGCCStrike15_v2_Server2GCClientValidate = 9153;
47
+ k_EMsgGCCStrike15_v2_MatchListRequestLiveGameForUser = 9154;
48
+ k_EMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockRequest = 9156;
49
+ k_EMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponse = 9157;
50
+ k_EMsgGCCStrike15_v2_AccountPrivacySettings = 9158;
51
+ k_EMsgGCCStrike15_v2_SetMyActivityInfo = 9159;
52
+ k_EMsgGCCStrike15_v2_MatchListRequestTournamentPredictions = 9160;
53
+ k_EMsgGCCStrike15_v2_MatchListUploadTournamentPredictions = 9161;
54
+ k_EMsgGCCStrike15_v2_DraftSummary = 9162;
55
+ k_EMsgGCCStrike15_v2_ClientRequestJoinFriendData = 9163;
56
+ k_EMsgGCCStrike15_v2_ClientRequestJoinServerData = 9164;
57
+ k_EMsgGCCStrike15_v2_ClientRequestNewMission = 9165;
58
+ k_EMsgGCCStrike15_v2_GC2ClientTournamentInfo = 9167;
59
+ k_EMsgGC_GlobalGame_Subscribe = 9168;
60
+ k_EMsgGC_GlobalGame_Unsubscribe = 9169;
61
+ k_EMsgGC_GlobalGame_Play = 9170;
62
+ k_EMsgGCCStrike15_v2_AcknowledgePenalty = 9171;
63
+ k_EMsgGCCStrike15_v2_Client2GCRequestPrestigeCoin = 9172;
64
+ k_EMsgGCCStrike15_v2_GC2ClientGlobalStats = 9173;
65
+ k_EMsgGCCStrike15_v2_Client2GCStreamUnlock = 9174;
66
+ k_EMsgGCCStrike15_v2_FantasyRequestClientData = 9175;
67
+ k_EMsgGCCStrike15_v2_FantasyUpdateClientData = 9176;
68
+ k_EMsgGCCStrike15_v2_GCToClientSteamdatagramTicket = 9177;
69
+ k_EMsgGCCStrike15_v2_ClientToGCRequestTicket = 9178;
70
+ k_EMsgGCCStrike15_v2_ClientToGCRequestElevate = 9179;
71
+ k_EMsgGCCStrike15_v2_GlobalChat = 9180;
72
+ k_EMsgGCCStrike15_v2_GlobalChat_Subscribe = 9181;
73
+ k_EMsgGCCStrike15_v2_GlobalChat_Unsubscribe = 9182;
74
+ k_EMsgGCCStrike15_v2_ClientAuthKeyCode = 9183;
75
+ k_EMsgGCCStrike15_v2_GotvSyncPacket = 9184;
76
+ k_EMsgGCCStrike15_v2_ClientPlayerDecalSign = 9185;
77
+ k_EMsgGCCStrike15_v2_ClientLogonFatalError = 9187;
78
+ k_EMsgGCCStrike15_v2_ClientPollState = 9188;
79
+ k_EMsgGCCStrike15_v2_Party_Register = 9189;
80
+ k_EMsgGCCStrike15_v2_Party_Unregister = 9190;
81
+ k_EMsgGCCStrike15_v2_Party_Search = 9191;
82
+ k_EMsgGCCStrike15_v2_Party_Invite = 9192;
83
+ k_EMsgGCCStrike15_v2_Account_RequestCoPlays = 9193;
84
+ k_EMsgGCCStrike15_v2_ClientGCRankUpdate = 9194;
85
+ k_EMsgGCCStrike15_v2_ClientRequestOffers = 9195;
86
+ k_EMsgGCCStrike15_v2_ClientAccountBalance = 9196;
87
+ k_EMsgGCCStrike15_v2_ClientPartyJoinRelay = 9197;
88
+ k_EMsgGCCStrike15_v2_ClientPartyWarning = 9198;
89
+ k_EMsgGCCStrike15_v2_SetEventFavorite = 9200;
90
+ k_EMsgGCCStrike15_v2_GetEventFavorites_Request = 9201;
91
+ k_EMsgGCCStrike15_v2_ClientPerfReport = 9202;
92
+ k_EMsgGCCStrike15_v2_GetEventFavorites_Response = 9203;
93
+ k_EMsgGCCStrike15_v2_ClientRequestSouvenir = 9204;
94
+ k_EMsgGCCStrike15_v2_ClientReportValidation = 9205;
95
+ k_EMsgGCCStrike15_v2_GC2ClientRefuseSecureMode = 9206;
96
+ k_EMsgGCCStrike15_v2_GC2ClientRequestValidation = 9207;
97
+ k_EMsgGCCStrike15_v2_ClientRedeemMissionReward = 9209;
98
+ k_EMsgGCCStrike15_ClientDeepStats = 9210;
99
+ k_EMsgGCCStrike15_StartAgreementSessionInGame = 9211;
100
+ k_EMsgGCCStrike15_v2_GC2ClientInitSystem = 9212;
101
+ k_EMsgGCCStrike15_v2_GC2ClientInitSystem_Response = 9213;
102
+ k_EMsgGCCStrike15_v2_PrivateQueues = 9214;
103
+ k_EMsgGCCStrike15_v2_MatchListTournamentOperatorMgmt = 9215;
104
+ k_EMsgGCCStrike15_v2_SetPlayerLeaderboardSafeName = 9218;
105
+ k_EMsgGCCStrike15_v2_ClientRedeemFreeReward = 9219;
106
+ }
107
+
108
+ enum ECsgoSteamUserStat {
109
+ k_ECsgoSteamUserStat_XpEarnedGames = 1;
110
+ k_ECsgoSteamUserStat_MatchWinsCompetitive = 2;
111
+ k_ECsgoSteamUserStat_SurvivedDangerZone = 3;
112
+ }
113
+
114
+ enum EClientReportingVersion {
115
+ k_EClientReportingVersion_OldVersion = 0;
116
+ k_EClientReportingVersion_BetaVersion = 1;
117
+ k_EClientReportingVersion_SupportsTrustedMode = 2;
118
+ }
119
+
120
+ enum EInitSystemResult {
121
+ k_EInitSystemResult_Invalid = 0;
122
+ k_EInitSystemResult_Success = 1;
123
+ k_EInitSystemResult_None = 2;
124
+ k_EInitSystemResult_NotFound = 3;
125
+ k_EInitSystemResult_Existing = 4;
126
+ k_EInitSystemResult_FailedOpen = 5;
127
+ k_EInitSystemResult_Mismatch = 6;
128
+ k_EInitSystemResult_FailedInit = 7;
129
+ k_EInitSystemResult_Max = 8;
130
+ }
131
+
132
+ message GameServerPing {
133
+ optional int32 ping = 2;
134
+ optional uint32 ip = 3;
135
+ optional uint32 instances = 5;
136
+ }
137
+
138
+ message DataCenterPing {
139
+ optional fixed32 data_center_id = 1;
140
+ optional sint32 ping = 2;
141
+ }
142
+
143
+ message DetailedSearchStatistic {
144
+ optional uint32 game_type = 1;
145
+ optional uint32 search_time_avg = 2;
146
+ optional uint32 players_searching = 4;
147
+ }
148
+
149
+ message TournamentPlayer {
150
+ optional uint32 account_id = 1;
151
+ optional string player_nick = 2;
152
+ optional string player_name = 3;
153
+ optional uint32 player_dob = 4;
154
+ optional string player_flag = 5;
155
+ optional string player_location = 6;
156
+ optional string player_desc = 7;
157
+ }
158
+
159
+ message TournamentTeam {
160
+ optional int32 team_id = 1;
161
+ optional string team_tag = 2;
162
+ optional string team_flag = 3;
163
+ optional string team_name = 4;
164
+ repeated .TournamentPlayer players = 5;
165
+ }
166
+
167
+ message TournamentEvent {
168
+ optional int32 event_id = 1;
169
+ optional string event_tag = 2;
170
+ optional string event_name = 3;
171
+ optional uint32 event_time_start = 4;
172
+ optional uint32 event_time_end = 5;
173
+ optional int32 event_public = 6;
174
+ optional int32 event_stage_id = 7;
175
+ optional string event_stage_name = 8;
176
+ optional uint32 active_section_id = 9;
177
+ }
178
+
179
+ message GlobalStatistics {
180
+ optional uint32 players_online = 1;
181
+ optional uint32 servers_online = 2;
182
+ optional uint32 players_searching = 3;
183
+ optional uint32 servers_available = 4;
184
+ optional uint32 ongoing_matches = 5;
185
+ optional uint32 search_time_avg = 6;
186
+ repeated .DetailedSearchStatistic search_statistics = 7;
187
+ optional string main_post_url = 8;
188
+ optional uint32 required_appid_version = 9;
189
+ optional uint32 pricesheet_version = 10;
190
+ optional uint32 twitch_streams_version = 11;
191
+ optional uint32 active_tournament_eventid = 12;
192
+ optional uint32 active_survey_id = 13;
193
+ optional uint32 rtime32_cur = 14;
194
+ optional uint32 rtime32_event_start = 15;
195
+ optional uint32 required_appid_version2 = 16;
196
+ }
197
+
198
+ message OperationalStatisticDescription {
199
+ optional string name = 1;
200
+ optional uint32 idkey = 2;
201
+ }
202
+
203
+ message OperationalStatisticElement {
204
+ optional uint32 idkey = 1;
205
+ repeated int32 values = 2;
206
+ }
207
+
208
+ message OperationalStatisticsPacket {
209
+ optional int32 packetid = 1;
210
+ optional int32 mstimestamp = 2;
211
+ repeated .OperationalStatisticElement values = 3;
212
+ }
213
+
214
+ message OperationalVarValue {
215
+ optional string name = 1;
216
+ optional int32 ivalue = 2;
217
+ optional float fvalue = 3;
218
+ optional bytes svalue = 4;
219
+ }
220
+
221
+ message PlayerRankingInfo {
222
+ message PerMapRank {
223
+ optional uint32 map_id = 1;
224
+ optional uint32 rank_id = 2;
225
+ optional uint32 wins = 3;
226
+ }
227
+
228
+ optional uint32 account_id = 1;
229
+ optional uint32 rank_id = 2;
230
+ optional uint32 wins = 3;
231
+ optional float rank_change = 4;
232
+ optional uint32 rank_type_id = 6;
233
+ optional uint32 tv_control = 7;
234
+ optional uint64 rank_window_stats = 8;
235
+ optional string leaderboard_name = 9;
236
+ optional uint32 rank_if_win = 10;
237
+ optional uint32 rank_if_lose = 11;
238
+ optional uint32 rank_if_tie = 12;
239
+ repeated .PlayerRankingInfo.PerMapRank per_map_rank = 13;
240
+ optional uint32 leaderboard_name_status = 14;
241
+ }
242
+
243
+ message PlayerCommendationInfo {
244
+ optional uint32 cmd_friendly = 1;
245
+ optional uint32 cmd_teaching = 2;
246
+ optional uint32 cmd_leader = 4;
247
+ }
248
+
249
+ message PlayerMedalsInfo {
250
+ repeated uint32 display_items_defidx = 7;
251
+ optional uint32 featured_display_item_defidx = 8;
252
+ }
253
+
254
+ message AccountActivity {
255
+ optional uint32 activity = 1;
256
+ optional uint32 mode = 2;
257
+ optional uint32 map = 3;
258
+ optional uint64 matchid = 4;
259
+ }
260
+
261
+ message TournamentMatchSetup {
262
+ optional int32 event_id = 1;
263
+ optional int32 team_id_ct = 2;
264
+ optional int32 team_id_t = 3;
265
+ optional int32 event_stage_id = 4;
266
+ }
267
+
268
+ message ServerHltvInfo {
269
+ optional uint32 tv_udp_port = 1;
270
+ optional uint64 tv_watch_key = 2;
271
+ optional uint32 tv_slots = 3;
272
+ optional uint32 tv_clients = 4;
273
+ optional uint32 tv_proxies = 5;
274
+ optional uint32 tv_time = 6;
275
+ optional uint32 game_type = 8;
276
+ optional string game_mapgroup = 9;
277
+ optional string game_map = 10;
278
+ optional uint64 tv_master_steamid = 11;
279
+ optional uint32 tv_local_slots = 12;
280
+ optional uint32 tv_local_clients = 13;
281
+ optional uint32 tv_local_proxies = 14;
282
+ optional uint32 tv_relay_slots = 15;
283
+ optional uint32 tv_relay_clients = 16;
284
+ optional uint32 tv_relay_proxies = 17;
285
+ optional uint32 tv_relay_address = 18;
286
+ optional uint32 tv_relay_port = 19;
287
+ optional uint64 tv_relay_steamid = 20;
288
+ optional uint32 flags = 21;
289
+ }
290
+
291
+ message IpAddressMask {
292
+ optional uint32 a = 1;
293
+ optional uint32 b = 2;
294
+ optional uint32 c = 3;
295
+ optional uint32 d = 4;
296
+ optional uint32 bits = 5;
297
+ optional uint32 token = 6;
298
+ }
299
+
300
+ message CMsgCsgoSteamUserStatChange {
301
+ optional int32 ecsgosteamuserstat = 1;
302
+ optional int32 delta = 2;
303
+ optional bool absolute = 3;
304
+ }
305
+
306
+ message XpProgressData {
307
+ optional uint32 xp_points = 1;
308
+ optional int32 xp_category = 2;
309
+ }
310
+
311
+ message MatchEndItemUpdates {
312
+ optional uint64 item_id = 1;
313
+ optional uint32 item_attr_defidx = 2;
314
+ optional uint32 item_attr_delta_value = 3;
315
+ }
316
+
317
+ message ScoreLeaderboardData {
318
+ message Entry {
319
+ optional uint32 tag = 1;
320
+ optional uint32 val = 2;
321
+ }
322
+
323
+ message AccountEntries {
324
+ optional uint32 accountid = 1;
325
+ repeated .ScoreLeaderboardData.Entry entries = 2;
326
+ }
327
+
328
+ optional uint64 quest_id = 1;
329
+ optional uint32 score = 2;
330
+ repeated .ScoreLeaderboardData.AccountEntries accountentries = 3;
331
+ repeated .ScoreLeaderboardData.Entry matchentries = 5;
332
+ optional string leaderboard_name = 6;
333
+ }
334
+
335
+ message PlayerQuestData {
336
+ message QuestItemData {
337
+ optional uint64 quest_id = 1;
338
+ optional int32 quest_normal_points_earned = 2;
339
+ optional int32 quest_bonus_points_earned = 3;
340
+ }
341
+
342
+ optional uint32 quester_account_id = 1;
343
+ repeated .PlayerQuestData.QuestItemData quest_item_data = 2;
344
+ repeated .XpProgressData xp_progress_data = 3;
345
+ optional uint32 time_played = 4;
346
+ optional uint32 mm_game_mode = 5;
347
+ repeated .MatchEndItemUpdates item_updates = 6;
348
+ optional bool operation_points_eligible = 7;
349
+ repeated .CMsgCsgoSteamUserStatChange userstatchanges = 8;
350
+ }
351
+
352
+ message DeepPlayerStatsEntry {
353
+ optional uint32 accountid = 1;
354
+ optional uint64 match_id = 2;
355
+ optional uint32 mm_game_mode = 3;
356
+ optional uint32 mapid = 4;
357
+ optional bool b_starting_ct = 5;
358
+ optional uint32 match_outcome = 6;
359
+ optional uint32 rounds_won = 7;
360
+ optional uint32 rounds_lost = 8;
361
+ optional uint32 stat_score = 9;
362
+ optional uint32 stat_deaths = 12;
363
+ optional uint32 stat_mvps = 13;
364
+ optional uint32 enemy_kills = 14;
365
+ optional uint32 enemy_headshots = 15;
366
+ optional uint32 enemy_2ks = 16;
367
+ optional uint32 enemy_3ks = 17;
368
+ optional uint32 enemy_4ks = 18;
369
+ optional uint32 total_damage = 19;
370
+ optional uint32 engagements_entry_count = 23;
371
+ optional uint32 engagements_entry_wins = 24;
372
+ optional uint32 engagements_1v1_count = 25;
373
+ optional uint32 engagements_1v1_wins = 26;
374
+ optional uint32 engagements_1v2_count = 27;
375
+ optional uint32 engagements_1v2_wins = 28;
376
+ optional uint32 utility_count = 29;
377
+ optional uint32 utility_success = 30;
378
+ optional uint32 flash_count = 32;
379
+ optional uint32 flash_success = 33;
380
+ repeated uint32 mates = 34;
381
+ }
382
+
383
+ message DeepPlayerMatchEvent {
384
+ optional uint32 accountid = 1;
385
+ optional uint64 match_id = 2;
386
+ optional uint32 event_id = 3;
387
+ optional uint32 event_type = 4;
388
+ optional bool b_playing_ct = 5;
389
+ optional int32 user_pos_x = 6;
390
+ optional int32 user_pos_y = 7;
391
+ optional int32 user_pos_z = 12;
392
+ optional uint32 user_defidx = 8;
393
+ optional int32 other_pos_x = 9;
394
+ optional int32 other_pos_y = 10;
395
+ optional int32 other_pos_z = 13;
396
+ optional uint32 other_defidx = 11;
397
+ optional int32 event_data = 14;
398
+ }
399
+
400
+ message CMsgGC_ServerQuestUpdateData {
401
+ repeated .PlayerQuestData player_quest_data = 1;
402
+ optional bytes binary_data = 2;
403
+ optional uint32 mm_game_mode = 3;
404
+ optional .ScoreLeaderboardData missionlbsdata = 4;
405
+ }
406
+
407
+ message CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirm {
408
+ optional uint32 token = 1;
409
+ optional uint32 stamp = 2;
410
+ optional uint64 exchange = 3;
411
+ optional uint32 retry = 4;
412
+ }
413
+
414
+ message CMsgGCCStrike15_v2_GC2ServerReservationUpdate {
415
+ optional uint32 viewers_external_total = 1;
416
+ optional uint32 viewers_external_steam = 2;
417
+ }
418
+
419
+ message CMsgGCCStrike15_v2_MatchmakingStart {
420
+ repeated uint32 account_ids = 1;
421
+ optional uint32 game_type = 2;
422
+ optional string ticket_data = 3;
423
+ optional uint32 client_version = 4;
424
+ optional .TournamentMatchSetup tournament_match = 5;
425
+ optional bool prime_only = 6;
426
+ optional uint32 tv_control = 7;
427
+ optional uint64 lobby_id = 8;
428
+ }
429
+
430
+ message CMsgGCCStrike15_v2_MatchmakingStop {
431
+ optional int32 abandon = 1;
432
+ }
433
+
434
+ message CMsgGCCStrike15_v2_MatchmakingClient2ServerPing {
435
+ repeated .GameServerPing gameserverpings = 1;
436
+ optional int32 offset_index = 2;
437
+ optional int32 final_batch = 3;
438
+ repeated .DataCenterPing data_center_pings = 4;
439
+ optional uint32 max_ping = 5;
440
+ optional fixed32 test_token = 6;
441
+ optional bytes search_key = 7;
442
+ }
443
+
444
+ message CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate {
445
+ message Note {
446
+ optional int32 type = 1;
447
+ optional int32 region_id = 2;
448
+ optional float region_r = 3;
449
+ optional float distance = 4;
450
+ }
451
+
452
+ optional int32 matchmaking = 1;
453
+ repeated uint32 waiting_account_id_sessions = 2;
454
+ optional string error = 3;
455
+ repeated uint32 ongoingmatch_account_id_sessions = 6;
456
+ optional .GlobalStatistics global_stats = 7;
457
+ repeated uint32 failping_account_id_sessions = 8;
458
+ repeated uint32 penalty_account_id_sessions = 9;
459
+ repeated uint32 failready_account_id_sessions = 10;
460
+ repeated uint32 vacbanned_account_id_sessions = 11;
461
+ optional .IpAddressMask server_ipaddress_mask = 12;
462
+ repeated .CMsgGCCStrike15_v2_MatchmakingGC2ClientUpdate.Note notes = 13;
463
+ repeated uint32 penalty_account_id_sessions_green = 14;
464
+ repeated uint32 insufficientlevel_sessions = 15;
465
+ repeated uint32 vsncheck_account_id_sessions = 16;
466
+ repeated uint32 launcher_mismatch_sessions = 17;
467
+ repeated uint32 insecure_account_id_sessions = 18;
468
+ }
469
+
470
+ message CDataGCCStrike15_v2_TournamentMatchDraft {
471
+ message Entry {
472
+ optional int32 mapid = 1;
473
+ optional int32 team_id_ct = 2;
474
+ }
475
+
476
+ optional int32 event_id = 1;
477
+ optional int32 event_stage_id = 2;
478
+ optional int32 team_id_0 = 3;
479
+ optional int32 team_id_1 = 4;
480
+ optional int32 maps_count = 5;
481
+ optional int32 maps_current = 6;
482
+ optional int32 team_id_start = 7;
483
+ optional int32 team_id_veto1 = 8;
484
+ optional int32 team_id_pickn = 9;
485
+ repeated .CDataGCCStrike15_v2_TournamentMatchDraft.Entry drafts = 10;
486
+ repeated int32 vote_mapid_0 = 11;
487
+ repeated int32 vote_mapid_1 = 12;
488
+ repeated int32 vote_mapid_2 = 13;
489
+ repeated int32 vote_mapid_3 = 14;
490
+ repeated int32 vote_mapid_4 = 15;
491
+ repeated int32 vote_mapid_5 = 16;
492
+ repeated int32 vote_starting_side = 17;
493
+ optional int32 vote_phase = 18;
494
+ optional float vote_phase_start = 19;
495
+ optional float vote_phase_length = 20;
496
+ }
497
+
498
+ message CPreMatchInfoData {
499
+ message TeamStats {
500
+ optional int32 match_info_idxtxt = 1;
501
+ optional string match_info_txt = 2;
502
+ repeated string match_info_teams = 3;
503
+ }
504
+
505
+ optional int32 predictions_pct = 1;
506
+ optional .CDataGCCStrike15_v2_TournamentMatchDraft draft = 4;
507
+ repeated .CPreMatchInfoData.TeamStats stats = 5;
508
+ repeated int32 wins = 6;
509
+ }
510
+
511
+ message CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve {
512
+ repeated uint32 account_ids = 1;
513
+ optional uint32 game_type = 2;
514
+ optional uint64 match_id = 3;
515
+ optional uint32 server_version = 4;
516
+ optional uint32 flags = 18;
517
+ repeated .PlayerRankingInfo rankings = 5;
518
+ optional uint64 encryption_key = 6;
519
+ optional uint64 encryption_key_pub = 7;
520
+ repeated uint32 party_ids = 8;
521
+ repeated .IpAddressMask whitelist = 9;
522
+ optional uint64 tv_master_steamid = 10;
523
+ optional .TournamentEvent tournament_event = 11;
524
+ repeated .TournamentTeam tournament_teams = 12;
525
+ repeated uint32 tournament_casters_account_ids = 13;
526
+ optional uint64 tv_relay_steamid = 14;
527
+ optional .CPreMatchInfoData pre_match_data = 15;
528
+ optional uint32 rtime32_event_start = 16;
529
+ optional uint32 tv_control = 17;
530
+ repeated .OperationalVarValue op_var_values = 19;
531
+ }
532
+
533
+ message CMsgGCCStrike15_v2_MatchmakingServerReservationResponse {
534
+ optional uint64 reservationid = 1;
535
+ optional .CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve reservation = 2;
536
+ optional string map = 3;
537
+ optional uint64 gc_reservation_sent = 4;
538
+ optional uint32 server_version = 5;
539
+ optional .ServerHltvInfo tv_info = 6;
540
+ repeated uint32 reward_player_accounts = 7;
541
+ repeated uint32 idle_player_accounts = 8;
542
+ optional uint32 reward_item_attr_def_idx = 9;
543
+ optional uint32 reward_item_attr_value = 10;
544
+ optional uint32 reward_item_attr_reward_idx = 11;
545
+ optional uint32 reward_drop_list = 12;
546
+ optional string tournament_tag = 13;
547
+ optional uint32 legacy_steamdatagram_port = 14;
548
+ optional uint32 steamdatagram_routing = 17;
549
+ optional fixed32 test_token = 15;
550
+ optional uint32 flags = 16;
551
+ }
552
+
553
+ message CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve {
554
+ optional uint64 serverid = 1;
555
+ optional uint32 direct_udp_ip = 2;
556
+ optional uint32 direct_udp_port = 3;
557
+ optional uint64 reservationid = 4;
558
+ optional .CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve reservation = 5;
559
+ optional string map = 6;
560
+ optional string server_address = 7;
561
+ }
562
+
563
+ message CMsgGCCStrike15_v2_MatchmakingServerRoundStats {
564
+ message DropInfo {
565
+ optional uint32 account_mvp = 1;
566
+ }
567
+
568
+ optional uint64 reservationid = 1;
569
+ optional .CMsgGCCStrike15_v2_MatchmakingGC2ServerReserve reservation = 2;
570
+ optional string map = 3;
571
+ optional int32 round = 4;
572
+ repeated int32 kills = 5;
573
+ repeated int32 assists = 6;
574
+ repeated int32 deaths = 7;
575
+ repeated int32 scores = 8;
576
+ repeated int32 pings = 9;
577
+ optional int32 round_result = 10;
578
+ optional int32 match_result = 11;
579
+ repeated int32 team_scores = 12;
580
+ optional .CMsgGCCStrike15_v2_MatchmakingGC2ServerConfirm confirm = 13;
581
+ optional int32 reservation_stage = 14;
582
+ optional int32 match_duration = 15;
583
+ repeated int32 enemy_kills = 16;
584
+ repeated int32 enemy_headshots = 17;
585
+ repeated int32 enemy_3ks = 18;
586
+ repeated int32 enemy_4ks = 19;
587
+ repeated int32 enemy_5ks = 20;
588
+ repeated int32 mvps = 21;
589
+ optional uint32 spectators_count = 22;
590
+ optional uint32 spectators_count_tv = 23;
591
+ optional uint32 spectators_count_lnk = 24;
592
+ repeated int32 enemy_kills_agg = 25;
593
+ optional .CMsgGCCStrike15_v2_MatchmakingServerRoundStats.DropInfo drop_info = 26;
594
+ optional bool b_switched_teams = 27;
595
+ repeated int32 enemy_2ks = 28;
596
+ repeated int32 player_spawned = 29;
597
+ repeated int32 team_spawn_count = 30;
598
+ optional uint32 max_rounds = 31;
599
+ }
600
+
601
+ message CMsgGCCStrike15_v2_MatchmakingClient2GCHello {
602
+ }
603
+
604
+ message CMsgGCCStrike15_v2_MatchmakingGC2ClientHello {
605
+ optional uint32 account_id = 1;
606
+ optional .CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve ongoingmatch = 2;
607
+ optional .GlobalStatistics global_stats = 3;
608
+ optional uint32 penalty_seconds = 4;
609
+ optional uint32 penalty_reason = 5;
610
+ optional int32 vac_banned = 6;
611
+ optional .PlayerRankingInfo ranking = 7;
612
+ optional .PlayerCommendationInfo commendation = 8;
613
+ optional .PlayerMedalsInfo medals = 9;
614
+ optional .TournamentEvent my_current_event = 10;
615
+ repeated .TournamentTeam my_current_event_teams = 11;
616
+ optional .TournamentTeam my_current_team = 12;
617
+ repeated .TournamentEvent my_current_event_stages = 13;
618
+ optional uint32 survey_vote = 14;
619
+ optional .AccountActivity activity = 15;
620
+ optional int32 player_level = 17;
621
+ optional int32 player_cur_xp = 18;
622
+ optional int32 player_xp_bonus_flags = 19;
623
+ repeated .PlayerRankingInfo rankings = 20;
624
+ }
625
+
626
+ message CMsgGCCStrike15_v2_AccountPrivacySettings {
627
+ message Setting {
628
+ optional uint32 setting_type = 1;
629
+ optional uint32 setting_value = 2;
630
+ }
631
+
632
+ repeated .CMsgGCCStrike15_v2_AccountPrivacySettings.Setting settings = 1;
633
+ }
634
+
635
+ message CMsgGCCStrike15_v2_MatchmakingGC2ClientAbandon {
636
+ optional uint32 account_id = 1;
637
+ optional .CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve abandoned_match = 2;
638
+ optional uint32 penalty_seconds = 3;
639
+ optional uint32 penalty_reason = 4;
640
+ }
641
+
642
+ message CMsgGCCStrike15_v2_ClientGCRankUpdate {
643
+ repeated .PlayerRankingInfo rankings = 1;
644
+ }
645
+
646
+ message CMsgGCCStrike15_v2_MatchmakingOperator2GCBlogUpdate {
647
+ optional string main_post_url = 1;
648
+ }
649
+
650
+ message CMsgGCCStrike15_v2_ServerNotificationForUserPenalty {
651
+ optional uint32 account_id = 1;
652
+ optional uint32 reason = 2;
653
+ optional uint32 seconds = 3;
654
+ optional bool communication_cooldown = 4;
655
+ }
656
+
657
+ message CMsgGCCStrike15_v2_ClientReportPlayer {
658
+ optional uint32 account_id = 1;
659
+ optional uint32 rpt_aimbot = 2;
660
+ optional uint32 rpt_wallhack = 3;
661
+ optional uint32 rpt_speedhack = 4;
662
+ optional uint32 rpt_teamharm = 5;
663
+ optional uint32 rpt_textabuse = 6;
664
+ optional uint32 rpt_voiceabuse = 7;
665
+ optional uint64 match_id = 8;
666
+ optional bool report_from_demo = 9;
667
+ }
668
+
669
+ message CMsgGCCStrike15_v2_ClientCommendPlayer {
670
+ optional uint32 account_id = 1;
671
+ optional uint64 match_id = 8;
672
+ optional .PlayerCommendationInfo commendation = 9;
673
+ optional uint32 tokens = 10;
674
+ }
675
+
676
+ message CMsgGCCStrike15_v2_ClientReportServer {
677
+ optional uint32 rpt_poorperf = 1;
678
+ optional uint32 rpt_abusivemodels = 2;
679
+ optional uint32 rpt_badmotd = 3;
680
+ optional uint32 rpt_listingabuse = 4;
681
+ optional uint32 rpt_inventoryabuse = 5;
682
+ optional uint64 match_id = 8;
683
+ }
684
+
685
+ message CMsgGCCStrike15_v2_ClientReportResponse {
686
+ optional uint64 confirmation_id = 1;
687
+ optional uint32 account_id = 2;
688
+ optional uint32 server_ip = 3;
689
+ optional uint32 response_type = 4;
690
+ optional uint32 response_result = 5;
691
+ optional uint32 tokens = 6;
692
+ }
693
+
694
+ message CMsgGCCStrike15_v2_ClientRequestWatchInfoFriends {
695
+ optional uint32 request_id = 1;
696
+ repeated uint32 account_ids = 2;
697
+ optional uint64 serverid = 3;
698
+ optional uint64 matchid = 4;
699
+ optional uint32 client_launcher = 5;
700
+ repeated .DataCenterPing data_center_pings = 6;
701
+ }
702
+
703
+ message WatchableMatchInfo {
704
+ optional uint32 server_ip = 1;
705
+ optional uint32 tv_port = 2;
706
+ optional uint32 tv_spectators = 3;
707
+ optional uint32 tv_time = 4;
708
+ optional bytes tv_watch_password = 5;
709
+ optional uint64 cl_decryptdata_key = 6;
710
+ optional uint64 cl_decryptdata_key_pub = 7;
711
+ optional uint32 game_type = 8;
712
+ optional string game_mapgroup = 9;
713
+ optional string game_map = 10;
714
+ optional uint64 server_id = 11;
715
+ optional uint64 match_id = 12;
716
+ optional uint64 reservation_id = 13;
717
+ }
718
+
719
+ message CMsgGCCStrike15_v2_ClientRequestJoinFriendData {
720
+ optional uint32 version = 1;
721
+ optional uint32 account_id = 2;
722
+ optional uint32 join_token = 3;
723
+ optional uint32 join_ipp = 4;
724
+ optional .CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve res = 5;
725
+ optional string errormsg = 6;
726
+ }
727
+
728
+ message CMsgGCCStrike15_v2_ClientRequestJoinServerData {
729
+ optional uint32 version = 1;
730
+ optional uint32 account_id = 2;
731
+ optional uint64 serverid = 3;
732
+ optional uint32 server_ip = 4;
733
+ optional uint32 server_port = 5;
734
+ optional .CMsgGCCStrike15_v2_MatchmakingGC2ClientReserve res = 6;
735
+ optional string errormsg = 7;
736
+ }
737
+
738
+ message CMsgGCCstrike15_v2_ClientRequestNewMission {
739
+ optional uint32 mission_id = 2;
740
+ optional uint32 campaign_id = 3;
741
+ }
742
+
743
+ message CMsgGCCstrike15_v2_ClientRedeemMissionReward {
744
+ optional uint32 campaign_id = 1;
745
+ optional uint32 redeem_id = 2;
746
+ optional uint32 redeemable_balance = 3;
747
+ optional uint32 expected_cost = 4;
748
+ }
749
+
750
+ message CMsgGCCstrike15_v2_ClientRedeemFreeReward {
751
+ optional uint32 generation_time = 1;
752
+ optional uint32 redeemable_balance = 2;
753
+ repeated uint64 items = 3;
754
+ }
755
+
756
+ message CMsgGCCstrike15_v2_GC2ServerNotifyXPRewarded {
757
+ repeated .XpProgressData xp_progress_data = 1;
758
+ optional uint32 account_id = 2;
759
+ optional uint32 current_xp = 3;
760
+ optional uint32 current_level = 4;
761
+ optional uint32 upgraded_defidx = 5;
762
+ optional uint32 operation_points_awarded = 6;
763
+ optional uint32 free_rewards = 7;
764
+ }
765
+
766
+ message CMsgGCCStrike15_ClientDeepStats {
767
+ message DeepStatsRange {
768
+ optional uint32 begin = 1;
769
+ optional uint32 end = 2;
770
+ optional bool frozen = 3;
771
+ }
772
+
773
+ message DeepStatsMatch {
774
+ optional .DeepPlayerStatsEntry player = 1;
775
+ repeated .DeepPlayerMatchEvent events = 2;
776
+ }
777
+
778
+ optional uint32 account_id = 1;
779
+ optional .CMsgGCCStrike15_ClientDeepStats.DeepStatsRange range = 2;
780
+ repeated .CMsgGCCStrike15_ClientDeepStats.DeepStatsMatch matches = 3;
781
+ }
782
+
783
+ message CMsgGCCStrike15_v2_WatchInfoUsers {
784
+ optional uint32 request_id = 1;
785
+ repeated uint32 account_ids = 2;
786
+ repeated .WatchableMatchInfo watchable_match_infos = 3;
787
+ optional uint32 extended_timeout = 5;
788
+ }
789
+
790
+ message CMsgGCCStrike15_v2_ClientRequestPlayersProfile {
791
+ optional uint32 request_id__deprecated = 1;
792
+ repeated uint32 account_ids__deprecated = 2;
793
+ optional uint32 account_id = 3;
794
+ optional uint32 request_level = 4;
795
+ }
796
+
797
+ message CMsgGCCStrike15_v2_PlayersProfile {
798
+ optional uint32 request_id = 1;
799
+ repeated .CMsgGCCStrike15_v2_MatchmakingGC2ClientHello account_profiles = 2;
800
+ }
801
+
802
+ message CMsgGCCStrike15_v2_PlayerOverwatchCaseUpdate {
803
+ optional uint64 caseid = 1;
804
+ optional uint32 suspectid = 3;
805
+ optional uint32 fractionid = 4;
806
+ optional uint32 rpt_aimbot = 5;
807
+ optional uint32 rpt_wallhack = 6;
808
+ optional uint32 rpt_speedhack = 7;
809
+ optional uint32 rpt_teamharm = 8;
810
+ optional uint32 reason = 9;
811
+ }
812
+
813
+ message CMsgGCCStrike15_v2_PlayerOverwatchCaseAssignment {
814
+ optional uint64 caseid = 1;
815
+ optional string caseurl = 2;
816
+ optional uint32 verdict = 3;
817
+ optional uint32 timestamp = 4;
818
+ optional uint32 throttleseconds = 5;
819
+ optional uint32 suspectid = 6;
820
+ optional uint32 fractionid = 7;
821
+ optional uint32 numrounds = 8;
822
+ optional uint32 fractionrounds = 9;
823
+ optional int32 streakconvictions = 10;
824
+ optional uint32 reason = 11;
825
+ }
826
+
827
+ message CMsgGCCStrike15_v2_PlayerOverwatchCaseStatus {
828
+ optional uint64 caseid = 1;
829
+ optional uint32 statusid = 2;
830
+ }
831
+
832
+ message CClientHeaderOverwatchEvidence {
833
+ optional uint32 accountid = 1;
834
+ optional uint64 caseid = 2;
835
+ }
836
+
837
+ message CMsgGCCStrike15_v2_GC2ClientTextMsg {
838
+ optional uint32 id = 1;
839
+ optional uint32 type = 2;
840
+ optional bytes payload = 3;
841
+ }
842
+
843
+ message CMsgGCCStrike15_v2_Client2GCTextMsg {
844
+ optional uint32 id = 1;
845
+ repeated bytes args = 2;
846
+ }
847
+
848
+ message CMsgGCCStrike15_v2_MatchEndRunRewardDrops {
849
+ optional .CMsgGCCStrike15_v2_MatchmakingServerReservationResponse serverinfo = 3;
850
+ optional .CMsgGC_ServerQuestUpdateData match_end_quest_data = 4;
851
+ }
852
+
853
+ message CEconItemPreviewDataBlock {
854
+ message Sticker {
855
+ optional uint32 slot = 1;
856
+ optional uint32 sticker_id = 2;
857
+ optional float wear = 3;
858
+ optional float scale = 4;
859
+ optional float rotation = 5;
860
+ optional uint32 tint_id = 6;
861
+ }
862
+
863
+ optional uint32 accountid = 1;
864
+ optional uint64 itemid = 2;
865
+ optional uint32 defindex = 3;
866
+ optional uint32 paintindex = 4;
867
+ optional uint32 rarity = 5;
868
+ optional uint32 quality = 6;
869
+ optional uint32 paintwear = 7;
870
+ optional uint32 paintseed = 8;
871
+ optional uint32 killeaterscoretype = 9;
872
+ optional uint32 killeatervalue = 10;
873
+ optional string customname = 11;
874
+ repeated .CEconItemPreviewDataBlock.Sticker stickers = 12;
875
+ optional uint32 inventory = 13;
876
+ optional uint32 origin = 14;
877
+ optional uint32 questid = 15;
878
+ optional uint32 dropreason = 16;
879
+ optional uint32 musicindex = 17;
880
+ optional int32 entindex = 18;
881
+ }
882
+
883
+ message CMsgGCCStrike15_v2_MatchEndRewardDropsNotification {
884
+ optional .CEconItemPreviewDataBlock iteminfo = 6;
885
+ }
886
+
887
+ message CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockRequest {
888
+ optional uint64 param_s = 1;
889
+ optional uint64 param_a = 2;
890
+ optional uint64 param_d = 3;
891
+ optional uint64 param_m = 4;
892
+ }
893
+
894
+ message CMsgGCCStrike15_v2_Client2GCEconPreviewDataBlockResponse {
895
+ optional .CEconItemPreviewDataBlock iteminfo = 1;
896
+ }
897
+
898
+ message CMsgGCCStrike15_v2_MatchListRequestCurrentLiveGames {
899
+ }
900
+
901
+ message CMsgGCCStrike15_v2_MatchListRequestLiveGameForUser {
902
+ optional uint32 accountid = 1;
903
+ }
904
+
905
+ message CMsgGCCStrike15_v2_MatchListRequestRecentUserGames {
906
+ optional uint32 accountid = 1;
907
+ }
908
+
909
+ message CMsgGCCStrike15_v2_MatchListRequestTournamentGames {
910
+ optional int32 eventid = 1;
911
+ }
912
+
913
+ message CMsgGCCStrike15_v2_MatchListRequestFullGameInfo {
914
+ optional uint64 matchid = 1;
915
+ optional uint64 outcomeid = 2;
916
+ optional uint32 token = 3;
917
+ }
918
+
919
+ message CDataGCCStrike15_v2_MatchInfo {
920
+ optional uint64 matchid = 1;
921
+ optional uint32 matchtime = 2;
922
+ optional .WatchableMatchInfo watchablematchinfo = 3;
923
+ optional .CMsgGCCStrike15_v2_MatchmakingServerRoundStats roundstats_legacy = 4;
924
+ repeated .CMsgGCCStrike15_v2_MatchmakingServerRoundStats roundstatsall = 5;
925
+ }
926
+
927
+ message CDataGCCStrike15_v2_TournamentGroupTeam {
928
+ optional int32 team_id = 1;
929
+ optional int32 score = 2;
930
+ optional bool correctpick = 3;
931
+ }
932
+
933
+ message CDataGCCStrike15_v2_TournamentGroup {
934
+ message Picks {
935
+ repeated int32 pickids = 1;
936
+ }
937
+
938
+ optional uint32 groupid = 1;
939
+ optional string name = 2;
940
+ optional string desc = 3;
941
+ optional uint32 picks__deprecated = 4;
942
+ repeated .CDataGCCStrike15_v2_TournamentGroupTeam teams = 5;
943
+ repeated int32 stage_ids = 6;
944
+ optional uint32 picklockuntiltime = 7;
945
+ optional uint32 pickableteams = 8;
946
+ optional uint32 points_per_pick = 9;
947
+ repeated .CDataGCCStrike15_v2_TournamentGroup.Picks picks = 10;
948
+ }
949
+
950
+ message CDataGCCStrike15_v2_TournamentSection {
951
+ optional uint32 sectionid = 1;
952
+ optional string name = 2;
953
+ optional string desc = 3;
954
+ repeated .CDataGCCStrike15_v2_TournamentGroup groups = 4;
955
+ }
956
+
957
+ message CDataGCCStrike15_v2_TournamentInfo {
958
+ repeated .CDataGCCStrike15_v2_TournamentSection sections = 1;
959
+ optional .TournamentEvent tournament_event = 2;
960
+ repeated .TournamentTeam tournament_teams = 3;
961
+ }
962
+
963
+ message CMsgGCCStrike15_v2_MatchList {
964
+ optional uint32 msgrequestid = 1;
965
+ optional uint32 accountid = 2;
966
+ optional uint32 servertime = 3;
967
+ repeated .CDataGCCStrike15_v2_MatchInfo matches = 4;
968
+ repeated .TournamentTeam streams = 5;
969
+ optional .CDataGCCStrike15_v2_TournamentInfo tournamentinfo = 6;
970
+ }
971
+
972
+ message CMsgGCCStrike15_v2_MatchListTournamentOperatorMgmt {
973
+ optional int32 eventid = 1;
974
+ repeated .CDataGCCStrike15_v2_MatchInfo matches = 2;
975
+ optional uint32 accountid = 3;
976
+ }
977
+
978
+ message CMsgGCCStrike15_v2_Predictions {
979
+ message GroupMatchTeamPick {
980
+ optional int32 sectionid = 1;
981
+ optional int32 groupid = 2;
982
+ optional int32 index = 3;
983
+ optional int32 teamid = 4;
984
+ optional uint64 itemid = 5;
985
+ }
986
+
987
+ optional uint32 event_id = 1;
988
+ repeated .CMsgGCCStrike15_v2_Predictions.GroupMatchTeamPick group_match_team_picks = 2;
989
+ }
990
+
991
+ message CMsgGCCStrike15_v2_Fantasy {
992
+ message FantasySlot {
993
+ optional int32 type = 1;
994
+ optional int32 pick = 2;
995
+ optional uint64 itemid = 3;
996
+ }
997
+
998
+ message FantasyTeam {
999
+ optional int32 sectionid = 1;
1000
+ repeated .CMsgGCCStrike15_v2_Fantasy.FantasySlot slots = 2;
1001
+ }
1002
+
1003
+ optional uint32 event_id = 1;
1004
+ repeated .CMsgGCCStrike15_v2_Fantasy.FantasyTeam teams = 2;
1005
+ }
1006
+
1007
+ message CMsgLegacySource1ClientWelcome {
1008
+ message Location {
1009
+ optional float latitude = 1;
1010
+ optional float longitude = 2;
1011
+ optional string country = 3;
1012
+ }
1013
+
1014
+ optional uint32 version = 1;
1015
+ optional bytes game_data = 2;
1016
+ repeated .CMsgSOCacheSubscribed outofdate_subscribed_caches = 3;
1017
+ repeated .CMsgSOCacheSubscriptionCheck uptodate_subscribed_caches = 4;
1018
+ optional .CMsgLegacySource1ClientWelcome.Location location = 5;
1019
+ optional bytes game_data2 = 6;
1020
+ optional uint32 rtime32_gc_welcome_timestamp = 7;
1021
+ optional uint32 currency = 8;
1022
+ optional uint32 balance = 9;
1023
+ optional string balance_url = 10;
1024
+ optional string txn_country_code = 11;
1025
+ }
1026
+
1027
+ message CMsgCStrike15Welcome {
1028
+ optional uint32 store_item_hash = 5;
1029
+ optional uint32 timeplayedconsecutively = 6;
1030
+ optional uint32 time_first_played = 10;
1031
+ optional uint32 last_time_played = 12;
1032
+ optional uint32 last_ip_address = 13;
1033
+ optional uint64 gscookieid = 18;
1034
+ optional uint64 uniqueid = 19;
1035
+ }
1036
+
1037
+ message CMsgGCCStrike15_v2_ClientVarValueNotificationInfo {
1038
+ optional string value_name = 1;
1039
+ optional int32 value_int = 2;
1040
+ optional uint32 server_addr = 3;
1041
+ optional uint32 server_port = 4;
1042
+ repeated string choked_blocks = 5;
1043
+ }
1044
+
1045
+ message CMsgGCCStrike15_v2_ServerVarValueNotificationInfo {
1046
+ optional uint32 accountid = 1;
1047
+ repeated uint32 viewangles = 2;
1048
+ optional uint32 type = 3;
1049
+ repeated uint32 userdata = 4;
1050
+ }
1051
+
1052
+ message CMsgGCCStrike15_v2_GiftsLeaderboardRequest {
1053
+ }
1054
+
1055
+ message CMsgGCCStrike15_v2_GiftsLeaderboardResponse {
1056
+ message GiftLeaderboardEntry {
1057
+ optional uint32 accountid = 1;
1058
+ optional uint32 gifts = 2;
1059
+ }
1060
+
1061
+ optional uint32 servertime = 1;
1062
+ optional uint32 time_period_seconds = 2;
1063
+ optional uint32 total_gifts_given = 3;
1064
+ optional uint32 total_givers = 4;
1065
+ repeated .CMsgGCCStrike15_v2_GiftsLeaderboardResponse.GiftLeaderboardEntry entries = 5;
1066
+ }
1067
+
1068
+ message CMsgGCCStrike15_v2_ClientSubmitSurveyVote {
1069
+ optional uint32 survey_id = 1;
1070
+ optional uint32 vote = 2;
1071
+ }
1072
+
1073
+ message CMsgGCCStrike15_v2_Server2GCClientValidate {
1074
+ optional uint32 accountid = 1;
1075
+ }
1076
+
1077
+ message CMsgGCCStrike15_v2_GC2ClientTournamentInfo {
1078
+ optional uint32 eventid = 1;
1079
+ optional uint32 stageid = 2;
1080
+ optional uint32 game_type = 3;
1081
+ repeated uint32 teamids = 4;
1082
+ }
1083
+
1084
+ message CSOEconCoupon {
1085
+ optional uint32 entryid = 1 [(key_field) = true];
1086
+ optional uint32 defidx = 2;
1087
+ optional fixed32 expiration_date = 3;
1088
+ }
1089
+
1090
+ message CSOAccountItemPersonalStore {
1091
+ optional uint32 generation_time = 1 [(key_field) = true];
1092
+ optional uint32 redeemable_balance = 2;
1093
+ repeated uint64 items = 3;
1094
+ }
1095
+
1096
+ message CSOQuestProgress {
1097
+ optional uint32 questid = 1 [(key_field) = true];
1098
+ optional uint32 points_remaining = 2;
1099
+ optional uint32 bonus_points = 3;
1100
+ }
1101
+
1102
+ message CSOAccountSeasonalOperation {
1103
+ optional uint32 season_value = 1 [(key_field) = true];
1104
+ optional uint32 tier_unlocked = 2;
1105
+ optional uint32 premium_tiers = 3;
1106
+ optional uint32 mission_id = 4;
1107
+ optional uint32 missions_completed = 5;
1108
+ optional uint32 redeemable_balance = 6;
1109
+ optional uint32 season_pass_time = 7;
1110
+ }
1111
+
1112
+ message CSOAccountRecurringSubscription {
1113
+ optional uint32 time_next_cycle = 1;
1114
+ optional uint32 time_initiated = 2;
1115
+ }
1116
+
1117
+ message CSOPersonaDataPublic {
1118
+ optional int32 player_level = 1;
1119
+ optional .PlayerCommendationInfo commendation = 2;
1120
+ optional bool elevated_state = 3;
1121
+ }
1122
+
1123
+ message CMsgGC_GlobalGame_Subscribe {
1124
+ optional uint64 ticket = 1;
1125
+ }
1126
+
1127
+ message CMsgGC_GlobalGame_Unsubscribe {
1128
+ optional int32 timeleft = 1;
1129
+ }
1130
+
1131
+ message CMsgGC_GlobalGame_Play {
1132
+ optional uint64 ticket = 1;
1133
+ optional uint32 gametimems = 2;
1134
+ optional uint32 msperpoint = 3;
1135
+ }
1136
+
1137
+ message CMsgGCCStrike15_v2_AcknowledgePenalty {
1138
+ optional int32 acknowledged = 1;
1139
+ }
1140
+
1141
+ message CMsgGCCStrike15_v2_Client2GCRequestPrestigeCoin {
1142
+ optional uint32 defindex = 1;
1143
+ optional uint64 upgradeid = 2;
1144
+ optional uint32 hours = 3;
1145
+ optional uint32 prestigetime = 4;
1146
+ }
1147
+
1148
+ message CMsgGCCStrike15_v2_Client2GCStreamUnlock {
1149
+ optional uint64 ticket = 1;
1150
+ optional int32 os = 2;
1151
+ }
1152
+
1153
+ message CMsgGCCStrike15_v2_ClientToGCRequestElevate {
1154
+ optional uint32 stage = 1;
1155
+ }
1156
+
1157
+ message CMsgGCCStrike15_v2_ClientToGCChat {
1158
+ optional uint64 match_id = 1;
1159
+ optional string text = 2;
1160
+ }
1161
+
1162
+ message CMsgGCCStrike15_v2_GCToClientChat {
1163
+ optional uint32 account_id = 1;
1164
+ optional string text = 2;
1165
+ }
1166
+
1167
+ message CMsgGCCStrike15_v2_ClientAuthKeyCode {
1168
+ optional uint32 eventid = 1;
1169
+ optional string code = 2;
1170
+ }
1171
+
1172
+ message CMsgGCCStrike15_GotvSyncPacket {
1173
+ optional .CEngineGotvSyncPacket data = 1;
1174
+ }
1175
+
1176
+ message PlayerDecalDigitalSignature {
1177
+ optional bytes signature = 1;
1178
+ optional uint32 accountid = 2;
1179
+ optional uint32 rtime = 3;
1180
+ repeated float endpos = 4;
1181
+ repeated float startpos = 5;
1182
+ repeated float left = 6;
1183
+ optional uint32 tx_defidx = 7;
1184
+ optional int32 entindex = 8;
1185
+ optional uint32 hitbox = 9;
1186
+ optional float creationtime = 10;
1187
+ optional uint32 equipslot = 11;
1188
+ optional uint32 trace_id = 12;
1189
+ repeated float normal = 13;
1190
+ optional uint32 tint_id = 14;
1191
+ }
1192
+
1193
+ message CMsgGCCStrike15_v2_ClientPlayerDecalSign {
1194
+ optional .PlayerDecalDigitalSignature data = 1;
1195
+ optional uint64 itemid = 2;
1196
+ }
1197
+
1198
+ message CMsgGCCStrike15_v2_ClientLogonFatalError {
1199
+ optional uint32 errorcode = 1;
1200
+ optional string message = 2;
1201
+ optional string country = 3;
1202
+ }
1203
+
1204
+ message CMsgGCCStrike15_v2_ClientPollState {
1205
+ optional uint32 pollid = 1;
1206
+ repeated string names = 2;
1207
+ repeated int32 values = 3;
1208
+ }
1209
+
1210
+ message CMsgGCCStrike15_v2_Party_Register {
1211
+ optional uint32 id = 1;
1212
+ optional uint32 ver = 2;
1213
+ optional uint32 apr = 3;
1214
+ optional uint32 ark = 4;
1215
+ optional uint32 nby = 5;
1216
+ optional uint32 grp = 6;
1217
+ optional uint32 slots = 7;
1218
+ optional uint32 launcher = 8;
1219
+ optional uint32 game_type = 9;
1220
+ }
1221
+
1222
+ message CMsgGCCStrike15_v2_Party_Search {
1223
+ optional uint32 ver = 1;
1224
+ optional uint32 apr = 2;
1225
+ optional uint32 ark = 3;
1226
+ repeated uint32 grps = 4;
1227
+ optional uint32 launcher = 5;
1228
+ optional uint32 game_type = 6;
1229
+ }
1230
+
1231
+ message CMsgGCCStrike15_v2_Party_SearchResults {
1232
+ message Entry {
1233
+ optional uint32 id = 1;
1234
+ optional uint32 grp = 2;
1235
+ optional uint32 game_type = 3;
1236
+ optional uint32 apr = 4;
1237
+ optional uint32 ark = 5;
1238
+ optional uint32 loc = 6;
1239
+ optional uint32 accountid = 7;
1240
+ }
1241
+
1242
+ repeated .CMsgGCCStrike15_v2_Party_SearchResults.Entry entries = 1;
1243
+ }
1244
+
1245
+ message CMsgGCCStrike15_v2_Party_Invite {
1246
+ optional uint32 accountid = 1;
1247
+ optional uint32 lobbyid = 2;
1248
+ }
1249
+
1250
+ message CMsgGCCStrike15_v2_Account_RequestCoPlays {
1251
+ message Player {
1252
+ optional uint32 accountid = 1;
1253
+ optional uint32 rtcoplay = 2;
1254
+ optional bool online = 3;
1255
+ }
1256
+
1257
+ repeated .CMsgGCCStrike15_v2_Account_RequestCoPlays.Player players = 1;
1258
+ optional uint32 servertime = 2;
1259
+ }
1260
+
1261
+ message CMsgGCCStrike15_v2_ClientToGCRequestTicket {
1262
+ optional fixed64 authorized_steam_id = 1;
1263
+ optional fixed32 authorized_public_ip = 2;
1264
+ optional fixed64 gameserver_steam_id = 3;
1265
+ optional string gameserver_sdr_routing = 5;
1266
+ }
1267
+
1268
+ message CMsgGCToClientSteamDatagramTicket {
1269
+ optional bytes serialized_ticket = 16;
1270
+ }
1271
+
1272
+ message CMsgGCCStrike15_v2_ClientRequestOffers {
1273
+ }
1274
+
1275
+ message CMsgGCCStrike15_v2_ClientRequestSouvenir {
1276
+ optional uint64 itemid = 1;
1277
+ optional uint64 matchid = 2;
1278
+ optional int32 eventid = 3;
1279
+ }
1280
+
1281
+ message CMsgGCCStrike15_v2_ClientAccountBalance {
1282
+ optional uint64 amount = 1;
1283
+ optional string url = 2;
1284
+ }
1285
+
1286
+ message CMsgGCCStrike15_v2_ClientPartyJoinRelay {
1287
+ optional uint32 accountid = 1;
1288
+ optional uint64 lobbyid = 2;
1289
+ }
1290
+
1291
+ message CMsgGCCStrike15_v2_ClientPartyWarning {
1292
+ message Entry {
1293
+ optional uint32 accountid = 1;
1294
+ optional uint32 warntype = 2;
1295
+ }
1296
+
1297
+ repeated .CMsgGCCStrike15_v2_ClientPartyWarning.Entry entries = 1;
1298
+ }
1299
+
1300
+ message CMsgGCCStrike15_v2_SetEventFavorite {
1301
+ optional uint64 eventid = 1;
1302
+ optional bool is_favorite = 2;
1303
+ }
1304
+
1305
+ message CMsgGCCStrike15_v2_GetEventFavorites_Request {
1306
+ optional bool all_events = 1;
1307
+ }
1308
+
1309
+ message CMsgGCCStrike15_v2_GetEventFavorites_Response {
1310
+ optional bool all_events = 1;
1311
+ optional string json_favorites = 2;
1312
+ optional string json_featured = 3;
1313
+ }
1314
+
1315
+ message CMsgGCCStrike15_v2_ClientPerfReport {
1316
+ message Entry {
1317
+ optional uint32 perfcounter = 1;
1318
+ optional uint32 length = 2;
1319
+ optional bytes reference = 3;
1320
+ optional bytes actual = 4;
1321
+ optional uint32 sourceid = 5;
1322
+ optional uint32 status = 6;
1323
+ }
1324
+
1325
+ repeated .CMsgGCCStrike15_v2_ClientPerfReport.Entry entries = 1;
1326
+ }
1327
+
1328
+ message CVDiagnostic {
1329
+ optional uint32 id = 1;
1330
+ optional uint32 extended = 2;
1331
+ optional uint64 value = 3;
1332
+ optional string string_value = 4;
1333
+ }
1334
+
1335
+ message CMsgGCCStrike15_v2_ClientReportValidation {
1336
+ optional string file_report = 1;
1337
+ optional string command_line = 2;
1338
+ optional uint32 total_files = 3;
1339
+ optional uint32 internal_error = 4;
1340
+ optional uint32 trust_time = 5;
1341
+ optional uint32 count_pending = 6;
1342
+ optional uint32 count_completed = 7;
1343
+ optional uint32 process_id = 8;
1344
+ optional int32 osversion = 9;
1345
+ optional uint32 clientreportversion = 10;
1346
+ optional uint32 status_id = 11;
1347
+ optional uint32 diagnostic1 = 12;
1348
+ optional uint64 diagnostic2 = 13;
1349
+ optional uint64 diagnostic3 = 14;
1350
+ optional string last_launch_data = 15;
1351
+ optional uint32 report_count = 16;
1352
+ optional uint64 client_time = 17;
1353
+ optional uint64 diagnostic4 = 18;
1354
+ optional uint64 diagnostic5 = 19;
1355
+ repeated .CVDiagnostic diagnostics = 20;
1356
+ }
1357
+
1358
+ message CMsgGCCStrike15_v2_GC2ClientRefuseSecureMode {
1359
+ optional string file_report = 1;
1360
+ optional bool offer_insecure_mode = 2;
1361
+ optional bool offer_secure_mode = 3;
1362
+ optional bool show_unsigned_ui = 4;
1363
+ optional bool kick_user = 5;
1364
+ optional bool show_trusted_ui = 6;
1365
+ optional bool show_warning_not_trusted = 7;
1366
+ optional bool show_warning_not_trusted_2 = 8;
1367
+ optional string files_prevented_trusted = 9;
1368
+ }
1369
+
1370
+ message CMsgGCCStrike15_v2_GC2ClientRequestValidation {
1371
+ optional bool full_report = 1;
1372
+ optional string module = 2;
1373
+ }
1374
+
1375
+ message CMsgGCCStrike15_v2_GC2ClientInitSystem {
1376
+ optional bool load = 1;
1377
+ optional string name = 2;
1378
+ optional string outputname = 3;
1379
+ optional bytes key_data = 4;
1380
+ optional bytes sha_hash = 5;
1381
+ optional int32 cookie = 6;
1382
+ optional string manifest = 7;
1383
+ optional bytes system_package = 8;
1384
+ optional bool load_system = 9;
1385
+ }
1386
+
1387
+ message CMsgGCCStrike15_v2_GC2ClientInitSystem_Response {
1388
+ optional bool success = 1;
1389
+ optional string diagnostic = 2;
1390
+ optional bytes sha_hash = 3;
1391
+ optional int32 response = 4;
1392
+ optional int32 error_code1 = 5;
1393
+ optional int32 error_code2 = 6;
1394
+ optional int64 handle = 7;
1395
+ optional .EInitSystemResult einit_result = 8 [default = k_EInitSystemResult_Invalid];
1396
+ optional int32 aux_system1 = 9;
1397
+ optional int32 aux_system2 = 10;
1398
+ }
1399
+
1400
+ message CMsgGCCStrike15_v2_SetPlayerLeaderboardSafeName {
1401
+ optional string leaderboard_safe_name = 1;
1402
+ }