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,231 @@
1
+ import "dota_shared_enums.proto";
2
+
3
+ enum EGuildEventAuditAction {
4
+ k_EGuildEventAuditAction_Invalid = 0;
5
+ k_EGuildEventAuditAction_DevGrant = 1;
6
+ k_EGuildEventAuditAction_CompleteContract = 2;
7
+ k_EGuildEventAuditAction_CompleteChallenge = 3;
8
+ k_EGuildEventAuditAction_CompleteMatch_Winner = 4;
9
+ k_EGuildEventAuditAction_ChallengeProgress = 5;
10
+ k_EGuildEventAuditAction_CompleteMatch_Loser = 6;
11
+ k_EGuildEventAuditAction_WeeklyLeaderboard = 7;
12
+ k_EGuildEventAuditAction_ManualGrant = 8;
13
+ }
14
+
15
+ message CMsgGuildContract {
16
+ optional uint64 contract_id = 1;
17
+ optional uint32 challenge_instance_id = 2;
18
+ optional uint32 challenge_parameter = 3;
19
+ optional uint32 challenge_timestamp = 4;
20
+ optional uint32 assigned_account_id = 5;
21
+ optional uint32 contract_flags = 6;
22
+ }
23
+
24
+ message CMsgGuildContractSlot {
25
+ optional .CMsgGuildContract contract = 1;
26
+ }
27
+
28
+ message CMsgAccountGuildEventData {
29
+ optional uint32 guild_points = 1;
30
+ optional uint32 contracts_refreshed_timestamp = 2;
31
+ repeated .CMsgGuildContractSlot contract_slots = 3;
32
+ optional uint32 completed_challenge_count = 4;
33
+ optional uint32 challenges_refresh_timestamp = 5;
34
+ optional uint32 guild_weekly_percentile = 6;
35
+ optional uint32 guild_weekly_last_timestamp = 7;
36
+ optional uint32 last_weekly_claim_time = 8;
37
+ optional uint32 guild_current_percentile = 9;
38
+ }
39
+
40
+ message CMsgGuildActiveContracts {
41
+ optional uint32 contracts_refreshed_timestamp = 1;
42
+ repeated .CMsgGuildContract contracts = 2;
43
+ }
44
+
45
+ message CMsgGuildChallenge {
46
+ optional uint32 challenge_instance_id = 1;
47
+ optional uint32 challenge_parameter = 2;
48
+ optional uint32 challenge_timestamp = 3;
49
+ optional uint32 challenge_progress = 4;
50
+ optional uint32 challenge_flags = 5;
51
+ }
52
+
53
+ message CMsgGuildEventMember {
54
+ optional uint32 account_id = 1;
55
+ optional uint32 guild_points_earned = 2;
56
+ }
57
+
58
+ message CMsgClientToGCRequestAccountGuildEventData {
59
+ optional uint32 guild_id = 1;
60
+ optional .EEvent event_id = 2 [default = EVENT_ID_NONE];
61
+ }
62
+
63
+ message CMsgClientToGCRequestAccountGuildEventDataResponse {
64
+ enum EResponse {
65
+ k_eInternalError = 0;
66
+ k_eSuccess = 1;
67
+ k_eTooBusy = 2;
68
+ k_eDisabled = 3;
69
+ k_eTimeout = 4;
70
+ k_eInvalidEvent = 5;
71
+ k_eInvalidGuild = 6;
72
+ k_eNotMember = 7;
73
+ k_eInvalidGuildEvent = 8;
74
+ }
75
+
76
+ optional .CMsgClientToGCRequestAccountGuildEventDataResponse.EResponse result = 1 [default = k_eInternalError];
77
+ optional .EEvent event_id = 2 [default = EVENT_ID_NONE];
78
+ optional .CMsgAccountGuildEventData event_data = 3;
79
+ }
80
+
81
+ message CMsgGCToClientAccountGuildEventDataUpdated {
82
+ optional uint32 guild_id = 1;
83
+ optional .EEvent event_id = 2 [default = EVENT_ID_NONE];
84
+ optional uint32 update_flags = 3;
85
+ optional .CMsgAccountGuildEventData guild_event_data = 4;
86
+ optional bool contracts_updated = 5;
87
+ }
88
+
89
+ message CMsgClientToGCRequestActiveGuildContracts {
90
+ optional uint32 guild_id = 1;
91
+ optional .EEvent event_id = 2 [default = EVENT_ID_NONE];
92
+ }
93
+
94
+ message CMsgClientToGCRequestActiveGuildContractsResponse {
95
+ enum EResponse {
96
+ k_eInternalError = 0;
97
+ k_eSuccess = 1;
98
+ k_eTooBusy = 2;
99
+ k_eDisabled = 3;
100
+ k_eTimeout = 4;
101
+ k_eInvalidEvent = 5;
102
+ k_eInvalidGuild = 6;
103
+ k_eNotMember = 7;
104
+ k_eInvalidGuildEvent = 8;
105
+ }
106
+
107
+ optional .CMsgClientToGCRequestActiveGuildContractsResponse.EResponse result = 1 [default = k_eInternalError];
108
+ optional .CMsgGuildActiveContracts active_contracts = 2;
109
+ optional .CMsgGuildChallenge active_challenges = 3;
110
+ }
111
+
112
+ message CMsgGCToClientActiveGuildContractsUpdated {
113
+ optional uint32 guild_id = 1;
114
+ optional .EEvent event_id = 2 [default = EVENT_ID_NONE];
115
+ }
116
+
117
+ message CMsgClientToGCSelectGuildContract {
118
+ optional uint32 guild_id = 1;
119
+ optional .EEvent event_id = 2 [default = EVENT_ID_NONE];
120
+ optional uint64 contract_id = 3;
121
+ optional uint32 contract_slot = 4;
122
+ }
123
+
124
+ message CMsgClientToGCSelectGuildContractResponse {
125
+ enum EResponse {
126
+ k_eInternalError = 0;
127
+ k_eSuccess = 1;
128
+ k_eTooBusy = 2;
129
+ k_eDisabled = 3;
130
+ k_eTimeout = 4;
131
+ k_eInvalidEvent = 5;
132
+ k_eInvalidGuild = 6;
133
+ k_eNotMember = 7;
134
+ k_eInvalidGuildEvent = 8;
135
+ k_eInvalidContractID = 9;
136
+ k_eAlreadyAssigned = 10;
137
+ k_eInvalidContractSlot = 11;
138
+ k_eContractSlotLockedGuild = 12;
139
+ k_eContractSlotCooldown = 13;
140
+ k_eContractDuplicate = 14;
141
+ k_eContractSlotTimeError = 15;
142
+ k_eContractSlotLockedDotaPlus = 16;
143
+ }
144
+
145
+ optional .CMsgClientToGCSelectGuildContractResponse.EResponse result = 1 [default = k_eInternalError];
146
+ }
147
+
148
+ message CMsgClientToGCRequestActiveGuildChallenge {
149
+ optional uint32 guild_id = 1;
150
+ optional .EEvent event_id = 2 [default = EVENT_ID_NONE];
151
+ }
152
+
153
+ message CMsgClientToGCRequestActiveGuildChallengeResponse {
154
+ enum EResponse {
155
+ k_eInternalError = 0;
156
+ k_eSuccess = 1;
157
+ k_eTooBusy = 2;
158
+ k_eDisabled = 3;
159
+ k_eTimeout = 4;
160
+ k_eInvalidEvent = 5;
161
+ k_eInvalidGuild = 6;
162
+ k_eNotMember = 7;
163
+ k_eInvalidGuildEvent = 8;
164
+ }
165
+
166
+ optional .CMsgClientToGCRequestActiveGuildChallengeResponse.EResponse result = 1 [default = k_eInternalError];
167
+ optional .CMsgGuildChallenge active_challenge = 2;
168
+ }
169
+
170
+ message CMsgGCToClientActiveGuildChallengeUpdated {
171
+ optional uint32 guild_id = 1;
172
+ optional .EEvent event_id = 2 [default = EVENT_ID_NONE];
173
+ optional .CMsgGuildChallenge active_challenge = 3;
174
+ }
175
+
176
+ message CMsgClientToGCRequestGuildEventMembers {
177
+ optional uint32 guild_id = 1;
178
+ optional .EEvent event_id = 2 [default = EVENT_ID_NONE];
179
+ }
180
+
181
+ message CMsgClientToGCRequestGuildEventMembersResponse {
182
+ enum EResponse {
183
+ k_eInternalError = 0;
184
+ k_eSuccess = 1;
185
+ k_eTooBusy = 2;
186
+ k_eDisabled = 3;
187
+ k_eTimeout = 4;
188
+ k_eInvalidEvent = 5;
189
+ k_eInvalidGuild = 6;
190
+ k_eNotMember = 7;
191
+ k_eInvalidGuildEvent = 8;
192
+ }
193
+
194
+ optional .CMsgClientToGCRequestGuildEventMembersResponse.EResponse result = 1 [default = k_eInternalError];
195
+ repeated .CMsgGuildEventMember members = 2;
196
+ }
197
+
198
+ message CMsgGuildLeaderboardCombinedResponse {
199
+ optional .EEvent event_id = 1 [default = EVENT_ID_NONE];
200
+ optional uint32 region = 2;
201
+ optional uint32 last_updated = 3;
202
+ repeated uint32 guild_id = 4 [packed = true];
203
+ repeated uint32 rank = 5 [packed = true];
204
+ repeated uint32 current_percentile = 6 [packed = true];
205
+ repeated uint32 weekly_percentile = 7 [packed = true];
206
+ repeated uint32 points = 8 [packed = true];
207
+ }
208
+
209
+ message CMsgClientToGCClaimLeaderboardRewards {
210
+ optional uint32 guild_id = 1;
211
+ optional .EEvent event_id = 2 [default = EVENT_ID_NONE];
212
+ }
213
+
214
+ message CMsgClientToGCClaimLeaderboardRewardsResponse {
215
+ enum EResponse {
216
+ k_eInternalError = 0;
217
+ k_eSuccess = 1;
218
+ k_eTooBusy = 2;
219
+ k_eDisabled = 3;
220
+ k_eTimeout = 4;
221
+ k_eInvalidEvent = 5;
222
+ k_eInvalidGuild = 6;
223
+ k_eNotMember = 7;
224
+ k_eInvalidGuildEvent = 8;
225
+ k_eDoesNotQualify = 9;
226
+ k_eAlreadyClaimed = 10;
227
+ }
228
+
229
+ optional .CMsgClientToGCClaimLeaderboardRewardsResponse.EResponse result = 1 [default = k_eInternalError];
230
+ optional uint32 event_points = 2;
231
+ }
@@ -0,0 +1,468 @@
1
+ import "steammessages.proto";
2
+ import "dota_shared_enums.proto";
3
+ import "dota_client_enums.proto";
4
+ import "base_gcmessages.proto";
5
+ import "dota_gcmessages_common_lobby.proto";
6
+
7
+ enum EStartFindingMatchResult {
8
+ k_EStartFindingMatchResult_Invalid = 0;
9
+ k_EStartFindingMatchResult_OK = 1;
10
+ k_EStartFindingMatchResult_AlreadySearching = 2;
11
+ k_EStartFindingMatchResult_FailGeneric = 100;
12
+ k_EStartFindingMatchResult_FailedIgnore = 101;
13
+ k_EStartFindingMatchResult_MatchmakingDisabled = 102;
14
+ k_EStartFindingMatchResult_RegionOffline = 103;
15
+ k_EStartFindingMatchResult_MatchmakingCooldown = 104;
16
+ k_EStartFindingMatchResult_ClientOutOfDate = 105;
17
+ k_EStartFindingMatchResult_CompetitiveNoLowPriority = 106;
18
+ k_EStartFindingMatchResult_CompetitiveNotUnlocked = 107;
19
+ k_EStartFindingMatchResult_GameModeNotUnlocked = 108;
20
+ k_EStartFindingMatchResult_CompetitiveNotEnoughPlayTime = 109;
21
+ k_EStartFindingMatchResult_MissingInitialSkill = 110;
22
+ k_EStartFindingMatchResult_CompetitiveRankSpreadTooLarge = 111;
23
+ k_EStartFindingMatchResult_MemberAlreadyInLobby = 112;
24
+ k_EStartFindingMatchResult_MemberNotVACVerified = 113;
25
+ k_EStartFindingMatchResult_WeekendTourneyBadPartySize = 114;
26
+ k_EStartFindingMatchResult_WeekendTourneyTeamBuyInTooSmall = 115;
27
+ k_EStartFindingMatchResult_WeekendTourneyIndividualBuyInTooLarge = 116;
28
+ k_EStartFindingMatchResult_WeekendTourneyTeamBuyInTooLarge = 117;
29
+ k_EStartFindingMatchResult_MemberMissingEventOwnership = 118;
30
+ k_EStartFindingMatchResult_WeekendTourneyNotUnlocked = 119;
31
+ k_EStartFindingMatchResult_WeekendTourneyRecentParticipation = 120;
32
+ k_EStartFindingMatchResult_MemberMissingAnchoredPhoneNumber = 121;
33
+ k_EStartFindingMatchResult_NotMemberOfClan = 122;
34
+ k_EStartFindingMatchResult_CoachesChallengeBadPartySize = 123;
35
+ k_EStartFindingMatchResult_CoachesChallengeRequirementsNotMet = 124;
36
+ k_EStartFindingMatchResult_InvalidRoleSelections = 125;
37
+ k_EStartFindingMatchResult_PhoneNumberDiscrepancy = 126;
38
+ k_EStartFindingMatchResult_NoQueuePoints = 127;
39
+ k_EStartFindingMatchResult_MemberMissingGauntletFlag = 128;
40
+ k_EStartFindingMatchResult_MemberGauntletTooRecent = 129;
41
+ k_EStartFindingMatchResult_DifficultyNotUnlocked = 130;
42
+ k_EStartFindingMatchResult_CoachesNotAllowedInParty = 131;
43
+ k_EStartFindingMatchResult_MatchmakingBusy = 132;
44
+ k_EStartFindingMatchResult_SteamChinaBanned = 133;
45
+ k_EStartFindingMatchResult_SteamChinaInvalidMixedParty = 134;
46
+ k_EStartFindingMatchResult_RestrictedFromRanked = 135;
47
+ }
48
+
49
+ message CMsgStartFindingMatch {
50
+ optional string key = 1;
51
+ optional uint32 matchgroups = 2 [default = 4294967295];
52
+ optional uint32 client_version = 3;
53
+ optional uint32 game_modes = 4 [default = 4294967295];
54
+ optional .MatchType match_type = 6 [default = MATCH_TYPE_CASUAL];
55
+ optional uint32 matchlanguages = 7 [default = 4294967295];
56
+ optional uint32 team_id = 8;
57
+ optional .MatchLanguages game_language_enum = 10 [default = MATCH_LANGUAGE_INVALID];
58
+ optional string game_language_name = 11;
59
+ optional .CMsgClientPingData ping_data = 12;
60
+ optional uint32 region_select_flags = 13;
61
+ optional bool solo_queue = 14;
62
+ optional uint32 steam_clan_account_id = 16;
63
+ optional bool is_challenge_match = 17;
64
+ optional uint32 lane_selection_flags = 18;
65
+ optional bool high_priority_disabled = 19;
66
+ optional bool disable_experimental_gameplay = 20;
67
+ optional uint32 custom_game_difficulty_mask = 21;
68
+ optional uint32 bot_difficulty_mask = 22;
69
+ optional uint32 bot_script_index_mask = 23;
70
+ }
71
+
72
+ message CMsgStartFindingMatchResult {
73
+ optional uint32 legacy_generic_eresult = 1 [default = 2];
74
+ optional .EStartFindingMatchResult result = 2 [default = k_EStartFindingMatchResult_Invalid];
75
+ optional string error_token = 3;
76
+ optional string debug_message = 4;
77
+ repeated fixed64 responsible_party_members = 5;
78
+ optional uint32 result_metadata = 6;
79
+ }
80
+
81
+ message CMsgStopFindingMatch {
82
+ optional bool accept_cooldown = 1;
83
+ }
84
+
85
+ message CMsgPartyBuilderOptions {
86
+ optional uint32 additional_slots = 1;
87
+ optional .MatchType match_type = 2 [default = MATCH_TYPE_CASUAL];
88
+ optional uint32 matchgroups = 3;
89
+ optional uint32 client_version = 4;
90
+ optional .MatchLanguages language = 5 [default = MATCH_LANGUAGE_INVALID];
91
+ }
92
+
93
+ message CMsgReadyUp {
94
+ optional .DOTALobbyReadyState state = 1 [default = DOTALobbyReadyState_UNDECLARED];
95
+ optional fixed64 ready_up_key = 2;
96
+ optional .CDOTAClientHardwareSpecs hardware_specs = 3;
97
+ }
98
+
99
+ message CMsgReadyUpStatus {
100
+ optional fixed64 lobby_id = 1;
101
+ repeated uint32 accepted_ids = 2;
102
+ repeated uint32 declined_ids = 3;
103
+ }
104
+
105
+ message CMsgAbandonCurrentGame {
106
+ }
107
+
108
+ message CMsgLobbyScenarioSave {
109
+ optional int32 version = 1;
110
+ optional bytes data = 2;
111
+ }
112
+
113
+ message CMsgPracticeLobbySetDetails {
114
+ message AbilityDraftSpecificDetails {
115
+ optional bool shuffle_draft_order = 1;
116
+ }
117
+
118
+ optional uint64 lobby_id = 1;
119
+ optional string game_name = 2;
120
+ repeated .CLobbyTeamDetails team_details = 3;
121
+ optional uint32 server_region = 4;
122
+ optional uint32 game_mode = 5;
123
+ optional .DOTA_CM_PICK cm_pick = 6 [default = DOTA_CM_RANDOM];
124
+ optional .DOTABotDifficulty bot_difficulty_radiant = 9 [default = BOT_DIFFICULTY_PASSIVE];
125
+ optional bool allow_cheats = 10;
126
+ optional bool fill_with_bots = 11;
127
+ optional bool intro_mode = 12;
128
+ optional bool allow_spectating = 13;
129
+ optional string pass_key = 15;
130
+ optional uint32 leagueid = 16;
131
+ optional uint32 penalty_level_radiant = 17;
132
+ optional uint32 penalty_level_dire = 18;
133
+ optional uint32 load_game_id = 19;
134
+ optional uint32 series_type = 20;
135
+ optional uint32 radiant_series_wins = 21;
136
+ optional uint32 dire_series_wins = 22;
137
+ optional bool allchat = 23 [default = false];
138
+ optional .LobbyDotaTVDelay dota_tv_delay = 24 [default = LobbyDotaTV_120];
139
+ optional bool lan = 25;
140
+ optional string custom_game_mode = 26;
141
+ optional string custom_map_name = 27;
142
+ optional uint32 custom_difficulty = 28;
143
+ optional uint64 custom_game_id = 29;
144
+ optional uint32 custom_min_players = 30;
145
+ optional uint32 custom_max_players = 31;
146
+ optional .DOTALobbyVisibility visibility = 33 [default = DOTALobbyVisibility_Public];
147
+ optional fixed64 custom_game_crc = 34;
148
+ optional fixed32 custom_game_timestamp = 37;
149
+ optional uint64 previous_match_override = 38;
150
+ optional .LobbyDotaPauseSetting pause_setting = 42 [default = LobbyDotaPauseSetting_Unlimited];
151
+ optional .DOTABotDifficulty bot_difficulty_dire = 43 [default = BOT_DIFFICULTY_PASSIVE];
152
+ optional uint64 bot_radiant = 44;
153
+ optional uint64 bot_dire = 45;
154
+ optional .DOTASelectionPriorityRules selection_priority_rules = 46 [default = k_DOTASelectionPriorityRules_Manual];
155
+ optional bool custom_game_penalties = 47;
156
+ optional string lan_host_ping_location = 48;
157
+ optional uint32 league_node_id = 49;
158
+ repeated uint32 requested_hero_ids = 50;
159
+ optional .CMsgLobbyScenarioSave scenario_save = 51;
160
+ optional .CMsgPracticeLobbySetDetails.AbilityDraftSpecificDetails ability_draft_specific_details = 52;
161
+ optional bool do_player_draft = 53;
162
+ }
163
+
164
+ message CMsgPracticeLobbyCreate {
165
+ message SaveGame {
166
+ optional bytes data = 1;
167
+ optional int32 version = 2;
168
+ optional fixed64 steam_id = 3;
169
+ optional fixed64 signature = 4;
170
+ }
171
+
172
+ optional string search_key = 1;
173
+ optional string pass_key = 5;
174
+ optional uint32 client_version = 6;
175
+ optional .CMsgPracticeLobbySetDetails lobby_details = 7;
176
+ optional .CMsgPracticeLobbyCreate.SaveGame save_game = 8;
177
+ }
178
+
179
+ message CMsgPracticeLobbySetTeamSlot {
180
+ optional .DOTA_GC_TEAM team = 1 [default = DOTA_GC_TEAM_GOOD_GUYS];
181
+ optional uint32 slot = 2;
182
+ optional .DOTABotDifficulty bot_difficulty = 3 [default = BOT_DIFFICULTY_PASSIVE];
183
+ }
184
+
185
+ message CMsgPracticeLobbySetCoach {
186
+ optional .DOTA_GC_TEAM team = 1 [default = DOTA_GC_TEAM_GOOD_GUYS];
187
+ }
188
+
189
+ message CMsgPracticeLobbyJoinBroadcastChannel {
190
+ optional uint32 channel = 1;
191
+ optional string preferred_description = 2;
192
+ optional string preferred_country_code = 3;
193
+ optional string preferred_language_code = 4;
194
+ }
195
+
196
+ message CMsgPracticeLobbyCloseBroadcastChannel {
197
+ optional uint32 channel = 1;
198
+ }
199
+
200
+ message CMsgPracticeLobbyToggleBroadcastChannelCameramanStatus {
201
+ }
202
+
203
+ message CMsgPracticeLobbyKick {
204
+ optional uint32 account_id = 3;
205
+ }
206
+
207
+ message CMsgPracticeLobbyKickFromTeam {
208
+ optional uint32 account_id = 1;
209
+ }
210
+
211
+ message CMsgPracticeLobbyLeave {
212
+ }
213
+
214
+ message CMsgPracticeLobbyLaunch {
215
+ optional uint32 client_version = 5;
216
+ }
217
+
218
+ message CMsgApplyTeamToPracticeLobby {
219
+ optional uint32 team_id = 1;
220
+ }
221
+
222
+ message CMsgPracticeLobbyList {
223
+ optional string pass_key = 2;
224
+ optional uint32 region = 3;
225
+ optional .DOTA_GameMode game_mode = 4 [default = DOTA_GAMEMODE_NONE];
226
+ }
227
+
228
+ message CMsgPracticeLobbyListResponseEntry {
229
+ message CLobbyMember {
230
+ optional uint32 account_id = 1;
231
+ optional string player_name = 2;
232
+ }
233
+
234
+ optional uint64 id = 1 [(key_field) = true];
235
+ repeated .CMsgPracticeLobbyListResponseEntry.CLobbyMember members = 5;
236
+ optional bool requires_pass_key = 6;
237
+ optional uint32 leader_account_id = 7;
238
+ optional string name = 10;
239
+ optional string custom_game_mode = 11;
240
+ optional .DOTA_GameMode game_mode = 12 [default = DOTA_GAMEMODE_NONE];
241
+ optional bool friend_present = 13;
242
+ optional uint32 players = 14;
243
+ optional string custom_map_name = 15;
244
+ optional uint32 max_player_count = 16;
245
+ optional uint32 server_region = 17;
246
+ optional uint32 league_id = 19;
247
+ optional string lan_host_ping_location = 20;
248
+ optional uint32 min_player_count = 21;
249
+ optional bool penalties_enabled = 22;
250
+ }
251
+
252
+ message CMsgPracticeLobbyListResponse {
253
+ repeated .CMsgPracticeLobbyListResponseEntry lobbies = 2;
254
+ }
255
+
256
+ message CMsgLobbyList {
257
+ optional uint32 server_region = 1 [default = 0];
258
+ optional .DOTA_GameMode game_mode = 2 [default = DOTA_GAMEMODE_NONE];
259
+ }
260
+
261
+ message CMsgLobbyListResponse {
262
+ repeated .CMsgPracticeLobbyListResponseEntry lobbies = 1;
263
+ }
264
+
265
+ message CMsgPracticeLobbyJoin {
266
+ optional uint64 lobby_id = 1;
267
+ optional uint32 client_version = 2;
268
+ optional string pass_key = 3;
269
+ optional fixed64 custom_game_crc = 4;
270
+ optional fixed32 custom_game_timestamp = 5;
271
+ }
272
+
273
+ message CMsgPracticeLobbyJoinResponse {
274
+ optional .DOTAJoinLobbyResult result = 1 [default = DOTA_JOIN_RESULT_SUCCESS];
275
+ }
276
+
277
+ message CMsgFriendPracticeLobbyListRequest {
278
+ repeated uint32 friends = 1;
279
+ }
280
+
281
+ message CMsgFriendPracticeLobbyListResponse {
282
+ repeated .CMsgPracticeLobbyListResponseEntry lobbies = 1;
283
+ }
284
+
285
+ message CMsgJoinableCustomGameModesRequest {
286
+ optional uint32 server_region = 1;
287
+ }
288
+
289
+ message CMsgJoinableCustomGameModesResponseEntry {
290
+ optional uint64 custom_game_id = 1;
291
+ optional uint32 lobby_count = 2;
292
+ optional uint32 player_count = 3;
293
+ }
294
+
295
+ message CMsgJoinableCustomGameModesResponse {
296
+ repeated .CMsgJoinableCustomGameModesResponseEntry game_modes = 1;
297
+ }
298
+
299
+ message CMsgJoinableCustomLobbiesRequest {
300
+ optional uint32 server_region = 1;
301
+ optional uint64 custom_game_id = 2;
302
+ }
303
+
304
+ message CMsgJoinableCustomLobbiesResponseEntry {
305
+ optional fixed64 lobby_id = 1;
306
+ optional uint64 custom_game_id = 2;
307
+ optional string lobby_name = 3;
308
+ optional uint32 member_count = 4;
309
+ optional uint32 leader_account_id = 5;
310
+ optional string leader_name = 6;
311
+ optional string custom_map_name = 7;
312
+ optional uint32 max_player_count = 8;
313
+ optional uint32 server_region = 9;
314
+ optional bool has_pass_key = 11;
315
+ optional string lan_host_ping_location = 12;
316
+ optional uint32 lobby_creation_time = 13;
317
+ optional uint32 custom_game_timestamp = 14;
318
+ optional uint64 custom_game_crc = 15;
319
+ optional uint32 min_player_count = 16;
320
+ optional bool penalties_enabled = 17;
321
+ }
322
+
323
+ message CMsgJoinableCustomLobbiesResponse {
324
+ repeated .CMsgJoinableCustomLobbiesResponseEntry lobbies = 1;
325
+ }
326
+
327
+ message CMsgQuickJoinCustomLobby {
328
+ message LegacyRegionPing {
329
+ optional uint32 server_region = 1;
330
+ optional uint32 ping = 2;
331
+ optional fixed32 region_code = 3;
332
+ }
333
+
334
+ optional uint32 legacy_server_region = 1;
335
+ optional uint64 custom_game_id = 2;
336
+ optional uint32 client_version = 3;
337
+ optional .CMsgPracticeLobbySetDetails create_lobby_details = 4;
338
+ optional bool allow_any_map = 5;
339
+ repeated .CMsgQuickJoinCustomLobby.LegacyRegionPing legacy_region_pings = 6;
340
+ optional .CMsgClientPingData ping_data = 7;
341
+ }
342
+
343
+ message CMsgQuickJoinCustomLobbyResponse {
344
+ optional .DOTAJoinLobbyResult result = 1 [default = DOTA_JOIN_RESULT_SUCCESS];
345
+ }
346
+
347
+ message CMsgBotGameCreate {
348
+ optional string search_key = 1;
349
+ optional uint32 client_version = 2;
350
+ optional .DOTABotDifficulty difficulty_radiant = 3 [default = BOT_DIFFICULTY_PASSIVE];
351
+ optional .DOTA_GC_TEAM team = 4 [default = DOTA_GC_TEAM_GOOD_GUYS];
352
+ optional uint32 game_mode = 5;
353
+ optional .DOTABotDifficulty difficulty_dire = 6 [default = BOT_DIFFICULTY_PASSIVE];
354
+ }
355
+
356
+ message CMsgDOTAPartyMemberSetCoach {
357
+ optional bool wants_coach = 1;
358
+ }
359
+
360
+ message CMsgDOTASetGroupLeader {
361
+ optional fixed64 new_leader_steamid = 1;
362
+ }
363
+
364
+ message CMsgDOTACancelGroupInvites {
365
+ repeated fixed64 invited_steamids = 1;
366
+ repeated fixed64 invited_groupids = 2;
367
+ }
368
+
369
+ message CMsgDOTASetGroupOpenStatus {
370
+ optional bool open = 1;
371
+ }
372
+
373
+ message CMsgDOTAGroupMergeInvite {
374
+ optional fixed64 other_group_id = 1;
375
+ }
376
+
377
+ message CMsgDOTAGroupMergeResponse {
378
+ optional fixed64 initiator_group_id = 1;
379
+ optional bool accept = 2;
380
+ }
381
+
382
+ message CMsgDOTAGroupMergeReply {
383
+ optional .EDOTAGroupMergeResult result = 1 [default = k_EDOTAGroupMergeResult_OK];
384
+ }
385
+
386
+ message CMsgSpectatorLobbyGameDetails {
387
+ message Team {
388
+ optional uint32 team_id = 1;
389
+ optional string team_name = 2;
390
+ optional fixed64 team_logo = 3;
391
+ }
392
+
393
+ optional uint32 language = 1;
394
+ optional uint64 match_id = 2;
395
+ optional fixed64 server_steam_id = 3;
396
+ optional string stream_url = 4;
397
+ optional string stream_name = 5;
398
+ optional uint32 league_id = 6;
399
+ optional uint32 series_type = 7;
400
+ optional uint32 series_game = 8;
401
+ optional .CMsgSpectatorLobbyGameDetails.Team radiant_team = 9;
402
+ optional .CMsgSpectatorLobbyGameDetails.Team dire_team = 10;
403
+ }
404
+
405
+ message CMsgSetSpectatorLobbyDetails {
406
+ optional uint64 lobby_id = 1;
407
+ optional string lobby_name = 2;
408
+ optional string pass_key = 3;
409
+ optional .CMsgSpectatorLobbyGameDetails game_details = 4;
410
+ }
411
+
412
+ message CMsgCreateSpectatorLobby {
413
+ optional uint32 client_version = 1;
414
+ optional .CMsgSetSpectatorLobbyDetails details = 2;
415
+ }
416
+
417
+ message CMsgSpectatorLobbyList {
418
+ }
419
+
420
+ message CMsgSpectatorLobbyListResponse {
421
+ message SpectatorLobby {
422
+ optional uint64 lobby_id = 1;
423
+ optional string game_name = 2;
424
+ optional bool requires_pass_key = 3;
425
+ optional uint32 leader_account_id = 4;
426
+ optional uint32 member_count = 5;
427
+ optional .CMsgSpectatorLobbyGameDetails game_details = 7;
428
+ }
429
+
430
+ repeated .CMsgSpectatorLobbyListResponse.SpectatorLobby lobbies = 1;
431
+ }
432
+
433
+ message CMsgClientToGCRequestSteamDatagramTicket {
434
+ optional fixed64 server_steam_id = 1;
435
+ }
436
+
437
+ message CMsgClientToGCRequestSteamDatagramTicketResponse {
438
+ optional bytes serialized_ticket = 1;
439
+ optional string message = 2;
440
+ }
441
+
442
+ message CMsgGCToClientSteamDatagramTicket {
443
+ optional fixed32 legacy_time_expiry = 1;
444
+ optional fixed64 legacy_authorized_steam_id = 2;
445
+ optional fixed32 legacy_authorized_public_ip = 3;
446
+ optional fixed64 legacy_gameserver_steam_id = 4;
447
+ optional fixed64 legacy_gameserver_net_id = 5;
448
+ optional bytes legacy_signature = 6;
449
+ optional uint32 legacy_app_id = 7;
450
+ repeated bytes legacy_extra_fields = 8;
451
+ optional bytes serialized_ticket = 16;
452
+ }
453
+
454
+ message CMsgGCToClientRequestLaneSelection {
455
+ }
456
+
457
+ message CMsgGCToClientRequestLaneSelectionResponse {
458
+ optional uint32 lane_selection_flags = 1;
459
+ optional bool high_priority_disabled = 2;
460
+ }
461
+
462
+ message CMsgGCToClientRequestMMInfo {
463
+ }
464
+
465
+ message CMsgClientToGCMMInfo {
466
+ optional uint32 lane_selection_flags = 1;
467
+ optional bool high_priority_disabled = 2;
468
+ }