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,617 @@
1
+ import "steammessages.proto";
2
+
3
+ option optimize_for = SPEED;
4
+ option cc_generic_services = false;
5
+
6
+ enum EGCDCGCommonMessages {
7
+ k_EMsgAnyToGCReportAsserts = 7000;
8
+ k_EMsgAnyToGCReportAssertsResponse = 7001;
9
+ }
10
+
11
+ enum EDCGMatchMode {
12
+ k_EDCGMatchMode_Unranked = 2;
13
+ k_EDCGMatchMode_Gauntlet = 3;
14
+ k_EDCGMatchMode_PrivateLobby = 6;
15
+ k_EDCGMatchMode_Puzzle = 7;
16
+ k_EDCGMatchMode_AI = 8;
17
+ k_EDCGMatchMode_Tournament = 9;
18
+ }
19
+
20
+ enum EDCGLobbyTeam {
21
+ k_EDCGLobbyTeam_Team0 = 0;
22
+ k_EDCGLobbyTeam_Team1 = 1;
23
+ k_EDCGLobbyTeam_Spectator = 16;
24
+ }
25
+
26
+ enum EDCGLobbyTimer {
27
+ k_eDCGLobbyTimer_Unspecified = 0;
28
+ k_eDCGLobbyTimer_Disabled = 1;
29
+ k_eDCGLobbyTimer_Default = 2;
30
+ k_eDCGLobbyTimer_Tournament = 3;
31
+ k_eDCGLobbyTimer_TimeAttack = 4;
32
+ k_eDCGLobbyTimer_ShotClockOnly = 5;
33
+ }
34
+
35
+ enum ELobbyServerState {
36
+ k_eLobbyServerState_Assign = 0;
37
+ k_eLobbyServerState_InGame = 1;
38
+ k_eLobbyServerState_PostMatch = 2;
39
+ k_eLobbyServerState_SignedOut = 3;
40
+ k_eLobbyServerState_Abandoned = 4;
41
+ }
42
+
43
+ enum EGCLobbyData {
44
+ k_ELobbyData_PostMatchSurvey = 1;
45
+ }
46
+
47
+ enum DCG_COMBATLOG_TYPES {
48
+ DCG_COMBATLOG_INVALID = -1;
49
+ DCG_COMBATLOG_DAMAGE = 0;
50
+ DCG_COMBATLOG_HEAL = 1;
51
+ DCG_COMBATLOG_DRAW = 2;
52
+ DCG_COMBATLOG_PASS = 3;
53
+ DCG_COMBATLOG_COMBAT = 4;
54
+ DCG_COMBATLOG_PLAY_CREEP = 5;
55
+ DCG_COMBATLOG_PLAY_IMPROVEMENT = 6;
56
+ DCG_COMBATLOG_PLAY_SPELL = 7;
57
+ DCG_COMBATLOG_PLAY_EQUIPMENT = 8;
58
+ DCG_COMBATLOG_PLAY_ABILITY = 9;
59
+ DCG_COMBATLOG_GAIN_GOLD = 10;
60
+ DCG_COMBATLOG_BUY_ITEM = 11;
61
+ DCG_COMBATLOG_DISCARD = 12;
62
+ DCG_COMBATLOG_ADD_MODIFIER = 13;
63
+ DCG_COMBATLOG_REMOVE_MODIFIER = 14;
64
+ DCG_COMBATLOG_KILL = 15;
65
+ DCG_COMBATLOG_CARD_MOVE = 16;
66
+ DCG_COMBATLOG_CREEP_SPAWN = 17;
67
+ DCG_COMBATLOG_DEATH = 18;
68
+ DCG_COMBATLOG_COMBAT_OVER = 19;
69
+ DCG_COMBATLOG_BEGGINING_OF_SPELLCASTING = 20;
70
+ DCG_COMBATLOG_BEGGINING_OF_SPELLCASTING_END = 21;
71
+ DCG_COMBATLOG_UNIT_ENTERING_COMBAT = 22;
72
+ DCG_COMBATLOG_UNIT_LEAVING_COMBAT = 23;
73
+ DCG_COMBATLOG_TRIGGER_TRIGGERED = 24;
74
+ }
75
+
76
+ message CExtraMsgBlock {
77
+ optional uint32 msg_type = 1;
78
+ optional bytes contents = 2;
79
+ optional uint64 msg_key = 3;
80
+ optional bool is_compressed = 4;
81
+ }
82
+
83
+ message CSODCGLobby {
84
+ message GauntletInfo {
85
+ optional uint32 wins = 1;
86
+ optional uint32 losses = 2;
87
+ }
88
+
89
+ message Member {
90
+ optional uint32 account_id = 1;
91
+ optional string persona_name = 2;
92
+ optional .EDCGLobbyTeam team = 3 [default = k_EDCGLobbyTeam_Team0];
93
+ optional bool has_left = 4;
94
+ optional bool is_anonymous = 5;
95
+ optional .CSODCGLobby.GauntletInfo gauntlet_info = 6;
96
+ }
97
+
98
+ repeated .CSODCGLobby.Member members = 1;
99
+ repeated .CExtraMsgBlock extra_messages = 2;
100
+ optional fixed64 server_steam_id = 3;
101
+ optional uint64 lobby_id = 5;
102
+ optional uint64 match_id = 6;
103
+ optional uint32 gauntlet_id = 7;
104
+ optional .ELobbyServerState server_state = 8 [default = k_eLobbyServerState_Assign];
105
+ optional fixed32 replay_salt = 9;
106
+ optional .EDCGMatchMode match_mode = 10 [default = k_EDCGMatchMode_Unranked];
107
+ optional uint32 udp_connect_ip = 11;
108
+ optional uint32 udp_connect_port = 12;
109
+ optional uint64 tourney_id = 13;
110
+ optional uint32 tourney_phase_id = 14;
111
+ optional uint32 tourney_series_id = 15;
112
+ }
113
+
114
+ message CLobbyData_PostMatchSurvey {
115
+ message PlayerSurvey {
116
+ optional uint32 account_id = 1;
117
+ optional uint32 question_id = 2;
118
+ }
119
+
120
+ repeated .CLobbyData_PostMatchSurvey.PlayerSurvey surveys = 1;
121
+ }
122
+
123
+ message CSOGameAccountClient {
124
+ enum EFlags {
125
+ k_eDeveloper = 1;
126
+ k_eFreePlayer = 2;
127
+ }
128
+
129
+ optional uint32 account_id = 1 [(key_field) = true];
130
+ optional uint32 flags = 3;
131
+ optional uint32 initial_grant_ack_def = 5;
132
+ optional uint32 recycling_progress = 6;
133
+ optional uint32 progress_level = 7;
134
+ optional uint32 progress_xp = 8;
135
+ optional uint32 constructed_mmr_level = 9;
136
+ optional uint32 last_win_bounus_time = 10;
137
+ optional uint32 match_win_streak = 11;
138
+ optional uint32 bonus_period_wins = 12;
139
+ optional uint32 player_badge = 13;
140
+ optional uint32 draft_mmr_level = 14;
141
+ }
142
+
143
+ message CSOGauntlet {
144
+ optional uint32 account_id = 1 [(key_field) = true];
145
+ optional uint32 gauntlet_id = 2 [(key_field) = true];
146
+ optional uint64 active_lobby_id = 3;
147
+ optional uint32 abandoned_time = 4;
148
+ optional bytes deck_bytes = 5;
149
+ optional uint64 gauntlet_instance = 9;
150
+ optional uint32 entry_type = 10;
151
+ optional uint64 limited_instance = 11;
152
+ optional uint32 wins = 12;
153
+ optional uint32 losses = 13;
154
+ optional uint64 wins_mask = 14;
155
+ optional bool select_random_deck = 15;
156
+ }
157
+
158
+ message CSOPhantomItem {
159
+ optional uint32 account_id = 1;
160
+ optional uint64 limited_pool = 2;
161
+ optional uint32 def_index = 3;
162
+ optional uint64 phantom_id = 4;
163
+ }
164
+
165
+ message CSOCardAchievement {
166
+ optional uint32 account_id = 1;
167
+ optional uint32 achievement_id = 2;
168
+ optional uint32 progress = 3;
169
+ }
170
+
171
+ message CSOPlayerLimitedProgress {
172
+ optional uint32 account_id = 1;
173
+ optional uint64 limited_instance_id = 2;
174
+ optional uint64 limited_pool_id = 3;
175
+ optional uint32 limited_format = 4;
176
+ optional uint32 progress = 5;
177
+ optional uint32 flags = 6;
178
+ }
179
+
180
+ message CSOTourneyMembership {
181
+ enum EStatus {
182
+ k_eConfigure = 1;
183
+ k_eInvites = 2;
184
+ k_eSeeding = 3;
185
+ k_eLimited = 4;
186
+ k_eEditPhase = 5;
187
+ k_ePlaying = 6;
188
+ k_eWaiting = 7;
189
+ k_eClosed = 8;
190
+ k_eInvites_Registered = 9;
191
+ k_eLimited_Registered = 10;
192
+ }
193
+
194
+ optional uint32 account_id = 1;
195
+ optional uint64 tourney_id = 2;
196
+ optional uint32 player_status = 3;
197
+ optional .CSOTourneyMembership.EStatus tourney_status = 4 [default = k_eConfigure];
198
+ optional uint32 joined_time = 5;
199
+ optional uint32 open_tourney = 6;
200
+ }
201
+
202
+ message CSOTourneyInvite {
203
+ optional uint32 account_id = 1;
204
+ optional uint64 tourney_id = 2;
205
+ optional bool is_full = 3;
206
+ optional uint32 invited_by = 4;
207
+ optional uint32 rights_flags = 5;
208
+ }
209
+
210
+ message CMsgStartFindingMatchInfo {
211
+ optional uint32 gauntlet_id = 1;
212
+ optional string server_search_key = 2;
213
+ optional uint32 client_version = 3;
214
+ optional .EDCGMatchMode match_mode = 4 [default = k_EDCGMatchMode_Unranked];
215
+ optional bytes deck_code = 5;
216
+ optional bool is_anonymous = 7;
217
+ optional bytes collection_code = 8;
218
+ }
219
+
220
+ message CMsgDCGCombatLogEntry {
221
+ optional .DCG_COMBATLOG_TYPES type = 1 [default = DCG_COMBATLOG_INVALID];
222
+ optional uint32 target_card_id = 2;
223
+ optional uint32 target_object_id = 3;
224
+ optional uint32 target_owner = 4;
225
+ optional uint32 source_card_id = 5;
226
+ optional uint32 source_object_id = 6;
227
+ optional uint32 source_owner = 7;
228
+ optional uint32 value = 8;
229
+ optional int32 target_attack = 9;
230
+ optional int32 target_armor = 10;
231
+ optional int32 target_health = 11;
232
+ optional int32 source_attack = 12;
233
+ optional int32 source_armor = 13;
234
+ optional int32 source_health = 14;
235
+ optional uint32 turnstamp = 15;
236
+ optional uint32 source_lane = 16;
237
+ optional uint32 target_lane = 17;
238
+ optional uint32 source_parent_card_id = 18;
239
+ optional uint32 source_parent_object_id = 19;
240
+ optional uint32 modifier_type = 20;
241
+ optional bool piercing = 21;
242
+ optional string effect_name = 22;
243
+ optional uint32 target_combat_position = 23;
244
+ }
245
+
246
+ message CMsgDeckValidator {
247
+ message Deck {
248
+ optional bytes deck_bytes = 1;
249
+ optional string deck_name = 2;
250
+ optional uint32 deck_id = 3;
251
+ }
252
+
253
+ message CardLimit {
254
+ optional uint32 card_id = 1;
255
+ optional uint32 card_count = 2;
256
+ }
257
+
258
+ enum ERarity {
259
+ eRarity_Common = 1;
260
+ eRarity_Uncommon = 2;
261
+ eRarity_Rare = 3;
262
+ }
263
+
264
+ enum EColor {
265
+ eColor_Red = 0;
266
+ eColor_Blue = 1;
267
+ eColor_Green = 2;
268
+ eColor_Black = 3;
269
+ }
270
+
271
+ optional uint32 version = 1;
272
+ optional bool must_own_cards = 2;
273
+ repeated uint32 set_ids = 4;
274
+ optional uint32 main_min = 5;
275
+ optional uint32 main_max = 6;
276
+ optional uint32 items_min = 7;
277
+ optional uint32 items_max = 8;
278
+ optional uint32 main_max_instances = 9;
279
+ optional uint32 items_max_instances = 10;
280
+ optional uint32 hero_max_instances = 11;
281
+ repeated .CMsgDeckValidator.CardLimit card_limits = 12;
282
+ repeated .CMsgDeckValidator.CardLimit required_cards = 13;
283
+ optional bool include_active_sets = 14;
284
+ repeated .CMsgDeckValidator.ERarity blocked_rarities = 15;
285
+ optional uint32 min_deck_colors = 16;
286
+ optional uint32 max_deck_colors = 17;
287
+ repeated .CMsgDeckValidator.EColor blocked_colors = 18;
288
+ optional bool random_decks = 19;
289
+ repeated .CMsgDeckValidator.Deck deck_choices = 20;
290
+ }
291
+
292
+ message CMsgAnyToGCReportAsserts {
293
+ message TrackedAssert {
294
+ optional string filename = 1;
295
+ optional uint32 line_number = 2;
296
+ optional string sample_msg = 3;
297
+ optional string sample_stack = 4;
298
+ optional uint32 times_fired = 5;
299
+ optional string function_name = 6;
300
+ optional string condition = 7;
301
+ }
302
+
303
+ optional uint32 version = 1;
304
+ repeated .CMsgAnyToGCReportAsserts.TrackedAssert asserts = 2;
305
+ }
306
+
307
+ message CMsgAnyToGCReportAssertsResponse {
308
+ optional bool success = 1;
309
+ }
310
+
311
+ message CMsgGauntletConfig {
312
+ message RewardTier {
313
+ message Grant {
314
+ optional uint32 grant_id = 1;
315
+ optional uint32 quantity = 2;
316
+ }
317
+
318
+ repeated .CMsgGauntletConfig.RewardTier.Grant trophy_grant = 1;
319
+ repeated .CMsgGauntletConfig.RewardTier.Grant item_grant = 2;
320
+ optional uint32 min_wins = 3;
321
+ repeated string loot_list_rolls = 4;
322
+ }
323
+
324
+ message EntryType {
325
+ message ItemCost {
326
+ optional uint32 def_index = 1;
327
+ optional uint32 quantity = 2;
328
+ }
329
+
330
+ optional uint32 entry_id = 1;
331
+ repeated .CMsgGauntletConfig.EntryType.ItemCost item_costs = 2;
332
+ optional uint32 limited_format_overide = 3;
333
+ }
334
+
335
+ message GauntletPointsLeaderboard {
336
+ optional uint32 expiration_time = 1;
337
+ }
338
+
339
+ optional uint32 gauntlet_id = 1;
340
+ optional uint32 activate_time = 2;
341
+ optional uint32 max_wins = 3;
342
+ optional uint32 max_losses = 4;
343
+ optional uint32 max_games = 5;
344
+ repeated .CMsgGauntletConfig.RewardTier rewards = 7;
345
+ optional .CMsgDeckValidator validator = 8;
346
+ optional bool register_deck = 10;
347
+ optional bool auto_populate_deck = 12;
348
+ optional bool can_modify_deck = 14;
349
+ optional bool is_active = 15;
350
+ optional bool is_featured = 16;
351
+ repeated .CMsgGauntletConfig.EntryType entry_types = 17;
352
+ optional uint32 limited_format = 18;
353
+ optional uint32 expiration_time = 19;
354
+ optional uint32 close_join_time = 20;
355
+ optional uint32 close_mm_time = 21;
356
+ optional uint32 max_wins_trophy_id = 22;
357
+ optional uint32 cooldown_time = 23;
358
+ optional uint32 max_wins_per_deck_trophy_id = 24;
359
+ optional uint32 max_wins_random_mode_trophy_id = 25;
360
+ optional uint32 is_ai_gauntlet = 26;
361
+ repeated .CMsgDeckValidator ai_validators = 27;
362
+ repeated .CMsgGauntletConfig.GauntletPointsLeaderboard gauntlet_points_leaderboards = 29;
363
+ optional string timer = 30;
364
+ }
365
+
366
+ message CMsgLimitedFormat {
367
+ message LimitedStage {
368
+ optional .CMsgLimitedFormat.EGrantType grant_type = 1 [default = kGrant_Unknown];
369
+ optional uint32 grant_count = 2;
370
+ optional uint32 repeat_count = 3;
371
+ optional string display_msg = 4;
372
+ }
373
+
374
+ enum EGrantType {
375
+ kGrant_Unknown = 0;
376
+ kGrant_Hero = 1;
377
+ kGrant_Card = 2;
378
+ kGrant_Item = 3;
379
+ kGrant_Pack = 4;
380
+ }
381
+
382
+ optional uint32 limited_format_id = 1;
383
+ optional uint32 grant_stages = 2;
384
+ repeated .CMsgLimitedFormat.LimitedStage grant_stage_info = 3;
385
+ optional bool create_real_copies = 4;
386
+ }
387
+
388
+ message CSODCGPrivateLobby {
389
+ message Member {
390
+ optional uint32 account_id = 1;
391
+ optional string persona_name = 2;
392
+ optional .EDCGLobbyTeam team = 3 [default = k_EDCGLobbyTeam_Team0];
393
+ optional bool is_ready = 4;
394
+ optional bytes deck_bytes = 5;
395
+ optional bool has_deck = 7;
396
+ optional uint32 client_version = 8;
397
+ optional .CMsgRegionPingTimesClient ping_times = 9;
398
+ }
399
+
400
+ message Invite {
401
+ optional uint32 account_id = 1;
402
+ optional string persona_name = 2;
403
+ optional uint32 invited_by = 3;
404
+ }
405
+
406
+ message SharedDeck {
407
+ optional uint32 shared_by_account_id = 1;
408
+ optional bytes deck_bytes = 2;
409
+ optional string deck_name = 3;
410
+ }
411
+
412
+ message Match {
413
+ optional uint64 match_id = 1;
414
+ optional uint32 winning_account_id = 2;
415
+ }
416
+
417
+ optional uint64 private_lobby_id = 1;
418
+ repeated .CSODCGPrivateLobby.Member members = 2;
419
+ repeated .CSODCGPrivateLobby.Invite invites = 3;
420
+ repeated .CExtraMsgBlock extra_messages = 4;
421
+ optional bool in_match_making = 5;
422
+ optional string server_search_key = 6;
423
+ optional bool are_decks_visible = 7;
424
+ repeated .CSODCGPrivateLobby.Match match_list = 8;
425
+ optional .EDCGLobbyTimer timer_mode = 9 [default = k_eDCGLobbyTimer_Unspecified];
426
+ optional fixed64 match_lobby_id = 10;
427
+ repeated .CSODCGPrivateLobby.SharedDeck shared_decks = 11;
428
+ optional .CMsgDeckValidator deck_validator = 12;
429
+ optional uint32 min_client_version = 15;
430
+ optional uint32 max_client_version = 16;
431
+ optional uint64 steam_chat_group_id = 17;
432
+ optional fixed64 lobby_salt = 18;
433
+ optional uint32 validator_id = 19;
434
+ }
435
+
436
+ message CSODCGTourneyInvite {
437
+ optional uint32 account_id = 1 [(key_field) = true];
438
+ optional uint64 tourney_id = 2 [(key_field) = true];
439
+ optional bool is_full = 3;
440
+ }
441
+
442
+ message CSODCGTourneyNextMatch {
443
+ optional uint32 account_id = 1 [(key_field) = true];
444
+ optional uint64 tourney_id = 2 [(key_field) = true];
445
+ optional uint32 phase_id = 3 [(key_field) = true];
446
+ optional uint32 series_id = 4 [(key_field) = true];
447
+ }
448
+
449
+ message CDCGTourney {
450
+ message Match {
451
+ optional uint64 match_id = 1;
452
+ }
453
+
454
+ message Series {
455
+ optional uint32 series_id = 1;
456
+ optional uint32 account_1 = 2;
457
+ optional uint32 wins_1 = 3;
458
+ optional uint32 account_2 = 4;
459
+ optional uint32 wins_2 = 5;
460
+ optional uint32 ties = 6;
461
+ optional uint32 status = 7;
462
+ repeated .CDCGTourney.Match matches = 8;
463
+ optional fixed64 lobby_id = 9;
464
+ }
465
+
466
+ message Phase {
467
+ optional uint32 phase_id = 1;
468
+ optional .CDCGTourney.EFormat format = 2 [default = k_eFormat_Invalid];
469
+ optional .CDCGTourney.EPhaseStage stage = 3 [default = k_ePhaseStage_Pending];
470
+ repeated .CDCGTourney.Series series = 4;
471
+ optional uint32 limited_format = 5;
472
+ optional uint64 limited_instance_id = 6;
473
+ optional uint64 limited_pool_id = 7;
474
+ optional uint32 auto_advance_time = 9;
475
+ }
476
+
477
+ message PlayerDeck {
478
+ optional uint32 deck_index = 1;
479
+ optional bytes deck_bytes = 2;
480
+ optional uint32 phase_id = 3;
481
+ optional uint32 shared_by = 4;
482
+ }
483
+
484
+ message Member {
485
+ optional uint32 account_id = 1;
486
+ optional uint32 rights_flags = 2;
487
+ repeated .CDCGTourney.PlayerDeck public_registered_decks = 3;
488
+ optional uint32 initial_seed = 4;
489
+ optional uint32 initial_group = 5;
490
+ }
491
+
492
+ message Invite {
493
+ optional uint32 account_id = 1;
494
+ optional uint32 invited_by = 2;
495
+ optional uint32 invite_time = 3;
496
+ optional uint32 rights_flags = 4;
497
+ }
498
+
499
+ message ConfigVals {
500
+ optional uint32 val_id = 1;
501
+ optional uint32 phase_id = 2;
502
+ optional uint32 value = 3;
503
+ }
504
+
505
+ message SharedDeck {
506
+ optional uint32 shared_by = 1;
507
+ optional bytes deck_bytes = 2;
508
+ optional uint32 shared_slot = 3;
509
+ }
510
+
511
+ message EntryItem {
512
+ optional uint32 def_index = 1;
513
+ optional uint32 quantity = 2;
514
+ optional bool per_member = 3;
515
+ }
516
+
517
+ message PaidEntryItem {
518
+ optional uint32 def_index = 1;
519
+ optional uint32 target_account_id = 2;
520
+ optional uint32 owner_account_id = 3;
521
+ }
522
+
523
+ message Validator {
524
+ optional uint32 phase_id = 1;
525
+ optional .CMsgDeckValidator deck_validator = 2;
526
+ }
527
+
528
+ enum EStage {
529
+ k_eStage_Configure = 10;
530
+ k_eStage_Invites = 20;
531
+ k_eStage_Seeding = 30;
532
+ k_eStage_PlayPhases = 40;
533
+ k_eStage_Closed = 50;
534
+ }
535
+
536
+ enum EPhaseStage {
537
+ k_ePhaseStage_Pending = 10;
538
+ k_ePhaseStage_Limited = 20;
539
+ k_ePhaseStage_Edit = 30;
540
+ k_ePhaseStage_Playing = 40;
541
+ k_ePhaseStage_Complete = 50;
542
+ }
543
+
544
+ enum EFormat {
545
+ k_eFormat_Invalid = 0;
546
+ k_eFormat_Bracket_SingleElim = 1;
547
+ k_eFormat_Swiss = 2;
548
+ k_eFormat_FreeForAll = 3;
549
+ }
550
+
551
+ optional uint64 tourney_id = 1;
552
+ optional .CDCGTourney.EStage stage = 2 [default = k_eStage_Configure];
553
+ repeated .CDCGTourney.Validator validators = 3;
554
+ optional uint32 stage_time = 4;
555
+ optional uint32 stats_salt = 5;
556
+ optional string tourney_msg = 6;
557
+ optional string tourney_status = 7;
558
+ repeated .CDCGTourney.Phase phases = 8;
559
+ repeated .CDCGTourney.ConfigVals config_vals = 9;
560
+ repeated .CDCGTourney.Invite invites = 10;
561
+ repeated .CDCGTourney.Member members = 11;
562
+ optional string tourney_name = 12;
563
+ repeated .CDCGTourney.SharedDeck shared_decks = 13;
564
+ optional uint32 created_by = 14;
565
+ optional uint32 auto_close_time = 15;
566
+ optional uint64 steam_chat_room_id = 16;
567
+ repeated .CDCGTourney.PaidEntryItem paid_entry_items = 17;
568
+ repeated .CDCGTourney.EntryItem entry_items = 18;
569
+ optional uint32 created_time = 19;
570
+ }
571
+
572
+ message CMsgRegionPingTimesClient {
573
+ repeated fixed32 data_center_codes = 1 [packed = true];
574
+ repeated uint32 ping_times = 2 [packed = true];
575
+ }
576
+
577
+ message CMsgMarketPrices {
578
+ optional uint32 time_stamp = 1;
579
+ optional uint32 currency_id = 2;
580
+ repeated uint32 def_indices = 3 [packed = true];
581
+ repeated uint64 purchase_price = 4 [packed = true];
582
+ repeated uint64 sell_price = 5 [packed = true];
583
+ optional bool request_up_to_date = 6;
584
+ optional uint32 valid_through = 7;
585
+ }
586
+
587
+ message CMsgMatchData {
588
+ message PlayerInfo {
589
+ optional uint32 account_id = 1;
590
+ optional .EDCGLobbyTeam team = 2 [default = k_EDCGLobbyTeam_Team0];
591
+ optional uint32 player_slot = 3;
592
+ repeated uint32 hero_lineup = 4;
593
+ repeated uint32 tower_health = 5;
594
+ optional uint32 ancient_health = 6;
595
+ optional bool conceded = 8;
596
+ optional uint32 game_clock = 9;
597
+ repeated uint32 hero_ids = 10;
598
+ optional uint32 mmr = 11;
599
+ optional uint32 mmr_uncertainty = 12;
600
+ optional bytes deck_bytes = 13;
601
+ }
602
+
603
+ enum EEndReason {
604
+ k_EEndReason_TeamWin = 0;
605
+ k_EEndReason_Tie = 1;
606
+ k_EEndReason_AllAbandoned = 2;
607
+ k_EEndReason_NetworkIssues = 3;
608
+ k_EEndReason_MatchLength = 4;
609
+ k_EEndReason_PlayerNeverConnected = 5;
610
+ }
611
+
612
+ optional uint32 match_duration_s = 4;
613
+ optional uint32 game_turns = 5;
614
+ optional .CMsgMatchData.EEndReason end_reason = 6 [default = k_EEndReason_TeamWin];
615
+ optional .EDCGLobbyTeam winning_team = 7 [default = k_EDCGLobbyTeam_Team0];
616
+ repeated .CMsgMatchData.PlayerInfo players = 8;
617
+ }