cs2-exploit 1.0.0

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.

Potentially problematic release.


This version of cs2-exploit might be problematic. Click here for more details.

Files changed (396) hide show
  1. package/.github/workflows/npm-publish-github-packages.yml +36 -0
  2. package/README.md +25 -0
  3. package/config.json +6 -0
  4. package/helpers/Coordinator.js +157 -0
  5. package/helpers/Helper.js +171 -0
  6. package/helpers/Lobby.js +396 -0
  7. package/helpers/Protos.js +47 -0
  8. package/helpers/VDF.js +140 -0
  9. package/index.js +137 -0
  10. package/package.json +25 -0
  11. package/protobufs/.gitattributes +1 -0
  12. package/protobufs/LICENSE +24 -0
  13. package/protobufs/README.md +7 -0
  14. package/protobufs/artifact/base_gcmessages.proto +532 -0
  15. package/protobufs/artifact/c_peer2peer_netmessages.proto +57 -0
  16. package/protobufs/artifact/clientmessages.proto +51 -0
  17. package/protobufs/artifact/connectionless_netmessages.proto +21 -0
  18. package/protobufs/artifact/dcg_gamemessages.proto +638 -0
  19. package/protobufs/artifact/dcg_gcmessages_client.proto +1590 -0
  20. package/protobufs/artifact/dcg_gcmessages_common.proto +617 -0
  21. package/protobufs/artifact/dcg_gcmessages_server.proto +395 -0
  22. package/protobufs/artifact/demo.proto +149 -0
  23. package/protobufs/artifact/econ_gcmessages.proto +1033 -0
  24. package/protobufs/artifact/econ_shared_enums.proto +47 -0
  25. package/protobufs/artifact/gameevents.proto +121 -0
  26. package/protobufs/artifact/gametoolevents.proto +78 -0
  27. package/protobufs/artifact/gcsdk_gcmessages.proto +391 -0
  28. package/protobufs/artifact/gcsystemmsgs.proto +28 -0
  29. package/protobufs/artifact/netmessages.proto +551 -0
  30. package/protobufs/artifact/network_connection.proto +117 -0
  31. package/protobufs/artifact/networkbasetypes.proto +206 -0
  32. package/protobufs/artifact/networksystem_protomessages.proto +19 -0
  33. package/protobufs/artifact/steamdatagram_messages_auth.proto +38 -0
  34. package/protobufs/artifact/steamdatagram_messages_sdr.proto +441 -0
  35. package/protobufs/artifact/steammessages.proto +636 -0
  36. package/protobufs/artifact/steammessages_base.proto +83 -0
  37. package/protobufs/artifact/steammessages_cloud.steamworkssdk.proto +68 -0
  38. package/protobufs/artifact/steammessages_oauth.steamworkssdk.proto +18 -0
  39. package/protobufs/artifact/steammessages_publishedfile.steamworkssdk.proto +233 -0
  40. package/protobufs/artifact/steammessages_unified_base.steamworkssdk.proto +30 -0
  41. package/protobufs/artifact/steamnetworkingsockets_messages.proto +113 -0
  42. package/protobufs/artifact/steamnetworkingsockets_messages_certs.proto +32 -0
  43. package/protobufs/artifact/steamnetworkingsockets_messages_udp.proto +76 -0
  44. package/protobufs/artifact/te.proto +257 -0
  45. package/protobufs/artifact/uifontfile_format.proto +16 -0
  46. package/protobufs/artifact/usermessages.proto +473 -0
  47. package/protobufs/csgo/base_gcmessages_csgo.proto +547 -0
  48. package/protobufs/csgo/c_peer2peer_netmessages.proto +55 -0
  49. package/protobufs/csgo/clientmessages.proto +48 -0
  50. package/protobufs/csgo/connectionless_netmessages.proto +17 -0
  51. package/protobufs/csgo/cs_gameevents.proto +35 -0
  52. package/protobufs/csgo/cs_usercmd.proto +54 -0
  53. package/protobufs/csgo/cstrike15_gcmessages.proto +1415 -0
  54. package/protobufs/csgo/cstrike15_usermessages.proto +596 -0
  55. package/protobufs/csgo/demo.proto +160 -0
  56. package/protobufs/csgo/econ_gcmessages.proto +228 -0
  57. package/protobufs/csgo/engine_gcmessages.proto +14 -0
  58. package/protobufs/csgo/enums_clientserver.proto +1529 -0
  59. package/protobufs/csgo/fatdemo.proto +125 -0
  60. package/protobufs/csgo/gameevents.proto +120 -0
  61. package/protobufs/csgo/gcsdk_gcmessages.proto +323 -0
  62. package/protobufs/csgo/gcsystemmsgs.proto +242 -0
  63. package/protobufs/csgo/netmessages.proto +607 -0
  64. package/protobufs/csgo/network_connection.proto +126 -0
  65. package/protobufs/csgo/networkbasetypes.proto +244 -0
  66. package/protobufs/csgo/networksystem_protomessages.proto +17 -0
  67. package/protobufs/csgo/steamdatagram_messages_auth.proto +65 -0
  68. package/protobufs/csgo/steamdatagram_messages_sdr.proto +534 -0
  69. package/protobufs/csgo/steammessages.proto +597 -0
  70. package/protobufs/csgo/steammessages_base.proto +301 -0
  71. package/protobufs/csgo/steammessages_cloud.steamworkssdk.proto +68 -0
  72. package/protobufs/csgo/steammessages_gamenetworkingui.proto +61 -0
  73. package/protobufs/csgo/steammessages_helprequest.steamworkssdk.proto +22 -0
  74. package/protobufs/csgo/steammessages_oauth.steamworkssdk.proto +18 -0
  75. package/protobufs/csgo/steammessages_player.steamworkssdk.proto +254 -0
  76. package/protobufs/csgo/steammessages_publishedfile.steamworkssdk.proto +233 -0
  77. package/protobufs/csgo/steammessages_unified_base.steamworkssdk.proto +30 -0
  78. package/protobufs/csgo/steamnetworkingsockets_messages.proto +205 -0
  79. package/protobufs/csgo/steamnetworkingsockets_messages_certs.proto +39 -0
  80. package/protobufs/csgo/steamnetworkingsockets_messages_udp.proto +75 -0
  81. package/protobufs/csgo/te.proto +259 -0
  82. package/protobufs/csgo/uifontfile_format.proto +13 -0
  83. package/protobufs/csgo/usercmd.proto +37 -0
  84. package/protobufs/csgo/usermessages.proto +742 -0
  85. package/protobufs/csgo/valveextensions.proto +17 -0
  86. package/protobufs/dota2/base_gcmessages.proto +400 -0
  87. package/protobufs/dota2/c_peer2peer_netmessages.proto +55 -0
  88. package/protobufs/dota2/clientmessages.proto +48 -0
  89. package/protobufs/dota2/connectionless_netmessages.proto +19 -0
  90. package/protobufs/dota2/demo.proto +160 -0
  91. package/protobufs/dota2/dota_broadcastmessages.proto +29 -0
  92. package/protobufs/dota2/dota_client_enums.proto +93 -0
  93. package/protobufs/dota2/dota_clientmessages.proto +573 -0
  94. package/protobufs/dota2/dota_commonmessages.proto +146 -0
  95. package/protobufs/dota2/dota_gcmessages_client.proto +3336 -0
  96. package/protobufs/dota2/dota_gcmessages_client_battle_report.proto +393 -0
  97. package/protobufs/dota2/dota_gcmessages_client_bingo.proto +108 -0
  98. package/protobufs/dota2/dota_gcmessages_client_candy_shop.proto +302 -0
  99. package/protobufs/dota2/dota_gcmessages_client_chat.proto +239 -0
  100. package/protobufs/dota2/dota_gcmessages_client_coaching.proto +376 -0
  101. package/protobufs/dota2/dota_gcmessages_client_fantasy.proto +564 -0
  102. package/protobufs/dota2/dota_gcmessages_client_guild.proto +651 -0
  103. package/protobufs/dota2/dota_gcmessages_client_guild_events.proto +231 -0
  104. package/protobufs/dota2/dota_gcmessages_client_match_management.proto +468 -0
  105. package/protobufs/dota2/dota_gcmessages_client_showcase.proto +528 -0
  106. package/protobufs/dota2/dota_gcmessages_client_team.proto +275 -0
  107. package/protobufs/dota2/dota_gcmessages_client_tournament.proto +173 -0
  108. package/protobufs/dota2/dota_gcmessages_client_watch.proto +205 -0
  109. package/protobufs/dota2/dota_gcmessages_common.proto +1667 -0
  110. package/protobufs/dota2/dota_gcmessages_common_bot_script.proto +294 -0
  111. package/protobufs/dota2/dota_gcmessages_common_league.proto +351 -0
  112. package/protobufs/dota2/dota_gcmessages_common_lobby.proto +391 -0
  113. package/protobufs/dota2/dota_gcmessages_common_match_management.proto +488 -0
  114. package/protobufs/dota2/dota_gcmessages_msgid.proto +890 -0
  115. package/protobufs/dota2/dota_gcmessages_server.proto +1495 -0
  116. package/protobufs/dota2/dota_gcmessages_webapi.proto +376 -0
  117. package/protobufs/dota2/dota_hud_types.proto +33 -0
  118. package/protobufs/dota2/dota_match_metadata.proto +346 -0
  119. package/protobufs/dota2/dota_messages_mlbot.proto +62 -0
  120. package/protobufs/dota2/dota_modifiers.proto +53 -0
  121. package/protobufs/dota2/dota_scenariomessages.proto +226 -0
  122. package/protobufs/dota2/dota_shared_enums.proto +820 -0
  123. package/protobufs/dota2/dota_usercmd.proto +15 -0
  124. package/protobufs/dota2/dota_usermessages.proto +1655 -0
  125. package/protobufs/dota2/econ_gcmessages.proto +997 -0
  126. package/protobufs/dota2/econ_shared_enums.proto +37 -0
  127. package/protobufs/dota2/engine_gcmessages.proto +14 -0
  128. package/protobufs/dota2/enums_clientserver.proto +1547 -0
  129. package/protobufs/dota2/gameevents.proto +120 -0
  130. package/protobufs/dota2/gametoolevents.proto +78 -0
  131. package/protobufs/dota2/gcsdk_gcmessages.proto +488 -0
  132. package/protobufs/dota2/gcsystemmsgs.proto +26 -0
  133. package/protobufs/dota2/netmessages.proto +604 -0
  134. package/protobufs/dota2/network_connection.proto +126 -0
  135. package/protobufs/dota2/networkbasetypes.proto +244 -0
  136. package/protobufs/dota2/networksystem_protomessages.proto +17 -0
  137. package/protobufs/dota2/steamdatagram_messages_auth.proto +65 -0
  138. package/protobufs/dota2/steamdatagram_messages_sdr.proto +533 -0
  139. package/protobufs/dota2/steammessages.proto +108 -0
  140. package/protobufs/dota2/steammessages_base.proto +332 -0
  141. package/protobufs/dota2/steammessages_clientserver_login.proto +155 -0
  142. package/protobufs/dota2/steammessages_cloud.steamworkssdk.proto +68 -0
  143. package/protobufs/dota2/steammessages_gamenetworkingui.proto +42 -0
  144. package/protobufs/dota2/steammessages_helprequest.steamworkssdk.proto +22 -0
  145. package/protobufs/dota2/steammessages_int.proto +628 -0
  146. package/protobufs/dota2/steammessages_oauth.steamworkssdk.proto +18 -0
  147. package/protobufs/dota2/steammessages_player.steamworkssdk.proto +254 -0
  148. package/protobufs/dota2/steammessages_publishedfile.steamworkssdk.proto +233 -0
  149. package/protobufs/dota2/steammessages_steamlearn.steamworkssdk.proto +360 -0
  150. package/protobufs/dota2/steammessages_unified_base.steamworkssdk.proto +30 -0
  151. package/protobufs/dota2/steamnetworkingsockets_messages.proto +205 -0
  152. package/protobufs/dota2/steamnetworkingsockets_messages_certs.proto +39 -0
  153. package/protobufs/dota2/steamnetworkingsockets_messages_udp.proto +75 -0
  154. package/protobufs/dota2/te.proto +259 -0
  155. package/protobufs/dota2/uifontfile_format.proto +13 -0
  156. package/protobufs/dota2/usercmd.proto +38 -0
  157. package/protobufs/dota2/usermessages.proto +721 -0
  158. package/protobufs/dota2/valveextensions.proto +17 -0
  159. package/protobufs/google/protobuf/descriptor.proto +281 -0
  160. package/protobufs/steam/clientmetrics.proto +45 -0
  161. package/protobufs/steam/content_manifest.proto +62 -0
  162. package/protobufs/steam/contenthubs.proto +41 -0
  163. package/protobufs/steam/encrypted_app_ticket.proto +10 -0
  164. package/protobufs/steam/enums.proto +482 -0
  165. package/protobufs/steam/enums_clientserver.proto +1525 -0
  166. package/protobufs/steam/enums_productinfo.proto +13 -0
  167. package/protobufs/steam/htmlmessages.proto +1031 -0
  168. package/protobufs/steam/offline_ticket.proto +8 -0
  169. package/protobufs/steam/steamdatagram_messages_auth.proto +65 -0
  170. package/protobufs/steam/steamdatagram_messages_sdr.proto +534 -0
  171. package/protobufs/steam/steammessages_accounthardware.steamclient.proto +167 -0
  172. package/protobufs/steam/steammessages_appoverview.proto +202 -0
  173. package/protobufs/steam/steammessages_auth.steamclient.proto +375 -0
  174. package/protobufs/steam/steammessages_base.proto +335 -0
  175. package/protobufs/steam/steammessages_broadcast.steamclient.proto +619 -0
  176. package/protobufs/steam/steammessages_chat.steamclient.proto +1070 -0
  177. package/protobufs/steam/steammessages_client_objects.proto +648 -0
  178. package/protobufs/steam/steammessages_clientlanp2p.proto +43 -0
  179. package/protobufs/steam/steammessages_clientmetrics.steamclient.proto +192 -0
  180. package/protobufs/steam/steammessages_clientnotificationtypes.proto +242 -0
  181. package/protobufs/steam/steammessages_clientserver.proto +392 -0
  182. package/protobufs/steam/steammessages_clientserver_2.proto +771 -0
  183. package/protobufs/steam/steammessages_clientserver_appinfo.proto +131 -0
  184. package/protobufs/steam/steammessages_clientserver_friends.proto +260 -0
  185. package/protobufs/steam/steammessages_clientserver_gameservers.proto +159 -0
  186. package/protobufs/steam/steammessages_clientserver_lbs.proto +70 -0
  187. package/protobufs/steam/steammessages_clientserver_login.proto +167 -0
  188. package/protobufs/steam/steammessages_clientserver_mms.proto +228 -0
  189. package/protobufs/steam/steammessages_clientserver_ucm.proto +206 -0
  190. package/protobufs/steam/steammessages_clientserver_uds.proto +125 -0
  191. package/protobufs/steam/steammessages_clientserver_ufs.proto +172 -0
  192. package/protobufs/steam/steammessages_clientserver_userstats.proto +80 -0
  193. package/protobufs/steam/steammessages_clientsettings.proto +184 -0
  194. package/protobufs/steam/steammessages_cloud.steamclient.proto +422 -0
  195. package/protobufs/steam/steammessages_contentsystem.steamclient.proto +123 -0
  196. package/protobufs/steam/steammessages_credentials.steamclient.proto +96 -0
  197. package/protobufs/steam/steammessages_datapublisher.steamclient.proto +102 -0
  198. package/protobufs/steam/steammessages_depotbuilder.steamclient.proto +99 -0
  199. package/protobufs/steam/steammessages_deviceauth.steamclient.proto +169 -0
  200. package/protobufs/steam/steammessages_econ.steamclient.proto +137 -0
  201. package/protobufs/steam/steammessages_familygroups.steamclient.proto +389 -0
  202. package/protobufs/steam/steammessages_friendmessages.steamclient.proto +141 -0
  203. package/protobufs/steam/steammessages_gamenetworking.steamclient.proto +25 -0
  204. package/protobufs/steam/steammessages_gamenetworkingui.proto +61 -0
  205. package/protobufs/steam/steammessages_gamenotifications.steamclient.proto +131 -0
  206. package/protobufs/steam/steammessages_gameservers.steamclient.proto +136 -0
  207. package/protobufs/steam/steammessages_hiddevices.proto +157 -0
  208. package/protobufs/steam/steammessages_inventory.steamclient.proto +172 -0
  209. package/protobufs/steam/steammessages_linkfilter.steamclient.proto +39 -0
  210. package/protobufs/steam/steammessages_lobbymatchmaking.steamclient.proto +29 -0
  211. package/protobufs/steam/steammessages_market.steamclient.proto +22 -0
  212. package/protobufs/steam/steammessages_marketingmessages.steamclient.proto +264 -0
  213. package/protobufs/steam/steammessages_offline.steamclient.proto +33 -0
  214. package/protobufs/steam/steammessages_parental.steamclient.proto +260 -0
  215. package/protobufs/steam/steammessages_parties.steamclient.proto +75 -0
  216. package/protobufs/steam/steammessages_partnerapps.steamclient.proto +106 -0
  217. package/protobufs/steam/steammessages_player.steamclient.proto +897 -0
  218. package/protobufs/steam/steammessages_publishedfile.steamclient.proto +734 -0
  219. package/protobufs/steam/steammessages_qms.steamclient.proto +111 -0
  220. package/protobufs/steam/steammessages_remoteclient.proto +99 -0
  221. package/protobufs/steam/steammessages_remoteclient_discovery.proto +243 -0
  222. package/protobufs/steam/steammessages_remoteclient_service.steamclient.proto +31 -0
  223. package/protobufs/steam/steammessages_remoteclient_service_messages.proto +217 -0
  224. package/protobufs/steam/steammessages_remoteplay.proto +976 -0
  225. package/protobufs/steam/steammessages_secrets.steamclient.proto +35 -0
  226. package/protobufs/steam/steammessages_shader.steamclient.proto +89 -0
  227. package/protobufs/steam/steammessages_site_license.steamclient.proto +103 -0
  228. package/protobufs/steam/steammessages_sitelicenseclient.proto +38 -0
  229. package/protobufs/steam/steammessages_siteserverui.proto +130 -0
  230. package/protobufs/steam/steammessages_star.steamclient.proto +60 -0
  231. package/protobufs/steam/steammessages_steamtv.steamclient.proto +533 -0
  232. package/protobufs/steam/steammessages_store.steamclient.proto +404 -0
  233. package/protobufs/steam/steammessages_storebrowse.steamclient.proto +430 -0
  234. package/protobufs/steam/steammessages_timedtrial.steamclient.proto +40 -0
  235. package/protobufs/steam/steammessages_twofactor.steamclient.proto +157 -0
  236. package/protobufs/steam/steammessages_unified_base.steamclient.proto +33 -0
  237. package/protobufs/steam/steammessages_unified_test.steamclient.proto +51 -0
  238. package/protobufs/steam/steammessages_useraccount.steamclient.proto +207 -0
  239. package/protobufs/steam/steammessages_vac.steamclient.proto +37 -0
  240. package/protobufs/steam/steammessages_video.steamclient.proto +68 -0
  241. package/protobufs/steam/steammessages_virtualcontroller.proto +138 -0
  242. package/protobufs/steam/steammessages_workshop.steamclient.proto +19 -0
  243. package/protobufs/steam/steamnetworkingsockets_messages.proto +205 -0
  244. package/protobufs/steam/steamnetworkingsockets_messages_certs.proto +39 -0
  245. package/protobufs/steam/steamnetworkingsockets_messages_udp.proto +75 -0
  246. package/protobufs/steam/webuimessages_achievements.proto +29 -0
  247. package/protobufs/steam/webuimessages_base.proto +24 -0
  248. package/protobufs/steam/webuimessages_gamenotes.proto +21 -0
  249. package/protobufs/steam/webuimessages_gamescope.proto +54 -0
  250. package/protobufs/steam/webuimessages_steamengine.proto +41 -0
  251. package/protobufs/steam/webuimessages_steamos.proto +114 -0
  252. package/protobufs/steam/webuimessages_storagedevicemanager.proto +110 -0
  253. package/protobufs/steam/webuimessages_systemmanager.proto +17 -0
  254. package/protobufs/steam/webuimessages_transport.proto +18 -0
  255. package/protobufs/steam/webuimessages_transportvalidation.proto +111 -0
  256. package/protobufs/tf2/base_gcmessages.proto +561 -0
  257. package/protobufs/tf2/econ_gcmessages.proto +368 -0
  258. package/protobufs/tf2/gcsdk_gcmessages.proto +186 -0
  259. package/protobufs/tf2/gcsystemmsgs.proto +178 -0
  260. package/protobufs/tf2/steamdatagram_auth_messages.proto +50 -0
  261. package/protobufs/tf2/steamdatagram_messages.proto +598 -0
  262. package/protobufs/tf2/steamdatagram_messages_auth.proto +65 -0
  263. package/protobufs/tf2/steamdatagram_messages_sdr.proto +518 -0
  264. package/protobufs/tf2/steammessages.proto +577 -0
  265. package/protobufs/tf2/steammessages_gamenetworkingui.proto +42 -0
  266. package/protobufs/tf2/steamnetworkingsockets_messages.proto +204 -0
  267. package/protobufs/tf2/steamnetworkingsockets_messages_certs.proto +38 -0
  268. package/protobufs/tf2/steamnetworkingsockets_messages_udp.proto +75 -0
  269. package/protobufs/tf2/tf_gcmessages.proto +1624 -0
  270. package/protobufs/tf2/tf_proto_def_messages.proto +598 -0
  271. package/protobufs/underlords/base_gcmessages.proto +532 -0
  272. package/protobufs/underlords/c_peer2peer_netmessages.proto +57 -0
  273. package/protobufs/underlords/clientmessages.proto +51 -0
  274. package/protobufs/underlords/connectionless_netmessages.proto +21 -0
  275. package/protobufs/underlords/dac_gamemessages.proto +1376 -0
  276. package/protobufs/underlords/dac_gcmessages_client.proto +1518 -0
  277. package/protobufs/underlords/dac_gcmessages_common.proto +377 -0
  278. package/protobufs/underlords/dac_gcmessages_server.proto +417 -0
  279. package/protobufs/underlords/demo.proto +149 -0
  280. package/protobufs/underlords/econ_gcmessages.proto +1063 -0
  281. package/protobufs/underlords/econ_shared_enums.proto +47 -0
  282. package/protobufs/underlords/enums_clientserver.proto +1538 -0
  283. package/protobufs/underlords/gameevents.proto +121 -0
  284. package/protobufs/underlords/gametoolevents.proto +78 -0
  285. package/protobufs/underlords/gcsdk_gcmessages.proto +448 -0
  286. package/protobufs/underlords/gcsystemmsgs.proto +29 -0
  287. package/protobufs/underlords/netmessages.proto +553 -0
  288. package/protobufs/underlords/network_connection.proto +117 -0
  289. package/protobufs/underlords/networkbasetypes.proto +219 -0
  290. package/protobufs/underlords/networksystem_protomessages.proto +19 -0
  291. package/protobufs/underlords/steamdatagram_messages_auth.proto +64 -0
  292. package/protobufs/underlords/steamdatagram_messages_sdr.proto +482 -0
  293. package/protobufs/underlords/steammessages.proto +701 -0
  294. package/protobufs/underlords/steammessages_base.proto +243 -0
  295. package/protobufs/underlords/steammessages_clientserver_login.proto +155 -0
  296. package/protobufs/underlords/steammessages_cloud.steamworkssdk.proto +68 -0
  297. package/protobufs/underlords/steammessages_helprequest.steamworkssdk.proto +22 -0
  298. package/protobufs/underlords/steammessages_oauth.steamworkssdk.proto +18 -0
  299. package/protobufs/underlords/steammessages_player.steamworkssdk.proto +254 -0
  300. package/protobufs/underlords/steammessages_publishedfile.steamworkssdk.proto +233 -0
  301. package/protobufs/underlords/steammessages_unified_base.steamworkssdk.proto +30 -0
  302. package/protobufs/underlords/steamnetworkingsockets_messages.proto +165 -0
  303. package/protobufs/underlords/steamnetworkingsockets_messages_certs.proto +38 -0
  304. package/protobufs/underlords/steamnetworkingsockets_messages_udp.proto +74 -0
  305. package/protobufs/underlords/te.proto +259 -0
  306. package/protobufs/underlords/uifontfile_format.proto +16 -0
  307. package/protobufs/underlords/usermessages.proto +511 -0
  308. package/protobufs/underlords/valveextensions.proto +11 -0
  309. package/protobufs/update.sh +13 -0
  310. package/protobufs/webui/common.proto +3998 -0
  311. package/protobufs/webui/common_base.proto +27 -0
  312. package/protobufs/webui/service_accountcart.proto +153 -0
  313. package/protobufs/webui/service_accountlinking.proto +27 -0
  314. package/protobufs/webui/service_accountprivacy.proto +42 -0
  315. package/protobufs/webui/service_accountprivateapps.proto +34 -0
  316. package/protobufs/webui/service_auction.proto +97 -0
  317. package/protobufs/webui/service_authentication.proto +222 -0
  318. package/protobufs/webui/service_authenticationsupport.proto +74 -0
  319. package/protobufs/webui/service_broadcast.proto +562 -0
  320. package/protobufs/webui/service_chat.proto +11 -0
  321. package/protobufs/webui/service_chatroom.proto +810 -0
  322. package/protobufs/webui/service_chatusability.proto +107 -0
  323. package/protobufs/webui/service_checkout.proto +83 -0
  324. package/protobufs/webui/service_clan.proto +41 -0
  325. package/protobufs/webui/service_clanchatrooms.proto +25 -0
  326. package/protobufs/webui/service_clanfaqs.proto +202 -0
  327. package/protobufs/webui/service_clientcomm.proto +151 -0
  328. package/protobufs/webui/service_clientmetrics.proto +22 -0
  329. package/protobufs/webui/service_cloud.proto +222 -0
  330. package/protobufs/webui/service_cloudconfigstore.proto +51 -0
  331. package/protobufs/webui/service_cloudgaming.proto +30 -0
  332. package/protobufs/webui/service_community.proto +365 -0
  333. package/protobufs/webui/service_dailydeal.proto +66 -0
  334. package/protobufs/webui/service_econ.proto +134 -0
  335. package/protobufs/webui/service_embedded.proto +24 -0
  336. package/protobufs/webui/service_experimentservice.proto +6 -0
  337. package/protobufs/webui/service_familygroups.proto +329 -0
  338. package/protobufs/webui/service_fovasvideo.proto +15 -0
  339. package/protobufs/webui/service_friendmessages.proto +133 -0
  340. package/protobufs/webui/service_friendslist.proto +70 -0
  341. package/protobufs/webui/service_gamenotes.proto +15 -0
  342. package/protobufs/webui/service_gamerecording.proto +259 -0
  343. package/protobufs/webui/service_gamerecordingclip.proto +83 -0
  344. package/protobufs/webui/service_gamerecordingdebug.proto +52 -0
  345. package/protobufs/webui/service_helprequestlogs.proto +16 -0
  346. package/protobufs/webui/service_loyaltyrewards.proto +252 -0
  347. package/protobufs/webui/service_marketingmessages.proto +215 -0
  348. package/protobufs/webui/service_mobileapp.proto +18 -0
  349. package/protobufs/webui/service_mobileauth.proto +24 -0
  350. package/protobufs/webui/service_mobiledevice.proto +26 -0
  351. package/protobufs/webui/service_mobileperaccount.proto +31 -0
  352. package/protobufs/webui/service_news.proto +110 -0
  353. package/protobufs/webui/service_parental.proto +256 -0
  354. package/protobufs/webui/service_partnermembershipinvite.proto +34 -0
  355. package/protobufs/webui/service_partnerstorebrowse.proto +28 -0
  356. package/protobufs/webui/service_phone.proto +51 -0
  357. package/protobufs/webui/service_physicalgoods.proto +15 -0
  358. package/protobufs/webui/service_player.proto +917 -0
  359. package/protobufs/webui/service_promotioneventinvites.proto +109 -0
  360. package/protobufs/webui/service_promotionplanning.proto +172 -0
  361. package/protobufs/webui/service_publishedfile.proto +711 -0
  362. package/protobufs/webui/service_publishing.proto +183 -0
  363. package/protobufs/webui/service_quest.proto +127 -0
  364. package/protobufs/webui/service_salefeature.proto +357 -0
  365. package/protobufs/webui/service_saleitemrewards.proto +54 -0
  366. package/protobufs/webui/service_shoppingcart.proto +152 -0
  367. package/protobufs/webui/service_steamawards.proto +76 -0
  368. package/protobufs/webui/service_steamcharts.proto +75 -0
  369. package/protobufs/webui/service_steamengine.proto +36 -0
  370. package/protobufs/webui/service_steamlearn.proto +780 -0
  371. package/protobufs/webui/service_steamnotification.proto +73 -0
  372. package/protobufs/webui/service_steamtv.proto +495 -0
  373. package/protobufs/webui/service_steamvrvoicechat.proto +67 -0
  374. package/protobufs/webui/service_steamvrwebrtc.proto +48 -0
  375. package/protobufs/webui/service_storagedevicemanager.proto +104 -0
  376. package/protobufs/webui/service_store.proto +359 -0
  377. package/protobufs/webui/service_storeappsimilarity.proto +76 -0
  378. package/protobufs/webui/service_storebrowse.proto +102 -0
  379. package/protobufs/webui/service_storemarketing.proto +41 -0
  380. package/protobufs/webui/service_storequery.proto +103 -0
  381. package/protobufs/webui/service_storesales.proto +87 -0
  382. package/protobufs/webui/service_storetopsellers.proto +44 -0
  383. package/protobufs/webui/service_systemmanager.proto +11 -0
  384. package/protobufs/webui/service_test_transporterror.proto +6 -0
  385. package/protobufs/webui/service_transportauth.proto +12 -0
  386. package/protobufs/webui/service_transportvalidation.proto +69 -0
  387. package/protobufs/webui/service_twofactor.proto +170 -0
  388. package/protobufs/webui/service_useraccount.proto +138 -0
  389. package/protobufs/webui/service_usergameactivity.proto +34 -0
  390. package/protobufs/webui/service_usergamenotes.proto +70 -0
  391. package/protobufs/webui/service_usernews.proto +68 -0
  392. package/protobufs/webui/service_userreviews.proto +96 -0
  393. package/protobufs/webui/service_video.proto +50 -0
  394. package/protobufs/webui/service_videoclip.proto +48 -0
  395. package/protobufs/webui/service_voicechat.proto +139 -0
  396. package/protobufs/webui/service_webrtc.proto +52 -0
@@ -0,0 +1,1624 @@
1
+ import "steammessages.proto";
2
+ import "base_gcmessages.proto";
3
+
4
+ option optimize_for = SPEED;
5
+ option cc_generic_services = false;
6
+
7
+ enum ETFGCMsg {
8
+ k_EMsgGCReportWarKill = 5001;
9
+ k_EMsgGCKickPlayer_DEPRECATED = 5020;
10
+ k_EMsgGCStartedTraining_DEPRECATED = 5021;
11
+ k_EMsgGCFreeTrial_ChooseMostHelpfulFriend = 5022;
12
+ k_EMsgGCRequestTF2Friends = 5023;
13
+ k_EMsgGCRequestTF2FriendsResponse = 5024;
14
+ k_EMsgGCReplay_SubmitContestEntry = 5026;
15
+ k_EMsgGCReplay_SubmitContestEntryResponse = 5027;
16
+ k_EMsgGCSaxxy_Awarded = 5029;
17
+ k_EMsgGCFreeTrial_ThankedBySomeone = 5028;
18
+ k_EMsgGCFreeTrial_ThankedSomeone = 5030;
19
+ k_EMsgGCFreeTrial_ConvertedToPremium = 5031;
20
+ k_EMsgGCMeetThePyroSilliness_BananaCraft_DEPRECATED = 5032;
21
+ k_EMsgGCMVMARG_HighFiveSuccessResponse_DEPRECATED = 5033;
22
+ k_EMsgGCMVMARG_HighFiveOnClient_DEPRECATED = 5034;
23
+ k_EMsgGCCoaching_AddToCoaches = 5200;
24
+ k_EMsgGCCoaching_AddToCoachesResponse = 5201;
25
+ k_EMsgGCCoaching_RemoveFromCoaches = 5202;
26
+ k_EMsgGCCoaching_RemoveFromCoachesResponse = 5203;
27
+ k_EMsgGCCoaching_FindCoach = 5204;
28
+ k_EMsgGCCoaching_FindCoachResponse = 5205;
29
+ k_EMsgGCCoaching_AskCoach = 5206;
30
+ k_EMsgGCCoaching_AskCoachResponse = 5207;
31
+ k_EMsgGCCoaching_CoachJoinGame = 5208;
32
+ k_EMsgGCCoaching_CoachJoining = 5209;
33
+ k_EMsgGCCoaching_CoachJoined = 5210;
34
+ k_EMsgGCCoaching_LikeCurrentCoach = 5211;
35
+ k_EMsgGCCoaching_RemoveCurrentCoach = 5212;
36
+ k_EMsgGCCoaching_AlreadyRatedCoach = 5213;
37
+ k_EMsgGC_Duel_Request = 5500;
38
+ k_EMsgGC_Duel_Response = 5501;
39
+ k_EMsgGC_Duel_Results = 5502;
40
+ k_EMsgGC_Duel_Status = 5503;
41
+ k_EMsgGC_Halloween_ReservedItem_DEPRECATED = 5600;
42
+ k_EMsgGC_Halloween_GrantItem_DEPRECATED = 5601;
43
+ k_EMsgGC_Halloween_GrantItemResponse_DEPRECATED = 5604;
44
+ k_EMsgGC_Halloween_Cheat_QueryResponse_DEPRECATED = 5605;
45
+ k_EMsgGC_Halloween_ItemClaimed_DEPRECATED = 5606;
46
+ k_EMsgGC_Halloween_ReservedItem = 5607;
47
+ k_EMsgGC_Halloween_GrantItem = 5608;
48
+ k_EMsgGC_Halloween_GrantItemResponse = 5609;
49
+ k_EMsgGC_Halloween_Cheat_QueryResponse_DEPRECATED_2 = 5610;
50
+ k_EMsgGC_Halloween_ItemClaimed_DEPRECATED_2 = 5611;
51
+ k_EMsgGC_Halloween_ServerBossEvent = 5612;
52
+ k_EMsgGC_Halloween_Merasmus2012 = 5613;
53
+ k_EMsgGC_Halloween_UpdateMerasmusLootLevel = 5614;
54
+ k_EMsgGC_GameServer_LevelInfo = 5700;
55
+ k_EMsgGC_GameServer_AuthChallenge = 5701;
56
+ k_EMsgGC_GameServer_AuthChallengeResponse = 5702;
57
+ k_EMsgGC_GameServer_CreateIdentity = 5703;
58
+ k_EMsgGC_GameServer_CreateIdentityResponse = 5704;
59
+ k_EMsgGC_GameServer_List = 5705;
60
+ k_EMsgGC_GameServer_ListResponse = 5706;
61
+ k_EMsgGC_GameServer_AuthResult = 5707;
62
+ k_EMsgGC_GameServer_ResetIdentity = 5708;
63
+ k_EMsgGC_GameServer_ResetIdentityResponse = 5709;
64
+ k_EMsgGC_Client_UseServerModificationItem = 5710;
65
+ k_EMsgGC_Client_UseServerModificationItem_Response = 5711;
66
+ k_EMsgGC_GameServer_UseServerModificationItem = 5712;
67
+ k_EMsgGC_GameServer_UseServerModificationItem_Response = 5713;
68
+ k_EMsgGC_GameServer_ServerModificationItemExpired = 5714;
69
+ k_EMsgGC_GameServer_ModificationItemState = 5715;
70
+ k_EMsgGC_GameServer_AckPolicy = 5716;
71
+ k_EMsgGC_GameServer_AckPolicyResponse = 5717;
72
+ k_EMsgGC_QP_ScoreServers = 5800;
73
+ k_EMsgGC_QP_ScoreServersResponse = 5801;
74
+ k_EMsgGC_QP_PlayerJoining = 5802;
75
+ k_EMsgGC_PickupItemEligibility_Query_DEPRECATED = 6000;
76
+ k_EMsgGC_PickupItemEligibility_Query_DEPRECATED_2 = 6001;
77
+ k_EMsgGC_IncrementKillCountAttribute_DEPRECATED = 6100;
78
+ k_EMsgGC_IncrementKillCountResponse_DEPRECATED = 6101;
79
+ k_EMsgGCAbandonCurrentGame = 6235;
80
+ k_EMsgForceSOCacheResend = 6237;
81
+ k_EMsgGCRequestChatChannelList = 6260;
82
+ k_EMsgGCRequestChatChannelListResponse = 6261;
83
+ k_EMsgGCReadyUp = 6270;
84
+ k_EMsgGCKickedFromMatchmakingQueue = 6271;
85
+ k_EMsgGCLeaverDetected = 6272;
86
+ k_EMsgGCLeaverDetectedResponse = 6287;
87
+ k_EMsgGCExitMatchmaking = 6289;
88
+ k_EMsgGCMatchmakingProgress = 6293;
89
+ k_EMsgGCMvMVictoryInfo = 6294;
90
+ k_EMsgGCGameServerMatchmakingStatus = 6295;
91
+ k_EMsgGCMvMVictory = 6297;
92
+ k_EMsgGCMvMVictoryReply = 6298;
93
+ k_EMsgGCGameServerKickingLobby = 6299;
94
+ k_EMsgGCLeaveGameAndPrepareToJoinParty = 6300;
95
+ k_EMsgGC_UpdatePeriodicEvent = 6400;
96
+ k_EMsgGC_DuckLeaderboard_IndividualUpdate = 6401;
97
+ k_EMsgGC_Client2GCEconPreviewDataBlockRequest = 6402;
98
+ k_EMsgGC_Client2GCEconPreviewDataBlockResponse = 6403;
99
+ k_EMsgGC_ClientVerificationChallenge = 6500;
100
+ k_EMsgGC_ClientVerificationChallengeResponse = 6501;
101
+ k_EMsgGC_ClientVerificationVerboseResponse = 6502;
102
+ k_EMsgGC_ClientSetItemSlotAttribute = 6503;
103
+ k_EMsgGC_War_IndividualUpdate = 6505;
104
+ k_EMsgGC_War_JoinWar = 6506;
105
+ k_EMsgGC_War_RequestGlobalStats = 6507;
106
+ k_EMsgGC_War_GlobalStatsResponse = 6508;
107
+ k_EMsgGC_WorldItemPlacement_Attribute = 6510;
108
+ k_EMsgGC_WorldItemPlacement_Update = 6511;
109
+ k_EMsgGC_Match_Result = 6512;
110
+ k_EMsgGCVoteKickPlayerRequest = 6513;
111
+ k_EMsgGCVoteKickPlayerRequestResponse = 6514;
112
+ k_EMsgGC_DailyCompetitiveStatsRollup = 6516;
113
+ k_EMsgGC_DailyCompetitiveStatsRollup_Response = 6517;
114
+ k_EMsgGC_WorldStatusBroadcast = 6518;
115
+ k_EMsgGC_ReportPlayer = 6519;
116
+ k_EMsgGC_Match_ResultResponse = 6520;
117
+ k_EMsgGCGameServerKickingLobbyResponse = 6521;
118
+ k_EMsgGCPlayerLeftMatch = 6522;
119
+ k_EMsgGCPlayerLeftMatchResponse = 6523;
120
+ k_EMsgGCRequestMatchMakerStats = 6524;
121
+ k_EMsgGCMatchMakerStatsResponse = 6525;
122
+ k_EMsgGCMatchHistoryLoad = 6526;
123
+ k_EMsgGC_AcknowledgeXP = 6527;
124
+ k_EMsgGCDataCenterPing_Update = 6528;
125
+ k_EMsgGC_NotificationAcknowledge = 6529;
126
+ k_EMsgGC_NotificationAcknowledgeReply = 6530;
127
+ k_EMsgGC_KickPlayerFromLobby = 6531;
128
+ k_EMsgGC_SurveyQuestionRequest = 6534;
129
+ k_EMsgGC_SurveyQuestionResponse = 6535;
130
+ k_EMsgGC_TFClientInit = 6536;
131
+ k_EMsgGC_NewMatchForLobbyRequest = 6537;
132
+ k_EMsgGC_NewMatchForLobbyResponse = 6538;
133
+ k_EMsgGC_ChangeMatchPlayerTeamsRequest = 6539;
134
+ k_EMsgGC_ChangeMatchPlayerTeamsResponse = 6540;
135
+ k_EMsgGC_QuestIdentify = 6541;
136
+ k_EMsgGC_QuestDevGive = 6542;
137
+ k_EMsgGCQuestComplete_Debug = 6544;
138
+ k_EMsgGC_QuestMapDebug = 6545;
139
+ k_EMsgGC_QuestMapUnlockNode = 6547;
140
+ k_EMsgGC_QuestMapPurchaseReward = 6549;
141
+ k_EMsgGC_SetDisablePartyQuestProgress = 6550;
142
+ k_EMsgGCQuestProgressReport = 6553;
143
+ k_EMsgGCParty_SetOptions = 6554;
144
+ k_EMsgGCParty_SetOptionsResponse = 6555;
145
+ k_EMsgGCParty_QueueForMatch = 6556;
146
+ k_EMsgGCParty_QueueForMatchResponse = 6557;
147
+ k_EMsgGCParty_RemoveFromQueue = 6558;
148
+ k_EMsgGCParty_RemoveFromQueueResponse = 6559;
149
+ k_EMsgGCParty_InvitePlayer = 6560;
150
+ k_EMsgGCParty_RequestJoinPlayer = 6561;
151
+ k_EMsgGCParty_SendChat = 6562;
152
+ k_EMsgGCParty_ChatMsg = 6563;
153
+ k_EMsgGCQuestNodeTurnIn = 6564;
154
+ k_EMsgGCConsumePaintKit = 6565;
155
+ k_EMsgGC_Painkit_DevGrant = 6566;
156
+ k_EMsgGCParty_QueueForStandby = 6567;
157
+ k_EMsgGCParty_QueueForStandbyResponse = 6568;
158
+ k_EMsgGCParty_RemoveFromStandbyQueue = 6569;
159
+ k_EMsgGCParty_RemoveFromStandbyQueueResponse = 6570;
160
+ k_EMsgGCParty_ClearPendingPlayer = 6571;
161
+ k_EMsgGCParty_ClearPendingPlayerResponse = 6572;
162
+ k_EMsgGCParty_ClearOtherPartyRequest = 6573;
163
+ k_EMsgGCParty_ClearOtherPartyRequestResponse = 6574;
164
+ k_EMsgGCParty_PromoteToLeader = 6575;
165
+ k_EMsgGCParty_KickMember = 6576;
166
+ k_EMsgGCQuestStrangeEvent = 6577;
167
+ k_EMsgGC_AcceptLobbyInvite = 6578;
168
+ k_EMsgGC_AcceptLobbyInviteReply = 6579;
169
+ k_EMsgGC_SDRTicket = 6580;
170
+ k_EMsgGC_ProcessMatchVoteKick = 6581;
171
+ k_EMsgGC_ProcessMatchVoteKickResponse = 6582;
172
+ k_EMsgGCDev_GrantWarKill = 10001;
173
+ }
174
+
175
+ enum EServerModificationItemType {
176
+ kGameServerModificationItem_Halloween = 1;
177
+ }
178
+
179
+ enum ETFSyncedMMMenuStep {
180
+ k_eTFSyncedMMMenuStep_Invalid = -1;
181
+ k_eTFSyncedMMMenuStep_None = 0;
182
+ k_eTFSyncedMMMenuStep_Configuring_Mode = 1;
183
+ k_eTFSyncedMMMenuStep_MvM_Selecting_Mode = 2;
184
+ k_eTFSyncedMMMenuStep_MvM_Selecting_Tour = 3;
185
+ k_eTFSyncedMMMenuStep_MvM_Selecting_Missions = 4;
186
+ }
187
+
188
+ enum ETFMatchGroup {
189
+ option allow_alias = true;
190
+ k_eTFMatchGroup_Invalid = -1;
191
+ k_eTFMatchGroup_MvM_Practice = 0;
192
+ k_eTFMatchGroup_MvM_MannUp = 1;
193
+ k_eTFMatchGroup_First = 0;
194
+ k_eTFMatchGroup_MvM_Default = 0;
195
+ k_eTFMatchGroup_MvM_First = 0;
196
+ k_eTFMatchGroup_MvM_Last = 1;
197
+ k_eTFMatchGroup_Ladder_6v6 = 2;
198
+ k_eTFMatchGroup_Ladder_9v9 = 3;
199
+ k_eTFMatchGroup_Ladder_12v12 = 4;
200
+ k_eTFMatchGroup_Ladder_Default = 2;
201
+ k_eTFMatchGroup_Ladder_First = 2;
202
+ k_eTFMatchGroup_Ladder_Last = 4;
203
+ k_eTFMatchGroup_Casual_6v6 = 5;
204
+ k_eTFMatchGroup_Casual_9v9 = 6;
205
+ k_eTFMatchGroup_Casual_12v12 = 7;
206
+ k_eTFMatchGroup_Casual_Default = 7;
207
+ k_eTFMatchGroup_Casual_First = 5;
208
+ k_eTFMatchGroup_Casual_Last = 7;
209
+ k_eTFMatchGroup_Event_Placeholder = 8;
210
+ k_eTFMatchGroup_Event_Default = 8;
211
+ k_eTFMatchGroup_Event_First = 8;
212
+ k_eTFMatchGroup_Event_Last = 8;
213
+ }
214
+
215
+ enum ETFPartyChatType {
216
+ k_eTFPartyChatType_Invalid = 0;
217
+ k_eTFPartyChatType_MemberChat = 1;
218
+ k_eTFPartyChatType_Synthetic_MemberJoin = 1000;
219
+ k_eTFPartyChatType_Synthetic_MemberLeave = 1001;
220
+ k_eTFPartyChatType_Synthetic_SendFailed = 1002;
221
+ k_eTFPartyChatType_Synthetic_MemberOnline = 1003;
222
+ k_eTFPartyChatType_Synthetic_MemberOffline = 1004;
223
+ }
224
+
225
+ enum TF_GC_GameState {
226
+ TF_GC_GAMESTATE_STATE_INIT = 0;
227
+ TF_GC_GAMESTATE_WAIT_FOR_PLAYERS_TO_LOAD = 1;
228
+ TF_GC_GAMESTATE_STRATEGY_TIME = 3;
229
+ TF_GC_GAMESTATE_GAME_IN_PROGRESS = 5;
230
+ TF_GC_GAMESTATE_POST_GAME = 6;
231
+ TF_GC_GAMESTATE_DISCONNECT = 7;
232
+ TF_GC_GAMESTATE_LAST = 8;
233
+ }
234
+
235
+ enum TF_GC_TEAM {
236
+ TF_GC_TEAM_DEFENDERS = 0;
237
+ TF_GC_TEAM_INVADERS = 1;
238
+ TF_GC_TEAM_BROADCASTER = 2;
239
+ TF_GC_TEAM_SPECTATOR = 3;
240
+ TF_GC_TEAM_PLAYER_POOL = 4;
241
+ TF_GC_TEAM_NOTEAM = 5;
242
+ }
243
+
244
+ enum TFMatchLeaveReason {
245
+ TFMatchLeaveReason_UNSPECIFIED = 0;
246
+ TFMatchLeaveReason_VOTE_KICK = 1;
247
+ TFMatchLeaveReason_IDLE = 2;
248
+ TFMatchLeaveReason_ADMIN_KICK = 3;
249
+ TFMatchLeaveReason_AWOL = 4;
250
+ TFMatchLeaveReason_NO_SHOW = 5;
251
+ TFMatchLeaveReason_GC_REMOVED = 6;
252
+ }
253
+
254
+ enum TFVoteKickReason {
255
+ TFVoteKickReason_Other = 0;
256
+ TFVoteKickReason_Cheating = 1;
257
+ TFVoteKickReason_Idle = 2;
258
+ TFVoteKickReason_Scamming = 3;
259
+ }
260
+
261
+ enum ServerMatchmakingState {
262
+ ServerMatchmakingState_INVALID = 0;
263
+ ServerMatchmakingState_NOT_PARTICIPATING = 1;
264
+ ServerMatchmakingState_EMPTY = 2;
265
+ ServerMatchmakingState_ACTIVE_MATCH_REQUESTING_LATE_JOIN = 3;
266
+ ServerMatchmakingState_ACTIVE_MATCH = 4;
267
+ }
268
+
269
+ enum SurveyQuestionType {
270
+ QUESTION_MATCH_QUALITY = 0;
271
+ QUESTION_MAP_QUALITY = 1;
272
+ QUESTION_COMP_INQUIRY = 2;
273
+ QUESTION_CASUAL_INQUIRY = 3;
274
+ QUESTION_RANDOM_CRIT = 4;
275
+ }
276
+
277
+ message CMsgTFGoldenWrenchBroadcast {
278
+ optional int32 wrench_number = 1;
279
+ optional bool deleted = 2;
280
+ optional string user_name = 3;
281
+ }
282
+
283
+ message CMsgTFSaxxyBroadcast {
284
+ optional int32 category_number = 1;
285
+ optional string user_name = 2;
286
+ }
287
+
288
+ message CMsgGCTFSpecificItemBroadcast {
289
+ optional uint32 item_def_index = 1;
290
+ optional bool was_destruction = 2;
291
+ optional string user_name = 3;
292
+ }
293
+
294
+ message CMsgTFWorldStatus {
295
+ optional bool beta_stress_test_event_active = 1 [default = false];
296
+ optional .ETFMatchGroup event_match_group = 2 [default = k_eTFMatchGroup_Invalid];
297
+ optional fixed32 event_expire_time = 3 [default = 0];
298
+ optional uint32 active_client_version = 4;
299
+ repeated .ETFMatchGroup disabled_match_groups = 5;
300
+ }
301
+
302
+ message CSOTFDuelSummary {
303
+ optional uint32 account_id = 1 [(key_field) = true];
304
+ optional uint32 duel_wins = 2;
305
+ optional uint32 duel_losses = 3;
306
+ optional uint32 last_duel_account_id = 4;
307
+ optional uint32 last_duel_timestamp = 5;
308
+ optional uint32 last_duel_status = 6;
309
+ }
310
+
311
+ message CSOTFMapContribution {
312
+ optional uint32 account_id = 1 [(key_field) = true];
313
+ optional uint32 def_index = 2 [(key_field) = true];
314
+ optional uint32 contribution_level = 3;
315
+ }
316
+
317
+ message CMsgTFFreeTrialChooseMostHelpfulFriend {
318
+ optional uint32 account_id_friend = 1;
319
+ }
320
+
321
+ message CMsgTFRequestTF2Friends {
322
+ repeated uint32 account_ids = 1;
323
+ }
324
+
325
+ message CMsgTFRequestTF2FriendsResponse {
326
+ repeated uint32 account_ids = 1;
327
+ }
328
+
329
+ message CSOTFPlayerInfo {
330
+ optional uint32 num_new_users_helped = 1;
331
+ }
332
+
333
+ message CMsgTFThankedBySomeone {
334
+ optional uint64 thanker_steam_id = 1;
335
+ }
336
+
337
+ message CMsgTFThankedSomeone {
338
+ }
339
+
340
+ message CMsgTFFreeTrialConvertedToPremium {
341
+ }
342
+
343
+ message CMsgSaxxyAwarded {
344
+ optional uint32 category = 1;
345
+ repeated string winner_names = 2;
346
+ }
347
+
348
+ message CMsgReplaySubmitContestEntry {
349
+ optional string youtube_url = 1;
350
+ optional uint32 category = 2;
351
+ }
352
+
353
+ message CMsgReplaySubmitContestEntryResponse {
354
+ optional bool success = 1;
355
+ }
356
+
357
+ message CReplayCachedContestData {
358
+ optional fixed32 timestamp = 1;
359
+ optional uint32 num_votes_last_day = 2;
360
+ repeated uint32 video_entry_ids = 3;
361
+ optional uint32 num_flags_last_day = 4;
362
+ }
363
+
364
+ message CMsgTFCoaching_AddToCoaches {
365
+ }
366
+
367
+ message CMsgTFCoaching_RemoveFromCoaches {
368
+ }
369
+
370
+ message CMsgTFCoaching_FindCoach {
371
+ optional uint32 account_id_friend_as_coach = 1;
372
+ }
373
+
374
+ message CMsgTFCoaching_FindCoachResponse {
375
+ optional bool found_coach = 1;
376
+ optional uint32 num_likes = 2;
377
+ optional string coach_name = 3;
378
+ }
379
+
380
+ message CMsgTFCoaching_AskCoach {
381
+ optional uint32 account_id_student = 1;
382
+ optional bool student_is_friend = 2;
383
+ }
384
+
385
+ message CMsgTFCoaching_AskCoachResponse {
386
+ optional bool accept_coaching_assignment = 1;
387
+ }
388
+
389
+ message CMsgTFCoaching_CoachJoinGame {
390
+ optional bool join_game = 1;
391
+ optional uint32 server_address = 2;
392
+ optional uint32 server_port = 3;
393
+ optional uint32 account_id_student = 4;
394
+ }
395
+
396
+ message CMsgTFCoaching_CoachJoining {
397
+ optional uint32 account_id_coach = 1;
398
+ optional uint32 account_id_student = 2;
399
+ }
400
+
401
+ message CMsgTFCoaching_CoachJoined {
402
+ optional uint32 account_id_coach = 1;
403
+ }
404
+
405
+ message CMsgTFCoaching_LikeCurrentCoach {
406
+ optional bool like_coach = 1;
407
+ }
408
+
409
+ message CMsgTFCoaching_RemoveCurrentCoach {
410
+ optional uint32 account_id_coach = 1;
411
+ }
412
+
413
+ message CMsgTFQuickplay_ScoreServers {
414
+ message ServerInfo {
415
+ optional uint32 server_address = 1;
416
+ optional uint32 server_port = 2;
417
+ optional uint32 num_users = 3;
418
+ optional uint64 steam_id = 4;
419
+ optional uint32 max_users = 5;
420
+ optional float user_score = 6;
421
+ }
422
+
423
+ repeated .CMsgTFQuickplay_ScoreServers.ServerInfo servers = 1;
424
+ }
425
+
426
+ message CMsgTFQuickplay_ScoreServersResponse {
427
+ message ServerInfo {
428
+ optional uint32 server_address = 1;
429
+ optional uint32 server_port = 2;
430
+ optional float total_score = 3;
431
+ optional uint64 steam_id = 4;
432
+ optional uint32 options_score = 5;
433
+ }
434
+
435
+ repeated .CMsgTFQuickplay_ScoreServersResponse.ServerInfo servers = 1;
436
+ }
437
+
438
+ message CMsgTFQuickplay_PlayerJoining {
439
+ optional uint32 account_id = 1;
440
+ }
441
+
442
+ message CMsgGC_GameServer_LevelInfo {
443
+ optional bool level_loaded = 1;
444
+ optional string level_name = 2;
445
+ }
446
+
447
+ message CMsgGC_GameServer_AuthChallenge {
448
+ optional string challenge_string = 1;
449
+ }
450
+
451
+ message CMsgGC_GameServer_AuthResult {
452
+ optional bool authenticated = 1;
453
+ optional int32 game_server_standing = 2;
454
+ optional int32 game_server_standing_trend = 3;
455
+ optional bool is_valve_server = 4;
456
+ optional string message = 5;
457
+ }
458
+
459
+ message CMsgGC_GameServer_AuthChallengeResponse {
460
+ optional uint32 game_server_account_id = 1;
461
+ optional bytes hashed_challenge_string = 2;
462
+ }
463
+
464
+ message CMsgGC_GameServer_CreateIdentity {
465
+ optional uint32 account_id = 1;
466
+ }
467
+
468
+ message CMsgGC_GameServer_CreateIdentityResponse {
469
+ enum EStatus {
470
+ kStatus_GenericFailure = 0;
471
+ kStatus_TooMany = -1;
472
+ kStatus_NoPrivs = -2;
473
+ kStatus_Created = 1;
474
+ }
475
+
476
+ optional bool account_created = 1;
477
+ optional uint32 game_server_account_id = 2;
478
+ optional string game_server_identity_token = 3;
479
+ optional .CMsgGC_GameServer_CreateIdentityResponse.EStatus status = 4 [default = kStatus_GenericFailure];
480
+ }
481
+
482
+ message CMsgGC_GameServer_List {
483
+ optional uint32 account_id = 1;
484
+ }
485
+
486
+ message CMsgGC_GameServer_ListResponse {
487
+ message GameServerIdentity {
488
+ optional uint32 game_server_account_id = 1;
489
+ optional string game_server_identity_token = 2;
490
+ optional int32 game_server_standing = 3;
491
+ optional int32 game_server_standing_trend = 4;
492
+ }
493
+
494
+ repeated .CMsgGC_GameServer_ListResponse.GameServerIdentity owned_game_servers = 1;
495
+ }
496
+
497
+ message CMsgGC_GameServer_ResetIdentity {
498
+ optional uint32 game_server_account_id = 1;
499
+ }
500
+
501
+ message CMsgGC_GameServer_ResetIdentityResponse {
502
+ optional bool game_server_identity_token_reset = 1;
503
+ optional uint32 game_server_account_id = 2;
504
+ optional string game_server_identity_token = 3;
505
+ }
506
+
507
+ message CMsgGC_GameServer_AckPolicy {
508
+ }
509
+
510
+ message CMsgGC_GameServer_AckPolicyResponse {
511
+ optional uint32 result = 1;
512
+ optional string message = 2;
513
+ }
514
+
515
+ message CMsgGC_Client_UseServerModificationItem {
516
+ optional uint64 item_id = 1;
517
+ }
518
+
519
+ message CMsgGC_Client_UseServerModificationItem_Response {
520
+ enum EServerModificationItemResponse {
521
+ kServerModificationItemResponse_AlreadyInUse = 1;
522
+ kServerModificationItemResponse_NotOnAuthenticatedServer = 2;
523
+ kServerModificationItemResponse_ServerReject = 3;
524
+ kServerModificationItemResponse_InternalError = 4;
525
+ kServerModificationItemResponse_EventAlreadyActive = 5;
526
+ }
527
+
528
+ optional .CMsgGC_Client_UseServerModificationItem_Response.EServerModificationItemResponse response_code = 1 [default = kServerModificationItemResponse_AlreadyInUse];
529
+ }
530
+
531
+ message CMsgGC_GameServer_UseServerModificationItem {
532
+ optional .EServerModificationItemType modification_type = 1 [default = kGameServerModificationItem_Halloween];
533
+ }
534
+
535
+ message CMsgGC_GameServer_UseServerModificationItem_Response {
536
+ enum EServerModificationItemServerResponse {
537
+ kServerModificationItemServerResponse_Accepted = 1;
538
+ kServerModificationItemServerResponse_NoVoteCalled = 2;
539
+ kServerModificationItemServerResponse_VoteFailed = 3;
540
+ }
541
+
542
+ optional .EServerModificationItemType modification_type = 1 [default = kGameServerModificationItem_Halloween];
543
+ optional .CMsgGC_GameServer_UseServerModificationItem_Response.EServerModificationItemServerResponse server_response_code = 2 [default = kServerModificationItemServerResponse_Accepted];
544
+ }
545
+
546
+ message CMsgGC_GameServer_ServerModificationItemExpired {
547
+ optional .EServerModificationItemType modification_type = 1 [default = kGameServerModificationItem_Halloween];
548
+ }
549
+
550
+ message CMsgGC_GameServer_ServerModificationItem {
551
+ optional .EServerModificationItemType modification_type = 1 [default = kGameServerModificationItem_Halloween];
552
+ optional bool active = 2;
553
+ }
554
+
555
+ message CMsgGC_Halloween_ReservedItem {
556
+ repeated float x = 1;
557
+ repeated float y = 2;
558
+ repeated float z = 3;
559
+ optional uint32 spawn_meta_info = 7;
560
+ }
561
+
562
+ message CMsgGC_Halloween_GrantItem {
563
+ optional uint32 recipient_account_id = 1;
564
+ optional uint32 level_id = 2;
565
+ optional bool flagged = 3;
566
+ }
567
+
568
+ message CMsgGC_Halloween_GrantItemResponse {
569
+ optional uint32 recipient_account_id = 1;
570
+ }
571
+
572
+ message CMsgGC_Halloween_ItemClaimed {
573
+ }
574
+
575
+ message CMsgGC_PickupItemEligibility_Query {
576
+ optional uint32 account_id = 1;
577
+ optional uint32 seconds_ago = 2;
578
+ }
579
+
580
+ message CMsgGC_PickupItemEligibility_QueryResponse {
581
+ optional uint32 account_id = 1;
582
+ optional bool was_eligible = 2;
583
+ optional uint32 level_id = 3;
584
+ }
585
+
586
+ message CSOTFPartyMember {
587
+ message Activity {
588
+ optional fixed64 lobby_id = 1;
589
+ optional .ETFMatchGroup lobby_match_group = 2 [default = k_eTFMatchGroup_Invalid];
590
+ optional bool multiqueue_blocked = 3;
591
+ optional bool online = 4;
592
+ optional uint32 client_version = 5;
593
+ }
594
+
595
+ optional bool owns_ticket = 2;
596
+ optional uint32 completed_missions = 3;
597
+ optional uint32 badge_level = 4;
598
+ optional bool competitive_access = 9;
599
+ optional uint32 experience = 14;
600
+ optional .CTFPerPlayerMatchCriteriaProto player_criteria = 16;
601
+ optional .CSOTFPartyMember.Activity activity = 17;
602
+ optional bool casual_banned = 18;
603
+ optional bool ranked_banned = 19;
604
+ optional bool casual_low_priority = 20;
605
+ optional bool ranked_low_priority = 21;
606
+ optional bool lobby_standby = 22;
607
+ }
608
+
609
+ message TFPendingPartyMember {
610
+ enum EType {
611
+ Invited = 0;
612
+ RequestedToJoin = 1;
613
+ }
614
+
615
+ optional fixed64 steamid = 1;
616
+ optional .TFPendingPartyMember.EType type = 2 [default = Invited];
617
+ optional fixed64 inviter = 3;
618
+ }
619
+
620
+ message TFSyncedMMUIState {
621
+ optional .ETFSyncedMMMenuStep menu_step = 1 [default = k_eTFSyncedMMMenuStep_None];
622
+ optional .ETFMatchGroup match_group = 2 [default = k_eTFMatchGroup_Invalid];
623
+ }
624
+
625
+ message CTFGroupMatchCriteriaProto {
626
+ optional bool late_join_ok = 5;
627
+ optional uint32 custom_ping_tolerance = 13 [default = 0];
628
+ optional string mvm_mannup_tour = 10;
629
+ repeated string mvm_mannup_missions = 15;
630
+ repeated string mvm_bootcamp_missions = 16;
631
+ optional .CTFCasualMatchCriteria casual_criteria = 12;
632
+ }
633
+
634
+ message CTFCasualMatchCriteria {
635
+ repeated fixed32 selected_maps_bits = 3;
636
+ }
637
+
638
+ message CTFPerPlayerMatchCriteriaProto {
639
+ optional bool mvm_squad_surplus = 1;
640
+ }
641
+
642
+ message CTFPartyOptions {
643
+ optional bool overwrite_existing = 1;
644
+ optional .CTFGroupMatchCriteriaProto group_criteria = 2;
645
+ optional .CTFPerPlayerMatchCriteriaProto player_criteria = 3;
646
+ optional .TFSyncedMMUIState player_uistate = 5;
647
+ }
648
+
649
+ message CMsgPartySetOptions {
650
+ optional fixed64 party_id = 1;
651
+ optional .CTFPartyOptions options = 2;
652
+ }
653
+
654
+ message CMsgPartySetOptionsResponse {
655
+ }
656
+
657
+ message CMsgPartyQueueForMatch {
658
+ optional fixed64 party_id = 1;
659
+ optional .CTFPartyOptions final_options = 2;
660
+ optional .ETFMatchGroup match_group = 3 [default = k_eTFMatchGroup_Invalid];
661
+ }
662
+
663
+ message CMsgPartyQueueForMatchResponse {
664
+ }
665
+
666
+ message CMsgPartyQueueForStandby {
667
+ optional fixed64 party_id = 1;
668
+ optional fixed64 party_lobby_id = 2;
669
+ }
670
+
671
+ message CMsgPartyQueueForStandbyResponse {
672
+ }
673
+
674
+ message CMsgPartyRemoveFromQueue {
675
+ optional fixed64 party_id = 1;
676
+ optional .ETFMatchGroup match_group = 2 [default = k_eTFMatchGroup_Invalid];
677
+ }
678
+
679
+ message CMsgPartyRemoveFromQueueResponse {
680
+ }
681
+
682
+ message CMsgPartyRemoveFromStandbyQueue {
683
+ optional fixed64 party_id = 1;
684
+ }
685
+
686
+ message CMsgPartyRemoveFromStandbyQueueResponse {
687
+ }
688
+
689
+ message CMsgPartyInvitePlayer {
690
+ optional fixed64 party_id = 1;
691
+ optional fixed64 player_id = 2;
692
+ optional bool expecting_request_to_join = 3;
693
+ }
694
+
695
+ message CMsgPartyRequestJoinPlayer {
696
+ optional fixed64 current_party_id = 1;
697
+ optional fixed64 join_player_id = 2;
698
+ optional fixed64 join_party_id = 3;
699
+ optional bool expecting_invite = 4;
700
+ }
701
+
702
+ message CMsgPartyClearPendingPlayer {
703
+ optional fixed64 party_id = 1;
704
+ optional fixed64 pending_player_id = 2;
705
+ }
706
+
707
+ message CMsgPartyClearPendingPlayerResponse {
708
+ }
709
+
710
+ message CMsgPartyClearOtherPartyRequest {
711
+ optional fixed64 other_party_id = 1;
712
+ }
713
+
714
+ message CMsgPartyClearOtherPartyRequestResponse {
715
+ }
716
+
717
+ message CMsgPartyPromoteToLeader {
718
+ optional fixed64 party_id = 1;
719
+ optional fixed64 new_leader_id = 2;
720
+ }
721
+
722
+ message CMsgPartyKickMember {
723
+ optional fixed64 party_id = 1;
724
+ optional fixed64 target_id = 2;
725
+ }
726
+
727
+ message CMsgPartySendChat {
728
+ optional fixed64 party_id = 1;
729
+ optional string msg = 2;
730
+ }
731
+
732
+ message CMsgPartyChatMsg {
733
+ optional .ETFPartyChatType type = 1 [default = k_eTFPartyChatType_Invalid];
734
+ optional fixed64 actor_id = 2;
735
+ optional string msg = 3;
736
+ }
737
+
738
+ message CSOTFParty {
739
+ message QueueEntry {
740
+ optional .ETFMatchGroup match_group = 1 [default = k_eTFMatchGroup_Invalid];
741
+ optional fixed32 queued_time = 2;
742
+ }
743
+
744
+ optional uint64 party_id = 1 [(key_field) = true];
745
+ optional fixed64 leader_id = 2;
746
+ repeated fixed64 member_ids = 3;
747
+ repeated .CSOTFPartyMember members = 13;
748
+ optional uint64 associated_lobby_id = 35;
749
+ optional .ETFMatchGroup associated_lobby_match_group = 40 [default = k_eTFMatchGroup_Invalid];
750
+ repeated .CSOTFParty.QueueEntry matchmaking_queues = 43;
751
+ optional .CTFGroupMatchCriteriaProto group_criteria = 37;
752
+ optional uint32 casual_banned_time = 18;
753
+ optional uint32 casual_low_priority_time = 20;
754
+ optional uint32 ranked_banned_time = 41;
755
+ optional uint32 ranked_low_priority_time = 42;
756
+ optional .TFSyncedMMUIState leader_ui_state = 44;
757
+ repeated .TFPendingPartyMember pending_members = 39;
758
+ }
759
+
760
+ message CSOTFPartyInvite {
761
+ message PartyMember {
762
+ optional fixed64 steamid = 2;
763
+ }
764
+
765
+ enum Type {
766
+ PENDING_INVITE = 1;
767
+ PENDING_JOIN_REQUEST = 2;
768
+ }
769
+
770
+ optional uint64 group_id = 1 [(key_field) = true];
771
+ optional fixed64 inviter = 2;
772
+ repeated .CSOTFPartyInvite.PartyMember members = 4;
773
+ optional .CSOTFPartyInvite.Type type = 5 [default = PENDING_INVITE];
774
+ }
775
+
776
+ message CTFLobbyPlayerProto {
777
+ enum ConnectState {
778
+ INVALID = 0;
779
+ RESERVATION_PENDING = 1;
780
+ RESERVED = 2;
781
+ CONNECTED = 3;
782
+ DISCONNECTED = 5;
783
+ }
784
+
785
+ enum Type {
786
+ INVALID_PLAYER = 0;
787
+ MATCH_PLAYER = 1;
788
+ STANDBY_PLAYER = 2;
789
+ OBSERVING_PLAYER = 3;
790
+ }
791
+
792
+ optional fixed64 id = 1 [(key_field) = true];
793
+ optional .TF_GC_TEAM team = 3 [default = TF_GC_TEAM_DEFENDERS];
794
+ optional .CTFLobbyPlayerProto.ConnectState connect_state = 13 [default = INVALID];
795
+ optional string name = 6;
796
+ optional uint64 original_party_id = 12;
797
+ optional bool squad_surplus = 14;
798
+ optional uint32 badge_level = 15;
799
+ optional uint32 last_connect_time = 17;
800
+ optional .CTFLobbyPlayerProto.Type type = 19 [default = INVALID_PLAYER];
801
+ optional double normalized_rating = 20;
802
+ optional double normalized_uncertainty = 22;
803
+ optional uint32 rank = 21;
804
+ optional bool chat_suspension = 23;
805
+ }
806
+
807
+ message CTFLobbyInviteProto {
808
+ optional fixed64 lobby_id = 1 [(key_field) = true];
809
+ optional .ETFMatchGroup match_group = 2 [default = k_eTFMatchGroup_Invalid];
810
+ }
811
+
812
+ message CSOTFGameServerLobby {
813
+ enum State {
814
+ UNKNOWN = 0;
815
+ SERVERSETUP = 1;
816
+ RUN = 2;
817
+ }
818
+
819
+ enum WarMatch {
820
+ NOPE = 0;
821
+ INVADERS_ARE_PYRO = 1;
822
+ INVADERS_ARE_HEAVY = 2;
823
+ }
824
+
825
+ optional uint64 lobby_id = 1 [(key_field) = true];
826
+ repeated .CTFLobbyPlayerProto members = 2;
827
+ optional fixed64 server_id = 6 [default = 0];
828
+ optional .CSOTFGameServerLobby.State state = 4 [default = UNKNOWN];
829
+ optional string connect = 5;
830
+ optional .TF_GC_GameState game_state = 22 [default = TF_GC_GAMESTATE_STATE_INIT];
831
+ optional double initial_average_mm_rating = 32;
832
+ optional string mannup_tour_name = 42;
833
+ optional string map_name = 38;
834
+ optional string mission_name = 39;
835
+ optional uint32 match_group = 41;
836
+ optional uint64 match_id = 30 [default = 0];
837
+ optional uint32 formed_time = 36;
838
+ optional uint32 flags = 43;
839
+ optional bool late_join_eligible = 44;
840
+ optional uint32 fixed_match_size = 45;
841
+ optional .CSOTFGameServerLobby.WarMatch is_war_match = 46 [default = NOPE];
842
+ repeated uint32 next_maps_for_vote = 47;
843
+ optional uint32 lobby_mm_version = 48;
844
+ repeated .CTFLobbyPlayerProto pending_members = 49;
845
+ }
846
+
847
+ message CMsgExitMatchmaking {
848
+ optional bool explicit_abandon = 1;
849
+ optional uint64 party_id = 2;
850
+ optional uint64 lobby_id = 3;
851
+ }
852
+
853
+ message CMsgAcceptLobbyInvite {
854
+ optional uint64 invited_lobby_id = 1;
855
+ optional uint64 abandoning_match_id = 2;
856
+ repeated uint64 abandoning_invite_lobby_ids = 3;
857
+ }
858
+
859
+ message CMsgAcceptLobbyInviteReply {
860
+ }
861
+
862
+ message CMsgMatchmakingSearchCountRequest {
863
+ }
864
+
865
+ message CMsgMatchmakingSearchCountResponse {
866
+ repeated uint32 searching_players_by_group = 1;
867
+ }
868
+
869
+ message CMsgKickedFromMatchmakingQueue {
870
+ }
871
+
872
+ message CMsgGameServerMatchmakingStatus {
873
+ message Player {
874
+ optional fixed64 steam_id = 1;
875
+ optional .CMsgGameServerMatchmakingStatus.PlayerConnectState connect_state = 2 [default = INVALID];
876
+ }
877
+
878
+ enum PlayerConnectState {
879
+ INVALID = 0;
880
+ CONNECTED = 1;
881
+ RESERVED = 2;
882
+ }
883
+
884
+ enum Event {
885
+ None = 0;
886
+ MvMVictory = 1;
887
+ MvMDefeat = 2;
888
+ AcknowledgePlayers = 3;
889
+ }
890
+
891
+ optional uint32 server_version = 16 [default = 1225];
892
+ optional .ServerMatchmakingState matchmaking_state = 1 [default = ServerMatchmakingState_INVALID];
893
+ optional string map = 3;
894
+ optional string tags = 4;
895
+ optional uint32 bot_count = 5;
896
+ optional uint32 num_spectators = 6;
897
+ optional uint32 max_players = 7;
898
+ optional uint32 slots_free = 8;
899
+ optional uint32 server_region = 9;
900
+ optional float server_loadavg = 10;
901
+ optional bool server_trusted = 11;
902
+ optional bool server_dedicated = 12;
903
+ optional uint32 strict = 17;
904
+ optional string fake_ip = 25;
905
+ repeated .CMsgGameServerMatchmakingStatus.Player players = 13;
906
+ optional .TF_GC_GameState game_state = 14 [default = TF_GC_GAMESTATE_STATE_INIT];
907
+ optional .CMsgGameServerMatchmakingStatus.Event event = 15 [default = None];
908
+ optional uint32 mvm_wave = 18;
909
+ optional uint32 mvm_credits_acquired = 19;
910
+ optional uint32 mvm_credits_dropped = 20;
911
+ optional sint32 match_group = 23 [default = -1];
912
+ optional uint32 lobby_mm_version = 24;
913
+ }
914
+
915
+ message CMsgMatchmakingProgress {
916
+ optional uint32 avg_wait_time_new = 4;
917
+ optional uint32 avg_wait_time_join_late = 5;
918
+ optional uint32 your_wait_time = 6;
919
+ optional uint32 matching_worldwide_searching_players = 8;
920
+ optional uint32 matching_near_you_searching_players = 9;
921
+ optional uint32 total_worldwide_searching_players = 13;
922
+ optional uint32 total_near_you_searching_players = 14;
923
+ optional uint32 matching_worldwide_active_players = 15;
924
+ optional uint32 matching_near_you_active_players = 16;
925
+ optional uint32 total_worldwide_active_players = 17;
926
+ optional uint32 total_near_you_active_players = 18;
927
+ optional uint32 matching_worldwide_empty_gameservers = 19;
928
+ optional uint32 matching_near_you_empty_gameservers = 20;
929
+ optional uint32 total_worldwide_empty_gameservers = 21;
930
+ optional uint32 total_near_you_empty_gameservers = 22;
931
+ optional uint32 urgency_pct = 1;
932
+ }
933
+
934
+ message CMsgMvMVictoryInfo {
935
+ message Item {
936
+ optional .CMsgMvMVictoryInfo.GrantReason grant_reason = 1 [default = INVALID];
937
+ optional bytes item_data = 2;
938
+ optional fixed64 squad_surplus_claimer_steam_id = 3;
939
+ }
940
+
941
+ message Player {
942
+ optional fixed64 steam_id = 1;
943
+ optional bool badge_granted = 3;
944
+ optional bool badge_progress_updated = 4;
945
+ optional bool badge_leveled = 5;
946
+ optional uint32 badge_level = 6;
947
+ optional uint32 badge_progress_bits = 7;
948
+ repeated .CMsgMvMVictoryInfo.Item items = 8;
949
+ optional bool voucher_missing = 9;
950
+ optional uint32 badge_points = 10;
951
+ }
952
+
953
+ enum GrantReason {
954
+ INVALID = 0;
955
+ BADGE_LEVELED = 1;
956
+ SQUAD_SURPLUS = 2;
957
+ MANN_UP = 3;
958
+ HELP_A_NOOB = 4;
959
+ }
960
+
961
+ repeated .CMsgMvMVictoryInfo.Player players = 1;
962
+ optional string tour_name = 2;
963
+ optional string mission_name = 3;
964
+ }
965
+
966
+ message CGCMsgTFHelloResponse {
967
+ optional uint32 version_check = 1;
968
+ repeated uint64 version_checksum = 2;
969
+ optional uint32 version_verbose = 3;
970
+ }
971
+
972
+ message CGCMsgTFSync {
973
+ optional bytes version_checksum = 1;
974
+ optional uint32 version_check = 2;
975
+ optional uint32 version_check_ex = 3;
976
+ optional uint32 version_check_ex2 = 4;
977
+ optional bytes version_checksum_ex = 5;
978
+ }
979
+
980
+ message CGCMsgTFSyncEx {
981
+ optional string version_checksum = 1;
982
+ optional bytes version_checksum_ex = 2;
983
+ optional uint32 version_check = 3;
984
+ }
985
+
986
+ message CMsgMvMVictory {
987
+ message Player {
988
+ optional fixed64 steam_id = 1;
989
+ optional bool squad_surplus = 2;
990
+ }
991
+
992
+ optional uint32 legacy_mission_index = 1;
993
+ optional string tour_name_mannup = 5;
994
+ optional string mission_name = 6;
995
+ repeated .CMsgMvMVictory.Player players = 2;
996
+ optional uint64 lobby_id = 3;
997
+ optional fixed32 event_time = 4;
998
+ }
999
+
1000
+ message CMsgMvMMannUpVictoryReply {
1001
+ }
1002
+
1003
+ message CMsgGameServerKickingLobby {
1004
+ optional uint64 lobby_id = 3;
1005
+ optional uint64 match_id = 4;
1006
+ }
1007
+
1008
+ message CMsgGameServerKickingLobbyResponse {
1009
+ }
1010
+
1011
+ message CMsgLeaveGameAndPrepareToJoinParty {
1012
+ optional fixed64 party_id = 1;
1013
+ }
1014
+
1015
+ message CMsgPlayerLeftMatch {
1016
+ optional fixed64 steam_id = 1;
1017
+ optional .TFMatchLeaveReason leave_reason = 2 [default = TFMatchLeaveReason_UNSPECIFIED];
1018
+ optional bool was_abandon = 3;
1019
+ optional uint64 lobby_id = 4;
1020
+ optional uint64 match_id = 5;
1021
+ repeated .CMsgTFXPSource xp_breakdown = 6;
1022
+ }
1023
+
1024
+ message CMsgPlayerLeftMatchResponse {
1025
+ }
1026
+
1027
+ message CMsgProcessMatchVoteKick {
1028
+ message Vote {
1029
+ optional fixed64 steam_id = 1;
1030
+ optional bool vote_yay = 2;
1031
+ }
1032
+
1033
+ optional fixed64 match_id = 1;
1034
+ optional fixed64 initiator_steam_id = 2;
1035
+ optional fixed64 target_steam_id = 3;
1036
+ optional .TFVoteKickReason reason = 4 [default = TFVoteKickReason_Other];
1037
+ repeated .CMsgProcessMatchVoteKick.Vote votes = 5;
1038
+ optional bool default_pass = 6;
1039
+ }
1040
+
1041
+ message CMsgProcessMatchVoteKickResponse {
1042
+ optional bool rip = 1;
1043
+ }
1044
+
1045
+ message CMsgPlayerVoteKickedAfterLeavingMatchResponse {
1046
+ }
1047
+
1048
+ message CMsgHalloween_ServerBossEvent {
1049
+ optional uint32 event_counter = 1;
1050
+ optional uint32 timestamp = 2;
1051
+ optional uint32 boss_type = 3;
1052
+ optional uint32 boss_level = 4;
1053
+ optional uint32 event_type = 5;
1054
+ optional uint32 players_involved = 6;
1055
+ optional float elapsed_time = 7;
1056
+ }
1057
+
1058
+ message CMsgHalloween_Merasmus2012 {
1059
+ optional uint32 event_counter = 1;
1060
+ optional fixed32 time_submitted = 2;
1061
+ optional bool is_valve_server = 3;
1062
+ optional uint32 boss_level = 4;
1063
+ optional uint32 spawned_health = 5;
1064
+ optional uint32 remaining_health = 6;
1065
+ optional uint32 life_time = 7;
1066
+ optional uint32 bomb_kills = 8;
1067
+ optional uint32 staff_kills = 9;
1068
+ optional uint32 pvp_kills = 10;
1069
+ optional uint32 prophunt_time1 = 11;
1070
+ optional uint32 prophunt_time2 = 12;
1071
+ optional uint32 dmg_scout = 13;
1072
+ optional uint32 dmg_sniper = 14;
1073
+ optional uint32 dmg_soldier = 15;
1074
+ optional uint32 dmg_demo = 16;
1075
+ optional uint32 dmg_medic = 17;
1076
+ optional uint32 dmg_heavy = 18;
1077
+ optional uint32 dmg_pyro = 19;
1078
+ optional uint32 dmg_spy = 20;
1079
+ optional uint32 dmg_engineer = 21;
1080
+ optional uint32 scout_count = 22;
1081
+ optional uint32 sniper_count = 23;
1082
+ optional uint32 solider_count = 24;
1083
+ optional uint32 demo_count = 25;
1084
+ optional uint32 medic_count = 26;
1085
+ optional uint32 heavy_count = 27;
1086
+ optional uint32 pyro_count = 28;
1087
+ optional uint32 spy_count = 29;
1088
+ optional uint32 engineer_count = 30;
1089
+ }
1090
+
1091
+ message CMsgUpdateHalloweenMerasmusLootLevel {
1092
+ message Player {
1093
+ optional fixed64 steam_id = 1;
1094
+ }
1095
+
1096
+ repeated .CMsgUpdateHalloweenMerasmusLootLevel.Player players = 1;
1097
+ optional uint32 merasmus_level = 2;
1098
+ }
1099
+
1100
+ message CAttribute_String {
1101
+ optional string value = 1;
1102
+ }
1103
+
1104
+ message CAttribute_DynamicRecipeComponent {
1105
+ optional uint32 def_index = 1;
1106
+ optional uint32 item_quality = 2;
1107
+ optional uint32 component_flags = 3;
1108
+ optional string attributes_string = 4;
1109
+ optional uint32 num_required = 5;
1110
+ optional uint32 num_fulfilled = 6;
1111
+ }
1112
+
1113
+ message CAttribute_DynamicRecipeComponent_COMPAT_NEVER_SERIALIZE_THIS_OUT {
1114
+ optional uint32 def_index = 1;
1115
+ optional uint32 item_def = 2;
1116
+ optional uint32 item_quality = 3;
1117
+ optional uint32 component_flags = 4;
1118
+ optional uint32 item_flags = 5;
1119
+ optional string attributes_string = 6;
1120
+ optional uint32 num_required = 7;
1121
+ optional uint32 item_count = 8;
1122
+ optional uint32 num_fulfilled = 9;
1123
+ optional uint32 items_fulfilled = 10;
1124
+ }
1125
+
1126
+ message CAttribute_ItemSlotCriteria {
1127
+ optional string tags = 1;
1128
+ }
1129
+
1130
+ message CMsgSetItemSlotAttribute {
1131
+ optional uint64 item_id = 1;
1132
+ optional uint64 slot_item_original_id = 2;
1133
+ optional uint32 slot_index = 3;
1134
+ }
1135
+
1136
+ message CSOWarData {
1137
+ optional uint32 account_id = 1 [(key_field) = true];
1138
+ optional uint32 war_id = 2 [(key_field) = true];
1139
+ optional uint32 affiliation = 3;
1140
+ optional uint32 points_scored = 4;
1141
+ }
1142
+
1143
+ message CGCMsgGC_War_IndividualUpdate {
1144
+ optional fixed64 steam_id = 1;
1145
+ optional uint32 war_id = 2;
1146
+ optional uint32 score = 3;
1147
+ }
1148
+
1149
+ message CGCMsgGC_War_JoinWar {
1150
+ optional uint32 affiliation = 1;
1151
+ optional uint32 war_id = 2;
1152
+ }
1153
+
1154
+ message CGCMsgGC_War_RequestGlobalStats {
1155
+ optional uint32 war_id = 1;
1156
+ }
1157
+
1158
+ message CGCMsgGC_War_GlobalStatsResponse {
1159
+ message SideScore {
1160
+ optional uint32 side = 1;
1161
+ optional uint64 score = 2;
1162
+ }
1163
+
1164
+ repeated .CGCMsgGC_War_GlobalStatsResponse.SideScore side_scores = 1;
1165
+ optional uint32 war_id = 2;
1166
+ }
1167
+
1168
+ message CGCMsgGC_PlayerDuckLeaderboard_IndividualUpdate {
1169
+ optional uint32 score = 2;
1170
+ optional uint32 type = 3;
1171
+ optional bytes score_id = 4;
1172
+ optional uint32 score_check = 5;
1173
+ }
1174
+
1175
+ message CAttribute_WorldItemPlacement {
1176
+ optional uint64 original_item_id = 1;
1177
+ optional float pos_x = 2;
1178
+ optional float pos_y = 3;
1179
+ optional float pos_z = 4;
1180
+ optional float ang_x = 5;
1181
+ optional float ang_y = 6;
1182
+ optional float ang_z = 7;
1183
+ }
1184
+
1185
+ message CGCMsg_WorldItemPlacement_Update {
1186
+ optional uint64 original_item_id = 1;
1187
+ optional float pos_x = 2;
1188
+ optional float pos_y = 3;
1189
+ optional float pos_z = 4;
1190
+ optional float ang_x = 5;
1191
+ optional float ang_y = 6;
1192
+ optional float ang_z = 7;
1193
+ optional bool force_remove_all = 8;
1194
+ optional string attrib_name = 9;
1195
+ }
1196
+
1197
+ message CMsgAcknowledgeXP {
1198
+ optional int32 match_group = 1;
1199
+ optional uint32 predicted_experience = 2;
1200
+ }
1201
+
1202
+ message CMsgTFXPSource {
1203
+ enum XPSourceType {
1204
+ SOURCE_SCORE = 0;
1205
+ SOURCE_OBJECTIVE_BONUS = 1;
1206
+ SOURCE_COMPLETED_MATCH = 2;
1207
+ SOURCE_COMPETITIVE_ABANDON = 3;
1208
+ SOURCE_COMPETITIVE_WIN = 4;
1209
+ SOURCE_COMPETITIVE_LOSS = 5;
1210
+ SOURCE_AUTOBALANCE_BONUS = 6;
1211
+ SOURCE_PRESTIGE_BONUS = 7;
1212
+ }
1213
+
1214
+ optional .CMsgTFXPSource.XPSourceType type = 1 [default = SOURCE_SCORE, (key_field) = true];
1215
+ optional int32 amount = 2;
1216
+ optional int32 match_group = 3;
1217
+ optional uint32 account_id = 4 [(key_field) = true];
1218
+ optional uint64 match_id = 5 [(key_field) = true];
1219
+ }
1220
+
1221
+ message CMsgTFXPSourceBreakdown {
1222
+ repeated .CMsgTFXPSource sources = 1;
1223
+ }
1224
+
1225
+ message CMsgTFClientInit {
1226
+ optional uint32 client_version = 1;
1227
+ optional int32 language = 2;
1228
+ }
1229
+
1230
+ message CMsgGCNotification {
1231
+ enum NotificationType {
1232
+ NOTIFICATION_REPORTED_PLAYER_BANNED = 0;
1233
+ NOTIFICATION_CUSTOM_STRING = 1;
1234
+ NOTIFICATION_MM_BAN_DUE_TO_EXCESSIVE_REPORTS = 2;
1235
+ NOTIFICATION_REPORTED_PLAYER_WAS_BANNED = 3;
1236
+ NOTIFICATION_SUPPORT_MESSAGE = 4;
1237
+ NOTIFICATION_NUM_TYPES = 5;
1238
+ }
1239
+
1240
+ optional uint64 notification_id = 1 [(key_field) = true];
1241
+ optional uint32 account_id = 2;
1242
+ optional fixed32 expiration_time = 3;
1243
+ optional .CMsgGCNotification.NotificationType type = 4 [default = NOTIFICATION_CUSTOM_STRING];
1244
+ optional string notification_string = 5;
1245
+ }
1246
+
1247
+ message CMsgGCNotificationQueue {
1248
+ repeated .CMsgGCNotification notifications = 1;
1249
+ }
1250
+
1251
+ message CMsgNotificationAcknowledge {
1252
+ optional uint32 account_id = 1;
1253
+ optional uint64 notification_id = 2;
1254
+ }
1255
+
1256
+ message CMsgNotificationAcknowledgeReply {
1257
+ }
1258
+
1259
+ message CMsgGC_Match_Result {
1260
+ message Player {
1261
+ optional fixed64 steam_id = 1;
1262
+ optional uint64 original_party_id = 2;
1263
+ optional uint32 team = 3;
1264
+ optional uint32 score = 4;
1265
+ optional uint32 ping = 5;
1266
+ optional uint32 flags = 6;
1267
+ optional uint32 rank = 9;
1268
+ optional uint32 classes_played = 10;
1269
+ optional uint32 kills = 11;
1270
+ optional uint32 deaths = 12;
1271
+ optional uint32 damage = 13;
1272
+ optional uint32 healing = 14;
1273
+ optional uint32 support = 15;
1274
+ optional uint32 score_medal = 16;
1275
+ optional uint32 kills_medal = 17;
1276
+ optional uint32 damage_medal = 18;
1277
+ optional uint32 healing_medal = 19;
1278
+ optional uint32 support_medal = 20;
1279
+ repeated .CMsgTFXPSource xp_breakdown = 21;
1280
+ optional uint32 leave_time = 22;
1281
+ optional .TFMatchLeaveReason leave_reason = 23 [default = TFMatchLeaveReason_UNSPECIFIED];
1282
+ optional uint32 connect_time = 24;
1283
+ }
1284
+
1285
+ enum Status {
1286
+ MATCH_SUCCEEDED = 0;
1287
+ MATCH_FAILED_GC = 1;
1288
+ MATCH_FAILED_TRUSTED = 2;
1289
+ MATCH_FAILED_ABANDON = 3;
1290
+ MATCH_FAILED_UNKNOWN = 5;
1291
+ MATCH_FAILED_TIMEOUT = 6;
1292
+ MATCH_FINISHED_ABANDON = 7;
1293
+ }
1294
+
1295
+ optional uint64 match_id = 1 [(key_field) = true];
1296
+ optional int32 match_group = 2;
1297
+ optional .CMsgGC_Match_Result.Status status = 3 [default = MATCH_SUCCEEDED];
1298
+ optional uint32 duration = 4;
1299
+ optional uint32 red_score = 5;
1300
+ optional uint32 blue_score = 6;
1301
+ optional uint32 winning_team = 7;
1302
+ optional uint32 map_index = 8;
1303
+ optional uint32 game_type = 9 [default = 0];
1304
+ repeated .CMsgGC_Match_Result.Player players = 10;
1305
+ optional uint32 win_reason = 13;
1306
+ optional uint32 flags = 14;
1307
+ optional uint32 bots = 16;
1308
+ }
1309
+
1310
+ message CMsgGC_Match_ResultResponse {
1311
+ }
1312
+
1313
+ message CEconItemPreviewDataBlock {
1314
+ optional .CSOEconItem econitem = 1;
1315
+ }
1316
+
1317
+ message CMsgGC_Client2GCEconPreviewDataBlockRequest {
1318
+ optional uint64 param_s = 1;
1319
+ optional uint64 param_a = 2;
1320
+ optional uint64 param_d = 3;
1321
+ optional uint64 param_m = 4;
1322
+ }
1323
+
1324
+ message CMsgGC_Client2GCEconPreviewDataBlockResponse {
1325
+ optional .CEconItemPreviewDataBlock iteminfo = 1;
1326
+ }
1327
+
1328
+ message CSOTFLadderPlayerStats {
1329
+ optional uint32 account_id = 1 [(key_field) = true];
1330
+ optional int32 match_group = 2 [(key_field) = true];
1331
+ optional uint32 season_id = 3 [(key_field) = true];
1332
+ optional uint32 games = 9;
1333
+ optional uint32 score = 10;
1334
+ optional uint32 kills = 11;
1335
+ optional uint32 deaths = 12;
1336
+ optional uint32 damage = 13;
1337
+ optional uint32 healing = 14;
1338
+ optional uint32 support = 15;
1339
+ optional uint32 score_bronze = 16;
1340
+ optional uint32 score_silver = 17;
1341
+ optional uint32 score_gold = 18;
1342
+ optional uint32 kills_bronze = 19;
1343
+ optional uint32 kills_silver = 20;
1344
+ optional uint32 kills_gold = 21;
1345
+ optional uint32 damage_bronze = 22;
1346
+ optional uint32 damage_silver = 23;
1347
+ optional uint32 damage_gold = 24;
1348
+ optional uint32 healing_bronze = 25;
1349
+ optional uint32 healing_silver = 26;
1350
+ optional uint32 healing_gold = 27;
1351
+ optional uint32 support_bronze = 28;
1352
+ optional uint32 support_silver = 29;
1353
+ optional uint32 support_gold = 30;
1354
+ }
1355
+
1356
+ message CSOTFRatingData {
1357
+ optional uint32 account_id = 1 [(key_field) = true];
1358
+ optional int32 rating_type = 2 [(key_field) = true];
1359
+ optional uint32 rating_primary = 3;
1360
+ optional uint32 rating_secondary = 4;
1361
+ optional uint32 rating_tertiary = 5;
1362
+ }
1363
+
1364
+ message CMsgGC_TFVoteKickPlayerRequest {
1365
+ optional uint64 target_id = 2;
1366
+ optional uint64 voter_id = 3;
1367
+ optional .TFVoteKickReason reason = 4 [default = TFVoteKickReason_Other];
1368
+ optional uint64 match_id = 5;
1369
+ }
1370
+
1371
+ message CMsgGC_VoteKickPlayerRequestResponse {
1372
+ optional bool allowed = 1;
1373
+ optional bool voter_inhibit = 3;
1374
+ optional bool target_inhibit = 4;
1375
+ }
1376
+
1377
+ message CMsgGC_DailyCompetitiveStatsRollup {
1378
+ }
1379
+
1380
+ message CMsgGC_DailyCompetitiveStatsRollup_Response {
1381
+ message RankBucketEntry {
1382
+ optional uint32 rank = 1;
1383
+ optional uint32 records = 2;
1384
+ optional uint32 avg_score = 3;
1385
+ optional uint32 stdev_score = 4;
1386
+ optional uint32 avg_kills = 5;
1387
+ optional uint32 stdev_kills = 6;
1388
+ optional uint32 avg_damage = 7;
1389
+ optional uint32 stdev_damage = 8;
1390
+ optional uint32 avg_healing = 9;
1391
+ optional uint32 stdev_healing = 10;
1392
+ optional uint32 avg_support = 11;
1393
+ optional uint32 stdev_support = 12;
1394
+ }
1395
+
1396
+ repeated .CMsgGC_DailyCompetitiveStatsRollup_Response.RankBucketEntry rankdata = 1;
1397
+ }
1398
+
1399
+ message CMsgGC_ReportPlayer {
1400
+ enum EReason {
1401
+ kReason_INVALID = 0;
1402
+ kReason_CHEATING = 1;
1403
+ kReason_IDLE = 2;
1404
+ kReason_HARASSMENT = 3;
1405
+ kReason_GRIEFING = 4;
1406
+ kReason_COUNT = 5;
1407
+ }
1408
+
1409
+ optional uint32 account_id_target = 1;
1410
+ optional .CMsgGC_ReportPlayer.EReason reason = 2 [default = kReason_INVALID];
1411
+ }
1412
+
1413
+ message CSOTFMatchResultPlayerStats {
1414
+ optional uint64 match_id = 1 [(key_field) = true];
1415
+ optional uint32 account_id = 2 [(key_field) = true];
1416
+ optional int32 match_group = 3 [(key_field) = true];
1417
+ optional uint32 endtime = 4;
1418
+ optional uint32 season_id = 5;
1419
+ optional uint32 status = 6;
1420
+ optional uint32 original_party_id = 7;
1421
+ optional uint32 team = 8;
1422
+ optional uint32 score = 9;
1423
+ optional uint32 ping = 10;
1424
+ optional uint32 flags = 11;
1425
+ optional uint32 display_rating = 12;
1426
+ optional int32 display_rating_change = 13;
1427
+ optional uint32 rank = 14;
1428
+ optional uint32 classes_played = 15;
1429
+ optional uint32 kills = 16;
1430
+ optional uint32 deaths = 17;
1431
+ optional uint32 damage = 18;
1432
+ optional uint32 healing = 19;
1433
+ optional uint32 support = 20;
1434
+ optional uint32 score_medal = 21;
1435
+ optional uint32 kills_medal = 22;
1436
+ optional uint32 damage_medal = 23;
1437
+ optional uint32 healing_medal = 24;
1438
+ optional uint32 support_medal = 25;
1439
+ optional uint32 map_index = 26;
1440
+ optional uint32 winning_team = 27;
1441
+ }
1442
+
1443
+ message CMsgGCRequestMatchMakerStats {
1444
+ }
1445
+
1446
+ message CMsgGCDataCenterPopulation {
1447
+ optional string name = 1;
1448
+ optional float health_ratio = 2;
1449
+ }
1450
+
1451
+ message CMsgGCMatchGroupDataCenterPopulation {
1452
+ repeated .CMsgGCDataCenterPopulation data_center_population = 1;
1453
+ }
1454
+
1455
+ message CMsgGCMatchMakerStatsResponse {
1456
+ repeated uint32 map_count = 1;
1457
+ repeated .CMsgGCMatchGroupDataCenterPopulation matchgroup_data_center_population = 2;
1458
+ }
1459
+
1460
+ message CMsgGCMatchHistoryLoad {
1461
+ optional .ETFMatchGroup match_group = 1 [default = k_eTFMatchGroup_Invalid];
1462
+ }
1463
+
1464
+ message CMsgGCDataCenterPing_Update {
1465
+ message PingEntry {
1466
+ optional string name = 1;
1467
+ optional uint32 ping = 2;
1468
+ optional .CMsgGCDataCenterPing_Update.Status ping_status = 3 [default = Normal];
1469
+ }
1470
+
1471
+ enum Status {
1472
+ Invalid = 0;
1473
+ Normal = 1;
1474
+ Unreachable = 2;
1475
+ FallbackToDCPing = 3;
1476
+ }
1477
+
1478
+ repeated .CMsgGCDataCenterPing_Update.PingEntry pingdata = 1;
1479
+ }
1480
+
1481
+ message CMsgGC_KickPlayerFromLobby {
1482
+ optional uint64 targetID = 1;
1483
+ }
1484
+
1485
+ message CMsgGCSurveyRequest {
1486
+ optional .SurveyQuestionType question_type = 1 [default = QUESTION_MATCH_QUALITY];
1487
+ optional uint64 match_id = 2;
1488
+ }
1489
+
1490
+ message CMsgGCSurveyResponse {
1491
+ optional .SurveyQuestionType question_type = 1 [default = QUESTION_MATCH_QUALITY];
1492
+ optional uint64 match_id = 2;
1493
+ optional int32 response = 3;
1494
+ }
1495
+
1496
+ message CSOQuestMapNode {
1497
+ optional uint32 account_id = 1 [(key_field) = true];
1498
+ optional uint32 defindex = 3 [(key_field) = true];
1499
+ optional uint32 node_id = 4;
1500
+ optional bool star_0_earned = 6 [default = false];
1501
+ optional bool star_1_earned = 7 [default = false];
1502
+ optional bool star_2_earned = 8 [default = false];
1503
+ optional bool loot_claimed = 9 [default = false];
1504
+ optional uint32 selected_quest_def = 10 [default = 0];
1505
+ optional uint32 map_cycle = 11;
1506
+ }
1507
+
1508
+ message CSOQuest {
1509
+ optional uint32 account_id = 1;
1510
+ optional uint64 quest_id = 2 [(key_field) = true];
1511
+ optional uint32 defindex = 3;
1512
+ optional bool active = 4 [default = false];
1513
+ optional uint32 points_0 = 5;
1514
+ optional uint32 points_1 = 6;
1515
+ optional uint32 points_2 = 7;
1516
+ optional uint32 quest_map_node_source_id = 8;
1517
+ optional uint32 map_cycle = 9;
1518
+ }
1519
+
1520
+ message CSOQuestMapRewardPurchase {
1521
+ optional uint32 account_id = 1;
1522
+ optional uint32 defindex = 2 [(key_field) = true];
1523
+ optional uint32 count = 3;
1524
+ optional uint32 map_cycle = 4;
1525
+ optional uint32 purchase_id = 5;
1526
+ }
1527
+
1528
+ message CMsgGCQuestIdentify {
1529
+ optional uint64 quest_id = 1;
1530
+ }
1531
+
1532
+ message CMsgGCQuestDevGive {
1533
+ optional uint32 quest_def_index = 1;
1534
+ }
1535
+
1536
+ message CMsgGCQuestNodeTurnIn {
1537
+ optional uint32 node_defindex = 1;
1538
+ }
1539
+
1540
+ message CMsgGCQuestMapUnlockNode {
1541
+ optional uint32 node_defindex = 1;
1542
+ optional uint32 quest_defindex = 2;
1543
+ }
1544
+
1545
+ message CMsgGCNewMatchForLobbyRequest {
1546
+ optional uint64 current_match_id = 1;
1547
+ optional uint32 next_map_id = 2;
1548
+ optional uint64 lobby_id = 3;
1549
+ }
1550
+
1551
+ message CMsgGCNewMatchForLobbyResponse {
1552
+ optional bool success = 1;
1553
+ }
1554
+
1555
+ message CMsgGCChangeMatchPlayerTeamsRequest {
1556
+ message Member {
1557
+ optional uint64 member_id = 1;
1558
+ optional .TF_GC_TEAM new_team = 2 [default = TF_GC_TEAM_NOTEAM];
1559
+ }
1560
+
1561
+ optional uint64 match_id = 1;
1562
+ optional uint64 lobby_id = 2;
1563
+ repeated .CMsgGCChangeMatchPlayerTeamsRequest.Member member = 3;
1564
+ }
1565
+
1566
+ message CMsgGCChangeMatchPlayerTeamsResponse {
1567
+ optional bool success = 1;
1568
+ }
1569
+
1570
+ message CMsgGCQuestComplete_Debug {
1571
+ optional uint64 quest_id = 1;
1572
+ optional uint32 points_type = 2;
1573
+ }
1574
+
1575
+ message CMsgGCQuestMap_Debug {
1576
+ optional uint32 reset_operation = 1;
1577
+ optional uint32 give_credit = 2;
1578
+ optional .CMsgGCQuestMapUnlockNode unlock_node = 3;
1579
+ }
1580
+
1581
+ message CMsgGCQuestMapPurchaseReward {
1582
+ optional uint32 store_item_defindex = 1;
1583
+ }
1584
+
1585
+ message CMsgGCQuestResponse {
1586
+ optional bool success = 1 [default = false];
1587
+ }
1588
+
1589
+ message CMsgGCSetDisablePartyQuestProgress {
1590
+ optional bool state = 1;
1591
+ }
1592
+
1593
+ message CMsgQuestProgressReport {
1594
+ optional uint64 quest_id = 1;
1595
+ optional bool star_0_earned = 2;
1596
+ optional bool star_1_earned = 3;
1597
+ optional bool star_2_earned = 4;
1598
+ repeated uint64 items_earned = 5;
1599
+ optional uint32 reward_credits_earned = 6;
1600
+ optional bool contract_completed = 7;
1601
+ }
1602
+
1603
+ message CMsgConsumePaintkit {
1604
+ optional fixed64 source_id = 1;
1605
+ optional uint32 target_defindex = 2;
1606
+ }
1607
+
1608
+ message CMsgPainkitDevGrant {
1609
+ optional uint32 paintkit_defindex = 1;
1610
+ optional float wear = 2;
1611
+ optional uint32 item_defindex = 3;
1612
+ }
1613
+
1614
+ message GCQuestStrangeEvent {
1615
+ optional uint32 owner_account_id = 1;
1616
+ optional uint32 scorer_account_id = 2;
1617
+ optional uint64 quest_id = 3;
1618
+ optional uint32 strange_event_id = 4;
1619
+ optional uint32 score = 5;
1620
+ }
1621
+
1622
+ message CMsgSDRTicket {
1623
+ optional bytes serialized_ticket = 1;
1624
+ }