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,376 @@
1
+ import "steammessages.proto";
2
+ import "gcsdk_gcmessages.proto";
3
+ import "dota_shared_enums.proto";
4
+ import "dota_gcmessages_common.proto";
5
+ import "dota_match_metadata.proto";
6
+
7
+ enum ETeamFanContentStatus {
8
+ TEAM_FAN_CONTENT_STATUS_INVALID = 0;
9
+ TEAM_FAN_CONTENT_STATUS_PENDING = 1;
10
+ TEAM_FAN_CONTENT_STATUS_EVALUATED = 2;
11
+ }
12
+
13
+ enum ETeamFanContentAssetType {
14
+ k_eFanContentAssetType_LogoPNG = 1;
15
+ k_eFanContentAssetType_LogoSVG = 2;
16
+ k_eFanContentAssetType_Logo3D = 3;
17
+ k_eFanContentAssetType_Players = 4;
18
+ k_eFanContentAssetType_Sprays = 5;
19
+ k_eFanContentAssetType_Wallpapers = 6;
20
+ k_eFanContentAssetType_Emoticons = 7;
21
+ k_eFanContentAssetType_VoiceLines = 8;
22
+ k_eFanContentAssetType_Localization = 9;
23
+ }
24
+
25
+ enum ETeamFanContentAssetStatus {
26
+ k_eFanContentAssetStatus_None = 0;
27
+ k_eFanContentAssetStatus_Approved = 1;
28
+ k_eFanContentAssetStatus_Rejected = 2;
29
+ }
30
+
31
+ message CMsgArcanaVotes {
32
+ message Match {
33
+ optional uint32 match_id = 1;
34
+ optional uint32 hero_id_0 = 2;
35
+ optional uint32 hero_id_1 = 3;
36
+ optional uint32 hero_seeding_0 = 4;
37
+ optional uint32 hero_seeding_1 = 5;
38
+ optional uint32 vote_count_0 = 6;
39
+ optional uint32 vote_count_1 = 7;
40
+ optional uint32 voting_state = 8;
41
+ optional uint32 round_number = 9;
42
+ optional bool is_votes_hidden = 10;
43
+ optional uint32 calibration_time_remaining = 11;
44
+ }
45
+
46
+ enum VotingState {
47
+ FINISHED = 0;
48
+ IN_PROGRESS = 1;
49
+ IN_FUTURE = 2;
50
+ }
51
+
52
+ repeated .CMsgArcanaVotes.Match matches = 1;
53
+ optional uint32 round_time_remaining = 2;
54
+ optional uint32 round_number = 3;
55
+ optional uint32 voting_state = 4;
56
+ optional bool is_current_round_calibrating = 5;
57
+ optional uint32 closest_active_match_id = 6;
58
+ optional uint32 event_id = 7;
59
+ optional uint32 voting_start_time = 8;
60
+ }
61
+
62
+ message CMsgDOTADPCFeed {
63
+ message Element {
64
+ optional .CMsgDOTADPCFeed.EFeedElementType type = 1 [default = FEED_SERIES_RESULT];
65
+ optional uint32 timestamp = 2;
66
+ optional uint32 series_id = 3;
67
+ optional uint64 match_id = 4;
68
+ optional uint32 team_id = 5;
69
+ optional uint32 account_id = 6;
70
+ optional uint32 league_id = 7;
71
+ optional uint32 node_id = 8;
72
+ optional uint64 server_steam_id = 13;
73
+ optional uint32 data_1 = 9;
74
+ optional uint32 data_2 = 10;
75
+ optional uint32 data_3 = 11;
76
+ optional uint32 data_4 = 12;
77
+ }
78
+
79
+ enum EFeedElementType {
80
+ FEED_SERIES_RESULT = 1;
81
+ FEED_MATCH_POPULAR = 2;
82
+ FEED_TEAM_UPCOMING_MATCH = 3;
83
+ FEED_TEAM_LEAGUE_RESULT = 4;
84
+ FEED_TEAM_ADD_PLAYER = 5;
85
+ FEED_TEAM_REMOVE_PLAYER = 6;
86
+ FEED_TEAM_DISBAND = 7;
87
+ FEED_LEAGUE_UPCOMING = 8;
88
+ FEED_LEAGUE_CONCLUDED = 9;
89
+ FEED_DPC_STANDINGS = 10;
90
+ FEED_ALERT_PREDICTIONS = 11;
91
+ FEED_ALERT_FANTASY = 12;
92
+ FEED_LEAGUE_LIVE_MATCH = 13;
93
+ FEED_LEAGUE_INPROGRESS_SERIES = 14;
94
+ }
95
+
96
+ repeated .CMsgDOTADPCFeed.Element elements = 1;
97
+ }
98
+
99
+ message CMsgDOTADPCUserInfo {
100
+ optional bool is_plus_subscriber = 1;
101
+ }
102
+
103
+ message CMsgDraftTrivia {
104
+ message DraftTriviaHeroInfo {
105
+ optional uint32 hero_id = 1;
106
+ optional uint32 role = 2;
107
+ }
108
+
109
+ message DraftTriviaMatchInfo {
110
+ repeated .CMsgDraftTrivia.DraftTriviaHeroInfo radiant_heroes = 1;
111
+ repeated .CMsgDraftTrivia.DraftTriviaHeroInfo dire_heroes = 2;
112
+ }
113
+
114
+ message PreviousResult {
115
+ optional bool voted_correctly = 1;
116
+ optional bool voted_radiant = 2;
117
+ optional .CMsgDraftTrivia.DraftTriviaMatchInfo match_hero_info = 3;
118
+ optional uint32 match_rank_tier = 4;
119
+ optional uint32 end_time = 5;
120
+ optional uint64 match_id = 6;
121
+ }
122
+
123
+ optional bool has_valid_match = 1;
124
+ optional .CMsgDraftTrivia.DraftTriviaMatchInfo match_hero_info = 2;
125
+ optional uint32 match_rank_tier = 3;
126
+ optional uint32 end_time = 4;
127
+ optional uint32 event_id = 5;
128
+ optional bool current_match_voted_radiant = 6;
129
+ optional .CMsgDraftTrivia.PreviousResult previous_result = 7;
130
+ optional uint32 current_streak = 8;
131
+ }
132
+
133
+ message CMsgTeamFanContentAssetStatus {
134
+ optional .ETeamFanContentAssetType asset_type = 1 [default = k_eFanContentAssetType_LogoPNG];
135
+ optional uint32 asset_index = 2;
136
+ optional .ETeamFanContentAssetStatus asset_status = 3 [default = k_eFanContentAssetStatus_None];
137
+ optional uint32 crc = 4;
138
+ }
139
+
140
+ message CMsgTeamFanContentAssetStatusResponse {
141
+ enum EResult {
142
+ k_eSuccess = 0;
143
+ k_eInternalError = 1;
144
+ }
145
+
146
+ optional .CMsgTeamFanContentAssetStatusResponse.EResult result = 1 [default = k_eSuccess];
147
+ }
148
+
149
+ message CMsgTeamFanContentStatus {
150
+ message TeamStatus {
151
+ optional string name = 1;
152
+ optional uint32 team_id = 2;
153
+ optional string logo_url = 3;
154
+ optional .ETeamFanContentStatus status = 4 [default = TEAM_FAN_CONTENT_STATUS_INVALID];
155
+ optional uint32 timestamp = 5;
156
+ optional uint64 ugc_logo = 7;
157
+ optional uint32 workshop_account_id = 8;
158
+ optional string abbreviation = 9;
159
+ optional uint32 voiceline_count = 10;
160
+ optional uint32 spray_count = 11;
161
+ optional uint32 emoticon_count = 12;
162
+ optional uint32 wallpaper_count = 13;
163
+ optional string comment = 14;
164
+ optional uint32 comment_timestamp = 15;
165
+ repeated .CMsgTeamFanContentAssetStatus asset_status = 16;
166
+ optional uint32 email_timestamp = 17;
167
+ optional uint32 email_tier = 18;
168
+ optional string languages = 19;
169
+ }
170
+
171
+ repeated .CMsgTeamFanContentStatus.TeamStatus team_status_list = 1;
172
+ }
173
+
174
+ message CMsgTeamFanContentAutographStatus {
175
+ message AutographStatus {
176
+ optional string pro_name = 1;
177
+ optional uint32 account_id = 2;
178
+ optional uint32 timestamp = 3;
179
+ optional string file = 4;
180
+ }
181
+
182
+ message TeamStatus {
183
+ optional string name = 1;
184
+ optional uint32 team_id = 2;
185
+ repeated .CMsgTeamFanContentAutographStatus.AutographStatus autographs = 3;
186
+ optional uint32 workshop_account_id = 4;
187
+ }
188
+
189
+ repeated .CMsgTeamFanContentAutographStatus.TeamStatus team_autographs = 1;
190
+ }
191
+
192
+ message CMsgDPCEvent {
193
+ message PhaseInfo {
194
+ optional .CMsgDPCEvent.ELeagueEventPhase phase = 1 [default = PHASE_INVALID];
195
+ optional uint32 node_group_id = 2;
196
+ }
197
+
198
+ message League {
199
+ optional .ELeagueRegion region = 1 [default = LEAGUE_REGION_UNSET];
200
+ optional .ELeagueDivision division = 2 [default = LEAGUE_DIVISION_UNSET];
201
+ optional uint32 league_id = 3;
202
+ repeated .CMsgDPCEvent.PhaseInfo phases = 4;
203
+ }
204
+
205
+ enum ELeagueEvent {
206
+ EVENT_INVALID = 0;
207
+ SPRING_2021_LEAGUE = 1;
208
+ SPRING_2021_MAJOR = 2;
209
+ INTERNATIONAL_2021_QUALIFIERS = 3;
210
+ INTERNATIONAL_2021 = 4;
211
+ WINTER_2021_LEAGUE = 5;
212
+ WINTER_2021_LEAGUE_FINALS = 6;
213
+ SPRING_2022_LEAGUE = 7;
214
+ SPRING_2022_MAJOR = 8;
215
+ SUMMER_2022_LEAGUE = 9;
216
+ SUMMER_2022_MAJOR = 10;
217
+ INTERNATIONAL_2022 = 11;
218
+ CHINA_REGIONAL_FINALS = 12;
219
+ INTERNATIONAL_2022_REGIONAL_QUALIFIERS = 13;
220
+ INTERNATIONAL_2022_LAST_CHANCE_QUALIFIERS = 14;
221
+ WINTER_2023_LEAGUE = 15;
222
+ WINTER_2023_MAJOR = 16;
223
+ SPRING_2023_LEAGUE = 17;
224
+ SPRING_2023_MAJOR = 18;
225
+ SUMMER_2023_LEAGUE = 19;
226
+ SUMMER_2023_MAJOR = 20;
227
+ INTERNATIONAL_2023 = 21;
228
+ }
229
+
230
+ enum ELeagueEventPhase {
231
+ PHASE_INVALID = 0;
232
+ WILD_CARD = 1;
233
+ GROUP_STAGE = 2;
234
+ GROUP_A = 3;
235
+ GROUP_B = 4;
236
+ OVERALL = 5;
237
+ PLAYOFF = 6;
238
+ RESULTS = 7;
239
+ DPC_POINT_STANDINGS = 8;
240
+ GROUP_C = 9;
241
+ GROUP_D = 10;
242
+ PLACEMENT = 11;
243
+ }
244
+
245
+ enum ELeagueEventType {
246
+ UNKNOWN = 0;
247
+ LEAGUE = 1;
248
+ MAJOR = 2;
249
+ INTERNATIONAL_QUALIFIERS = 3;
250
+ INTERNATIONAL = 4;
251
+ LEAGUE_FINALS = 5;
252
+ }
253
+
254
+ enum ETour {
255
+ TOUR_NONE = 0;
256
+ TOUR_1 = 1;
257
+ TOUR_2 = 2;
258
+ TOUR_3 = 3;
259
+ }
260
+
261
+ optional .CMsgDPCEvent.ELeagueEvent event = 1 [default = EVENT_INVALID];
262
+ optional .CMsgDPCEvent.ELeagueEventType event_type = 2 [default = UNKNOWN];
263
+ repeated .CMsgDPCEvent.League leagues = 3;
264
+ optional uint32 registration_period = 4;
265
+ optional bool is_event_upcoming = 5;
266
+ optional bool is_event_completed = 6;
267
+ optional string event_name = 7;
268
+ optional uint32 multicast_league_id = 8;
269
+ repeated uint32 multicast_streams = 9;
270
+ optional .CMsgDPCEvent.ETour tour = 10 [default = TOUR_NONE];
271
+ optional uint32 timestamp_drop_lock = 12;
272
+ optional uint32 timestamp_add_lock = 13;
273
+ optional uint32 timestamp_content_deadline = 14;
274
+ optional bool is_fantasy_enabled = 15;
275
+ optional uint32 timestamp_content_review_deadline = 16;
276
+ }
277
+
278
+ message CMsgDPCEventList {
279
+ repeated .CMsgDPCEvent events = 1;
280
+ }
281
+
282
+ message CMsgDOTAFantasyCardLineup {
283
+ message CardBonus {
284
+ optional uint32 bonus_stat = 1;
285
+ optional uint32 bonus_value = 2;
286
+ }
287
+
288
+ message Card {
289
+ optional uint32 player_account_id = 1;
290
+ optional string player_name = 2;
291
+ optional uint32 team_id = 3;
292
+ optional string team_name = 4;
293
+ optional uint32 role = 5;
294
+ repeated .CMsgDOTAFantasyCardLineup.CardBonus bonuses = 6;
295
+ optional float score = 7;
296
+ optional bool finalized = 8;
297
+ optional uint64 item_id = 9;
298
+ }
299
+
300
+ message League {
301
+ optional uint32 league_id = 1;
302
+ repeated .CMsgDOTAFantasyCardLineup.Card cards = 2;
303
+ optional float score = 3;
304
+ }
305
+
306
+ message Period {
307
+ optional uint32 fantasy_period = 1 [default = 4294967295];
308
+ optional uint32 timestamp_start = 2;
309
+ optional uint32 timestamp_end = 3;
310
+ repeated .CMsgDOTAFantasyCardLineup.League leagues = 4;
311
+ }
312
+
313
+ repeated .CMsgDOTAFantasyCardLineup.Period periods = 1;
314
+ }
315
+
316
+ message CMsgDOTAFantasyCardList {
317
+ message CardBonus {
318
+ optional uint32 bonus_stat = 1;
319
+ optional uint32 bonus_value = 2;
320
+ }
321
+
322
+ message Card {
323
+ optional uint32 player_account_id = 1;
324
+ optional string player_name = 2;
325
+ optional uint32 team_id = 3;
326
+ optional string team_name = 4;
327
+ optional uint32 role = 5;
328
+ repeated .CMsgDOTAFantasyCardList.CardBonus bonuses = 6;
329
+ optional uint64 item_id = 8;
330
+ }
331
+
332
+ repeated .CMsgDOTAFantasyCardList.Card cards = 1;
333
+ }
334
+
335
+ message CMsgChatToxicityToxicPlayerMatchesReport {
336
+ message IndividualRow {
337
+ optional uint32 player_account_id = 1;
338
+ optional uint32 num_matches_seen = 2;
339
+ optional uint32 num_messages = 3;
340
+ optional uint32 num_messages_toxic = 4;
341
+ optional uint64 first_match_seen = 5;
342
+ optional uint64 last_match_seen = 6;
343
+ }
344
+
345
+ repeated .CMsgChatToxicityToxicPlayerMatchesReport.IndividualRow rows = 1;
346
+ }
347
+
348
+ message CMsgChatToxicityReport {
349
+ optional uint32 num_matches_seen = 1;
350
+ optional uint32 num_messages = 2;
351
+ optional uint32 num_messages_ml_thinks_toxic = 4;
352
+ optional string status = 5;
353
+ optional uint32 result = 6;
354
+ optional string message = 7;
355
+ }
356
+
357
+ message CMsgGetTeamAuditInformation {
358
+ message Action {
359
+ optional uint32 registration_period = 1;
360
+ optional uint32 account_id = 2;
361
+ optional uint32 action = 3;
362
+ optional uint32 timestamp = 4;
363
+ optional string player_name = 5;
364
+ optional string player_real_name = 6;
365
+ }
366
+
367
+ optional uint32 team_id = 1;
368
+ optional string team_name = 2;
369
+ repeated .CMsgGetTeamAuditInformation.Action actions = 3;
370
+ optional uint32 last_updated = 4;
371
+ }
372
+
373
+ message CMsgDOTADPCMatch {
374
+ optional .CMsgDOTAMatch match = 1;
375
+ optional .CDOTAMatchMetadata metadata = 2;
376
+ }
@@ -0,0 +1,33 @@
1
+ import "google/protobuf/descriptor.proto";
2
+
3
+ extend .google.protobuf.EnumValueOptions {
4
+ optional string hud_localize_token = 50501;
5
+ }
6
+
7
+ enum EHeroSelectionText {
8
+ k_EHeroSelectionText_Invalid = -1;
9
+ k_EHeroSelectionText_None = 0;
10
+ k_EHeroSelectionText_ChooseHero = 1 [(hud_localize_token) = "#DOTA_Hero_Selection_ChooseHero"];
11
+ k_EHeroSelectionText_AllDraft_Planning_YouFirst = 2 [(hud_localize_token) = "#DOTA_Hero_Selection_AllDraft_Planning_YouFirst"];
12
+ k_EHeroSelectionText_AllDraft_Planning_TheyFirst = 3 [(hud_localize_token) = "#DOTA_Hero_Selection_AllDraft_Planning_TheyFirst"];
13
+ k_EHeroSelectionText_AllDraft_Banning = 4 [(hud_localize_token) = "#DOTA_Hero_Selection_AllPick_Banning_Nominate"];
14
+ k_EHeroSelectionText_AllDraft_Ban_Waiting = 5 [(hud_localize_token) = "#DOTA_Hero_Selection_AllPick_Banning_Nominated"];
15
+ k_EHeroSelectionText_AllDraft_PickTwo = 6 [(hud_localize_token) = "#DOTA_Hero_Selection_AllPick_PickPhase_PickTwo"];
16
+ k_EHeroSelectionText_AllDraft_PickOneMore = 7 [(hud_localize_token) = "#DOTA_Hero_Selection_AllPick_PickPhase_PickOneMore"];
17
+ k_EHeroSelectionText_AllDraft_PickOne = 8 [(hud_localize_token) = "#DOTA_Hero_Selection_AllPick_PickPhase_PickOne"];
18
+ k_EHeroSelectionText_AllDraft_WaitingRadiant = 9 [(hud_localize_token) = "#DOTA_Hero_Selection_AllPick_PickPhase_WaitingRadiant"];
19
+ k_EHeroSelectionText_AllDraft_WaitingDire = 10 [(hud_localize_token) = "#DOTA_Hero_Selection_AllPick_PickPhase_WaitingDire"];
20
+ k_EHeroSelectionText_AllDraft_TeammateRandomed = 11 [(hud_localize_token) = "#DOTA_Hero_Selection_AllDraft_TeammateRandomed_Panorama"];
21
+ k_EHeroSelectionText_AllDraft_YouPicking_LosingGold = 12 [(hud_localize_token) = "#DOTA_Hero_Selection_AllDraft_YouPicking_LosingGold"];
22
+ k_EHeroSelectionText_AllDraft_TheyPicking_LosingGold = 13 [(hud_localize_token) = "#DOTA_Hero_Selection_AllDraft_TheyPicking_LosingGold"];
23
+ k_EHeroSelectionText_CaptainsMode_ChooseCaptain = 14 [(hud_localize_token) = "#DOTA_Hero_Selection_CaptainsMode_ChooseCaptain"];
24
+ k_EHeroSelectionText_CaptainsMode_WaitingForChooseCaptain = 15 [(hud_localize_token) = "#DOTA_Hero_Selection_CaptainsMode_WaitingForChooseCaptain"];
25
+ k_EHeroSelectionText_CaptainsMode_YouSelect = 16 [(hud_localize_token) = "#DOTA_Hero_Selection_CaptainsMode_YouSelect"];
26
+ k_EHeroSelectionText_CaptainsMode_TheySelect = 17 [(hud_localize_token) = "#DOTA_Hero_Selection_CaptainsMode_TheySelect"];
27
+ k_EHeroSelectionText_CaptainsMode_YouBan = 18 [(hud_localize_token) = "#DOTA_Hero_Selection_CaptainsMode_YouBan"];
28
+ k_EHeroSelectionText_CaptainsMode_TheyBan = 19 [(hud_localize_token) = "#DOTA_Hero_Selection_CaptainsMode_TheyBan"];
29
+ k_EHeroSelectionText_RandomDraft_HeroReview = 20 [(hud_localize_token) = "#DOTA_Hero_Selection_RandomDraft_HeroReview"];
30
+ k_EHeroSelectionText_RandomDraft_RoundDisplay = 21 [(hud_localize_token) = "#DOTA_Hero_Selection_AllDraft_RoundDisplay"];
31
+ k_EHeroSelectionText_RandomDraft_Waiting = 22 [(hud_localize_token) = "#DOTA_Hero_Selection_AllDraft_Waiting"];
32
+ k_EHeroSelectionText_EventGame_BanPhase = 23 [(hud_localize_token) = "#DOTA_Hero_Selection_EventGame_BanPhase"];
33
+ }