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.
- package/.github/workflows/npm-publish-github-packages.yml +36 -0
- package/README.md +25 -0
- package/config.json +6 -0
- package/helpers/Coordinator.js +157 -0
- package/helpers/Helper.js +171 -0
- package/helpers/Lobby.js +396 -0
- package/helpers/Protos.js +47 -0
- package/helpers/VDF.js +140 -0
- package/index.js +137 -0
- package/package.json +25 -0
- package/protobufs/.gitattributes +1 -0
- package/protobufs/LICENSE +24 -0
- package/protobufs/README.md +7 -0
- package/protobufs/artifact/base_gcmessages.proto +532 -0
- package/protobufs/artifact/c_peer2peer_netmessages.proto +57 -0
- package/protobufs/artifact/clientmessages.proto +51 -0
- package/protobufs/artifact/connectionless_netmessages.proto +21 -0
- package/protobufs/artifact/dcg_gamemessages.proto +638 -0
- package/protobufs/artifact/dcg_gcmessages_client.proto +1590 -0
- package/protobufs/artifact/dcg_gcmessages_common.proto +617 -0
- package/protobufs/artifact/dcg_gcmessages_server.proto +395 -0
- package/protobufs/artifact/demo.proto +149 -0
- package/protobufs/artifact/econ_gcmessages.proto +1033 -0
- package/protobufs/artifact/econ_shared_enums.proto +47 -0
- package/protobufs/artifact/gameevents.proto +121 -0
- package/protobufs/artifact/gametoolevents.proto +78 -0
- package/protobufs/artifact/gcsdk_gcmessages.proto +391 -0
- package/protobufs/artifact/gcsystemmsgs.proto +28 -0
- package/protobufs/artifact/netmessages.proto +551 -0
- package/protobufs/artifact/network_connection.proto +117 -0
- package/protobufs/artifact/networkbasetypes.proto +206 -0
- package/protobufs/artifact/networksystem_protomessages.proto +19 -0
- package/protobufs/artifact/steamdatagram_messages_auth.proto +38 -0
- package/protobufs/artifact/steamdatagram_messages_sdr.proto +441 -0
- package/protobufs/artifact/steammessages.proto +636 -0
- package/protobufs/artifact/steammessages_base.proto +83 -0
- package/protobufs/artifact/steammessages_cloud.steamworkssdk.proto +68 -0
- package/protobufs/artifact/steammessages_oauth.steamworkssdk.proto +18 -0
- package/protobufs/artifact/steammessages_publishedfile.steamworkssdk.proto +233 -0
- package/protobufs/artifact/steammessages_unified_base.steamworkssdk.proto +30 -0
- package/protobufs/artifact/steamnetworkingsockets_messages.proto +113 -0
- package/protobufs/artifact/steamnetworkingsockets_messages_certs.proto +32 -0
- package/protobufs/artifact/steamnetworkingsockets_messages_udp.proto +76 -0
- package/protobufs/artifact/te.proto +257 -0
- package/protobufs/artifact/uifontfile_format.proto +16 -0
- package/protobufs/artifact/usermessages.proto +473 -0
- package/protobufs/csgo/base_gcmessages_csgo.proto +547 -0
- package/protobufs/csgo/c_peer2peer_netmessages.proto +55 -0
- package/protobufs/csgo/clientmessages.proto +48 -0
- package/protobufs/csgo/connectionless_netmessages.proto +17 -0
- package/protobufs/csgo/cs_gameevents.proto +35 -0
- package/protobufs/csgo/cs_usercmd.proto +54 -0
- package/protobufs/csgo/cstrike15_gcmessages.proto +1415 -0
- package/protobufs/csgo/cstrike15_usermessages.proto +596 -0
- package/protobufs/csgo/demo.proto +160 -0
- package/protobufs/csgo/econ_gcmessages.proto +228 -0
- package/protobufs/csgo/engine_gcmessages.proto +14 -0
- package/protobufs/csgo/enums_clientserver.proto +1529 -0
- package/protobufs/csgo/fatdemo.proto +125 -0
- package/protobufs/csgo/gameevents.proto +120 -0
- package/protobufs/csgo/gcsdk_gcmessages.proto +323 -0
- package/protobufs/csgo/gcsystemmsgs.proto +242 -0
- package/protobufs/csgo/netmessages.proto +607 -0
- package/protobufs/csgo/network_connection.proto +126 -0
- package/protobufs/csgo/networkbasetypes.proto +244 -0
- package/protobufs/csgo/networksystem_protomessages.proto +17 -0
- package/protobufs/csgo/steamdatagram_messages_auth.proto +65 -0
- package/protobufs/csgo/steamdatagram_messages_sdr.proto +534 -0
- package/protobufs/csgo/steammessages.proto +597 -0
- package/protobufs/csgo/steammessages_base.proto +301 -0
- package/protobufs/csgo/steammessages_cloud.steamworkssdk.proto +68 -0
- package/protobufs/csgo/steammessages_gamenetworkingui.proto +61 -0
- package/protobufs/csgo/steammessages_helprequest.steamworkssdk.proto +22 -0
- package/protobufs/csgo/steammessages_oauth.steamworkssdk.proto +18 -0
- package/protobufs/csgo/steammessages_player.steamworkssdk.proto +254 -0
- package/protobufs/csgo/steammessages_publishedfile.steamworkssdk.proto +233 -0
- package/protobufs/csgo/steammessages_unified_base.steamworkssdk.proto +30 -0
- package/protobufs/csgo/steamnetworkingsockets_messages.proto +205 -0
- package/protobufs/csgo/steamnetworkingsockets_messages_certs.proto +39 -0
- package/protobufs/csgo/steamnetworkingsockets_messages_udp.proto +75 -0
- package/protobufs/csgo/te.proto +259 -0
- package/protobufs/csgo/uifontfile_format.proto +13 -0
- package/protobufs/csgo/usercmd.proto +37 -0
- package/protobufs/csgo/usermessages.proto +742 -0
- package/protobufs/csgo/valveextensions.proto +17 -0
- package/protobufs/dota2/base_gcmessages.proto +400 -0
- package/protobufs/dota2/c_peer2peer_netmessages.proto +55 -0
- package/protobufs/dota2/clientmessages.proto +48 -0
- package/protobufs/dota2/connectionless_netmessages.proto +19 -0
- package/protobufs/dota2/demo.proto +160 -0
- package/protobufs/dota2/dota_broadcastmessages.proto +29 -0
- package/protobufs/dota2/dota_client_enums.proto +93 -0
- package/protobufs/dota2/dota_clientmessages.proto +573 -0
- package/protobufs/dota2/dota_commonmessages.proto +146 -0
- package/protobufs/dota2/dota_gcmessages_client.proto +3336 -0
- package/protobufs/dota2/dota_gcmessages_client_battle_report.proto +393 -0
- package/protobufs/dota2/dota_gcmessages_client_bingo.proto +108 -0
- package/protobufs/dota2/dota_gcmessages_client_candy_shop.proto +302 -0
- package/protobufs/dota2/dota_gcmessages_client_chat.proto +239 -0
- package/protobufs/dota2/dota_gcmessages_client_coaching.proto +376 -0
- package/protobufs/dota2/dota_gcmessages_client_fantasy.proto +564 -0
- package/protobufs/dota2/dota_gcmessages_client_guild.proto +651 -0
- package/protobufs/dota2/dota_gcmessages_client_guild_events.proto +231 -0
- package/protobufs/dota2/dota_gcmessages_client_match_management.proto +468 -0
- package/protobufs/dota2/dota_gcmessages_client_showcase.proto +528 -0
- package/protobufs/dota2/dota_gcmessages_client_team.proto +275 -0
- package/protobufs/dota2/dota_gcmessages_client_tournament.proto +173 -0
- package/protobufs/dota2/dota_gcmessages_client_watch.proto +205 -0
- package/protobufs/dota2/dota_gcmessages_common.proto +1667 -0
- package/protobufs/dota2/dota_gcmessages_common_bot_script.proto +294 -0
- package/protobufs/dota2/dota_gcmessages_common_league.proto +351 -0
- package/protobufs/dota2/dota_gcmessages_common_lobby.proto +391 -0
- package/protobufs/dota2/dota_gcmessages_common_match_management.proto +488 -0
- package/protobufs/dota2/dota_gcmessages_msgid.proto +890 -0
- package/protobufs/dota2/dota_gcmessages_server.proto +1495 -0
- package/protobufs/dota2/dota_gcmessages_webapi.proto +376 -0
- package/protobufs/dota2/dota_hud_types.proto +33 -0
- package/protobufs/dota2/dota_match_metadata.proto +346 -0
- package/protobufs/dota2/dota_messages_mlbot.proto +62 -0
- package/protobufs/dota2/dota_modifiers.proto +53 -0
- package/protobufs/dota2/dota_scenariomessages.proto +226 -0
- package/protobufs/dota2/dota_shared_enums.proto +820 -0
- package/protobufs/dota2/dota_usercmd.proto +15 -0
- package/protobufs/dota2/dota_usermessages.proto +1655 -0
- package/protobufs/dota2/econ_gcmessages.proto +997 -0
- package/protobufs/dota2/econ_shared_enums.proto +37 -0
- package/protobufs/dota2/engine_gcmessages.proto +14 -0
- package/protobufs/dota2/enums_clientserver.proto +1547 -0
- package/protobufs/dota2/gameevents.proto +120 -0
- package/protobufs/dota2/gametoolevents.proto +78 -0
- package/protobufs/dota2/gcsdk_gcmessages.proto +488 -0
- package/protobufs/dota2/gcsystemmsgs.proto +26 -0
- package/protobufs/dota2/netmessages.proto +604 -0
- package/protobufs/dota2/network_connection.proto +126 -0
- package/protobufs/dota2/networkbasetypes.proto +244 -0
- package/protobufs/dota2/networksystem_protomessages.proto +17 -0
- package/protobufs/dota2/steamdatagram_messages_auth.proto +65 -0
- package/protobufs/dota2/steamdatagram_messages_sdr.proto +533 -0
- package/protobufs/dota2/steammessages.proto +108 -0
- package/protobufs/dota2/steammessages_base.proto +332 -0
- package/protobufs/dota2/steammessages_clientserver_login.proto +155 -0
- package/protobufs/dota2/steammessages_cloud.steamworkssdk.proto +68 -0
- package/protobufs/dota2/steammessages_gamenetworkingui.proto +42 -0
- package/protobufs/dota2/steammessages_helprequest.steamworkssdk.proto +22 -0
- package/protobufs/dota2/steammessages_int.proto +628 -0
- package/protobufs/dota2/steammessages_oauth.steamworkssdk.proto +18 -0
- package/protobufs/dota2/steammessages_player.steamworkssdk.proto +254 -0
- package/protobufs/dota2/steammessages_publishedfile.steamworkssdk.proto +233 -0
- package/protobufs/dota2/steammessages_steamlearn.steamworkssdk.proto +360 -0
- package/protobufs/dota2/steammessages_unified_base.steamworkssdk.proto +30 -0
- package/protobufs/dota2/steamnetworkingsockets_messages.proto +205 -0
- package/protobufs/dota2/steamnetworkingsockets_messages_certs.proto +39 -0
- package/protobufs/dota2/steamnetworkingsockets_messages_udp.proto +75 -0
- package/protobufs/dota2/te.proto +259 -0
- package/protobufs/dota2/uifontfile_format.proto +13 -0
- package/protobufs/dota2/usercmd.proto +38 -0
- package/protobufs/dota2/usermessages.proto +721 -0
- package/protobufs/dota2/valveextensions.proto +17 -0
- package/protobufs/google/protobuf/descriptor.proto +281 -0
- package/protobufs/steam/clientmetrics.proto +45 -0
- package/protobufs/steam/content_manifest.proto +62 -0
- package/protobufs/steam/contenthubs.proto +41 -0
- package/protobufs/steam/encrypted_app_ticket.proto +10 -0
- package/protobufs/steam/enums.proto +482 -0
- package/protobufs/steam/enums_clientserver.proto +1525 -0
- package/protobufs/steam/enums_productinfo.proto +13 -0
- package/protobufs/steam/htmlmessages.proto +1031 -0
- package/protobufs/steam/offline_ticket.proto +8 -0
- package/protobufs/steam/steamdatagram_messages_auth.proto +65 -0
- package/protobufs/steam/steamdatagram_messages_sdr.proto +534 -0
- package/protobufs/steam/steammessages_accounthardware.steamclient.proto +167 -0
- package/protobufs/steam/steammessages_appoverview.proto +202 -0
- package/protobufs/steam/steammessages_auth.steamclient.proto +375 -0
- package/protobufs/steam/steammessages_base.proto +335 -0
- package/protobufs/steam/steammessages_broadcast.steamclient.proto +619 -0
- package/protobufs/steam/steammessages_chat.steamclient.proto +1070 -0
- package/protobufs/steam/steammessages_client_objects.proto +648 -0
- package/protobufs/steam/steammessages_clientlanp2p.proto +43 -0
- package/protobufs/steam/steammessages_clientmetrics.steamclient.proto +192 -0
- package/protobufs/steam/steammessages_clientnotificationtypes.proto +242 -0
- package/protobufs/steam/steammessages_clientserver.proto +392 -0
- package/protobufs/steam/steammessages_clientserver_2.proto +771 -0
- package/protobufs/steam/steammessages_clientserver_appinfo.proto +131 -0
- package/protobufs/steam/steammessages_clientserver_friends.proto +260 -0
- package/protobufs/steam/steammessages_clientserver_gameservers.proto +159 -0
- package/protobufs/steam/steammessages_clientserver_lbs.proto +70 -0
- package/protobufs/steam/steammessages_clientserver_login.proto +167 -0
- package/protobufs/steam/steammessages_clientserver_mms.proto +228 -0
- package/protobufs/steam/steammessages_clientserver_ucm.proto +206 -0
- package/protobufs/steam/steammessages_clientserver_uds.proto +125 -0
- package/protobufs/steam/steammessages_clientserver_ufs.proto +172 -0
- package/protobufs/steam/steammessages_clientserver_userstats.proto +80 -0
- package/protobufs/steam/steammessages_clientsettings.proto +184 -0
- package/protobufs/steam/steammessages_cloud.steamclient.proto +422 -0
- package/protobufs/steam/steammessages_contentsystem.steamclient.proto +123 -0
- package/protobufs/steam/steammessages_credentials.steamclient.proto +96 -0
- package/protobufs/steam/steammessages_datapublisher.steamclient.proto +102 -0
- package/protobufs/steam/steammessages_depotbuilder.steamclient.proto +99 -0
- package/protobufs/steam/steammessages_deviceauth.steamclient.proto +169 -0
- package/protobufs/steam/steammessages_econ.steamclient.proto +137 -0
- package/protobufs/steam/steammessages_familygroups.steamclient.proto +389 -0
- package/protobufs/steam/steammessages_friendmessages.steamclient.proto +141 -0
- package/protobufs/steam/steammessages_gamenetworking.steamclient.proto +25 -0
- package/protobufs/steam/steammessages_gamenetworkingui.proto +61 -0
- package/protobufs/steam/steammessages_gamenotifications.steamclient.proto +131 -0
- package/protobufs/steam/steammessages_gameservers.steamclient.proto +136 -0
- package/protobufs/steam/steammessages_hiddevices.proto +157 -0
- package/protobufs/steam/steammessages_inventory.steamclient.proto +172 -0
- package/protobufs/steam/steammessages_linkfilter.steamclient.proto +39 -0
- package/protobufs/steam/steammessages_lobbymatchmaking.steamclient.proto +29 -0
- package/protobufs/steam/steammessages_market.steamclient.proto +22 -0
- package/protobufs/steam/steammessages_marketingmessages.steamclient.proto +264 -0
- package/protobufs/steam/steammessages_offline.steamclient.proto +33 -0
- package/protobufs/steam/steammessages_parental.steamclient.proto +260 -0
- package/protobufs/steam/steammessages_parties.steamclient.proto +75 -0
- package/protobufs/steam/steammessages_partnerapps.steamclient.proto +106 -0
- package/protobufs/steam/steammessages_player.steamclient.proto +897 -0
- package/protobufs/steam/steammessages_publishedfile.steamclient.proto +734 -0
- package/protobufs/steam/steammessages_qms.steamclient.proto +111 -0
- package/protobufs/steam/steammessages_remoteclient.proto +99 -0
- package/protobufs/steam/steammessages_remoteclient_discovery.proto +243 -0
- package/protobufs/steam/steammessages_remoteclient_service.steamclient.proto +31 -0
- package/protobufs/steam/steammessages_remoteclient_service_messages.proto +217 -0
- package/protobufs/steam/steammessages_remoteplay.proto +976 -0
- package/protobufs/steam/steammessages_secrets.steamclient.proto +35 -0
- package/protobufs/steam/steammessages_shader.steamclient.proto +89 -0
- package/protobufs/steam/steammessages_site_license.steamclient.proto +103 -0
- package/protobufs/steam/steammessages_sitelicenseclient.proto +38 -0
- package/protobufs/steam/steammessages_siteserverui.proto +130 -0
- package/protobufs/steam/steammessages_star.steamclient.proto +60 -0
- package/protobufs/steam/steammessages_steamtv.steamclient.proto +533 -0
- package/protobufs/steam/steammessages_store.steamclient.proto +404 -0
- package/protobufs/steam/steammessages_storebrowse.steamclient.proto +430 -0
- package/protobufs/steam/steammessages_timedtrial.steamclient.proto +40 -0
- package/protobufs/steam/steammessages_twofactor.steamclient.proto +157 -0
- package/protobufs/steam/steammessages_unified_base.steamclient.proto +33 -0
- package/protobufs/steam/steammessages_unified_test.steamclient.proto +51 -0
- package/protobufs/steam/steammessages_useraccount.steamclient.proto +207 -0
- package/protobufs/steam/steammessages_vac.steamclient.proto +37 -0
- package/protobufs/steam/steammessages_video.steamclient.proto +68 -0
- package/protobufs/steam/steammessages_virtualcontroller.proto +138 -0
- package/protobufs/steam/steammessages_workshop.steamclient.proto +19 -0
- package/protobufs/steam/steamnetworkingsockets_messages.proto +205 -0
- package/protobufs/steam/steamnetworkingsockets_messages_certs.proto +39 -0
- package/protobufs/steam/steamnetworkingsockets_messages_udp.proto +75 -0
- package/protobufs/steam/webuimessages_achievements.proto +29 -0
- package/protobufs/steam/webuimessages_base.proto +24 -0
- package/protobufs/steam/webuimessages_gamenotes.proto +21 -0
- package/protobufs/steam/webuimessages_gamescope.proto +54 -0
- package/protobufs/steam/webuimessages_steamengine.proto +41 -0
- package/protobufs/steam/webuimessages_steamos.proto +114 -0
- package/protobufs/steam/webuimessages_storagedevicemanager.proto +110 -0
- package/protobufs/steam/webuimessages_systemmanager.proto +17 -0
- package/protobufs/steam/webuimessages_transport.proto +18 -0
- package/protobufs/steam/webuimessages_transportvalidation.proto +111 -0
- package/protobufs/tf2/base_gcmessages.proto +561 -0
- package/protobufs/tf2/econ_gcmessages.proto +368 -0
- package/protobufs/tf2/gcsdk_gcmessages.proto +186 -0
- package/protobufs/tf2/gcsystemmsgs.proto +178 -0
- package/protobufs/tf2/steamdatagram_auth_messages.proto +50 -0
- package/protobufs/tf2/steamdatagram_messages.proto +598 -0
- package/protobufs/tf2/steamdatagram_messages_auth.proto +65 -0
- package/protobufs/tf2/steamdatagram_messages_sdr.proto +518 -0
- package/protobufs/tf2/steammessages.proto +577 -0
- package/protobufs/tf2/steammessages_gamenetworkingui.proto +42 -0
- package/protobufs/tf2/steamnetworkingsockets_messages.proto +204 -0
- package/protobufs/tf2/steamnetworkingsockets_messages_certs.proto +38 -0
- package/protobufs/tf2/steamnetworkingsockets_messages_udp.proto +75 -0
- package/protobufs/tf2/tf_gcmessages.proto +1624 -0
- package/protobufs/tf2/tf_proto_def_messages.proto +598 -0
- package/protobufs/underlords/base_gcmessages.proto +532 -0
- package/protobufs/underlords/c_peer2peer_netmessages.proto +57 -0
- package/protobufs/underlords/clientmessages.proto +51 -0
- package/protobufs/underlords/connectionless_netmessages.proto +21 -0
- package/protobufs/underlords/dac_gamemessages.proto +1376 -0
- package/protobufs/underlords/dac_gcmessages_client.proto +1518 -0
- package/protobufs/underlords/dac_gcmessages_common.proto +377 -0
- package/protobufs/underlords/dac_gcmessages_server.proto +417 -0
- package/protobufs/underlords/demo.proto +149 -0
- package/protobufs/underlords/econ_gcmessages.proto +1063 -0
- package/protobufs/underlords/econ_shared_enums.proto +47 -0
- package/protobufs/underlords/enums_clientserver.proto +1538 -0
- package/protobufs/underlords/gameevents.proto +121 -0
- package/protobufs/underlords/gametoolevents.proto +78 -0
- package/protobufs/underlords/gcsdk_gcmessages.proto +448 -0
- package/protobufs/underlords/gcsystemmsgs.proto +29 -0
- package/protobufs/underlords/netmessages.proto +553 -0
- package/protobufs/underlords/network_connection.proto +117 -0
- package/protobufs/underlords/networkbasetypes.proto +219 -0
- package/protobufs/underlords/networksystem_protomessages.proto +19 -0
- package/protobufs/underlords/steamdatagram_messages_auth.proto +64 -0
- package/protobufs/underlords/steamdatagram_messages_sdr.proto +482 -0
- package/protobufs/underlords/steammessages.proto +701 -0
- package/protobufs/underlords/steammessages_base.proto +243 -0
- package/protobufs/underlords/steammessages_clientserver_login.proto +155 -0
- package/protobufs/underlords/steammessages_cloud.steamworkssdk.proto +68 -0
- package/protobufs/underlords/steammessages_helprequest.steamworkssdk.proto +22 -0
- package/protobufs/underlords/steammessages_oauth.steamworkssdk.proto +18 -0
- package/protobufs/underlords/steammessages_player.steamworkssdk.proto +254 -0
- package/protobufs/underlords/steammessages_publishedfile.steamworkssdk.proto +233 -0
- package/protobufs/underlords/steammessages_unified_base.steamworkssdk.proto +30 -0
- package/protobufs/underlords/steamnetworkingsockets_messages.proto +165 -0
- package/protobufs/underlords/steamnetworkingsockets_messages_certs.proto +38 -0
- package/protobufs/underlords/steamnetworkingsockets_messages_udp.proto +74 -0
- package/protobufs/underlords/te.proto +259 -0
- package/protobufs/underlords/uifontfile_format.proto +16 -0
- package/protobufs/underlords/usermessages.proto +511 -0
- package/protobufs/underlords/valveextensions.proto +11 -0
- package/protobufs/update.sh +13 -0
- package/protobufs/webui/common.proto +3998 -0
- package/protobufs/webui/common_base.proto +27 -0
- package/protobufs/webui/service_accountcart.proto +153 -0
- package/protobufs/webui/service_accountlinking.proto +27 -0
- package/protobufs/webui/service_accountprivacy.proto +42 -0
- package/protobufs/webui/service_accountprivateapps.proto +34 -0
- package/protobufs/webui/service_auction.proto +97 -0
- package/protobufs/webui/service_authentication.proto +222 -0
- package/protobufs/webui/service_authenticationsupport.proto +74 -0
- package/protobufs/webui/service_broadcast.proto +562 -0
- package/protobufs/webui/service_chat.proto +11 -0
- package/protobufs/webui/service_chatroom.proto +810 -0
- package/protobufs/webui/service_chatusability.proto +107 -0
- package/protobufs/webui/service_checkout.proto +83 -0
- package/protobufs/webui/service_clan.proto +41 -0
- package/protobufs/webui/service_clanchatrooms.proto +25 -0
- package/protobufs/webui/service_clanfaqs.proto +202 -0
- package/protobufs/webui/service_clientcomm.proto +151 -0
- package/protobufs/webui/service_clientmetrics.proto +22 -0
- package/protobufs/webui/service_cloud.proto +222 -0
- package/protobufs/webui/service_cloudconfigstore.proto +51 -0
- package/protobufs/webui/service_cloudgaming.proto +30 -0
- package/protobufs/webui/service_community.proto +365 -0
- package/protobufs/webui/service_dailydeal.proto +66 -0
- package/protobufs/webui/service_econ.proto +134 -0
- package/protobufs/webui/service_embedded.proto +24 -0
- package/protobufs/webui/service_experimentservice.proto +6 -0
- package/protobufs/webui/service_familygroups.proto +329 -0
- package/protobufs/webui/service_fovasvideo.proto +15 -0
- package/protobufs/webui/service_friendmessages.proto +133 -0
- package/protobufs/webui/service_friendslist.proto +70 -0
- package/protobufs/webui/service_gamenotes.proto +15 -0
- package/protobufs/webui/service_gamerecording.proto +259 -0
- package/protobufs/webui/service_gamerecordingclip.proto +83 -0
- package/protobufs/webui/service_gamerecordingdebug.proto +52 -0
- package/protobufs/webui/service_helprequestlogs.proto +16 -0
- package/protobufs/webui/service_loyaltyrewards.proto +252 -0
- package/protobufs/webui/service_marketingmessages.proto +215 -0
- package/protobufs/webui/service_mobileapp.proto +18 -0
- package/protobufs/webui/service_mobileauth.proto +24 -0
- package/protobufs/webui/service_mobiledevice.proto +26 -0
- package/protobufs/webui/service_mobileperaccount.proto +31 -0
- package/protobufs/webui/service_news.proto +110 -0
- package/protobufs/webui/service_parental.proto +256 -0
- package/protobufs/webui/service_partnermembershipinvite.proto +34 -0
- package/protobufs/webui/service_partnerstorebrowse.proto +28 -0
- package/protobufs/webui/service_phone.proto +51 -0
- package/protobufs/webui/service_physicalgoods.proto +15 -0
- package/protobufs/webui/service_player.proto +917 -0
- package/protobufs/webui/service_promotioneventinvites.proto +109 -0
- package/protobufs/webui/service_promotionplanning.proto +172 -0
- package/protobufs/webui/service_publishedfile.proto +711 -0
- package/protobufs/webui/service_publishing.proto +183 -0
- package/protobufs/webui/service_quest.proto +127 -0
- package/protobufs/webui/service_salefeature.proto +357 -0
- package/protobufs/webui/service_saleitemrewards.proto +54 -0
- package/protobufs/webui/service_shoppingcart.proto +152 -0
- package/protobufs/webui/service_steamawards.proto +76 -0
- package/protobufs/webui/service_steamcharts.proto +75 -0
- package/protobufs/webui/service_steamengine.proto +36 -0
- package/protobufs/webui/service_steamlearn.proto +780 -0
- package/protobufs/webui/service_steamnotification.proto +73 -0
- package/protobufs/webui/service_steamtv.proto +495 -0
- package/protobufs/webui/service_steamvrvoicechat.proto +67 -0
- package/protobufs/webui/service_steamvrwebrtc.proto +48 -0
- package/protobufs/webui/service_storagedevicemanager.proto +104 -0
- package/protobufs/webui/service_store.proto +359 -0
- package/protobufs/webui/service_storeappsimilarity.proto +76 -0
- package/protobufs/webui/service_storebrowse.proto +102 -0
- package/protobufs/webui/service_storemarketing.proto +41 -0
- package/protobufs/webui/service_storequery.proto +103 -0
- package/protobufs/webui/service_storesales.proto +87 -0
- package/protobufs/webui/service_storetopsellers.proto +44 -0
- package/protobufs/webui/service_systemmanager.proto +11 -0
- package/protobufs/webui/service_test_transporterror.proto +6 -0
- package/protobufs/webui/service_transportauth.proto +12 -0
- package/protobufs/webui/service_transportvalidation.proto +69 -0
- package/protobufs/webui/service_twofactor.proto +170 -0
- package/protobufs/webui/service_useraccount.proto +138 -0
- package/protobufs/webui/service_usergameactivity.proto +34 -0
- package/protobufs/webui/service_usergamenotes.proto +70 -0
- package/protobufs/webui/service_usernews.proto +68 -0
- package/protobufs/webui/service_userreviews.proto +96 -0
- package/protobufs/webui/service_video.proto +50 -0
- package/protobufs/webui/service_videoclip.proto +48 -0
- package/protobufs/webui/service_voicechat.proto +139 -0
- package/protobufs/webui/service_webrtc.proto +52 -0
|
@@ -0,0 +1,294 @@
|
|
|
1
|
+
import "valveextensions.proto";
|
|
2
|
+
|
|
3
|
+
message CMsgBotWorldState {
|
|
4
|
+
message Vector {
|
|
5
|
+
optional float x = 1;
|
|
6
|
+
optional float y = 2;
|
|
7
|
+
optional float z = 3;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
message Player {
|
|
11
|
+
optional int32 player_id = 1 [(valve_map_key) = true];
|
|
12
|
+
optional uint32 hero_id = 2;
|
|
13
|
+
optional bool is_alive = 3;
|
|
14
|
+
optional float respawn_time = 4;
|
|
15
|
+
optional uint32 kills = 5;
|
|
16
|
+
optional uint32 deaths = 6;
|
|
17
|
+
optional uint32 assists = 7;
|
|
18
|
+
optional uint32 team_id = 8;
|
|
19
|
+
optional uint32 primary_unit_handle = 9 [default = 4294967295];
|
|
20
|
+
optional int32 mmr = 10;
|
|
21
|
+
optional .CMsgBotWorldState.Vector location = 11;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
message Ability {
|
|
25
|
+
optional uint32 handle = 1 [(valve_map_key) = true];
|
|
26
|
+
optional int32 ability_id = 2 [default = -1];
|
|
27
|
+
optional uint32 slot = 3;
|
|
28
|
+
optional uint32 caster_handle = 5 [default = 4294967295];
|
|
29
|
+
optional uint32 level = 6;
|
|
30
|
+
optional uint32 cast_range = 10;
|
|
31
|
+
optional float channel_time = 11;
|
|
32
|
+
optional float cooldown_remaining = 12 [default = 0];
|
|
33
|
+
optional bool is_activated = 20;
|
|
34
|
+
optional bool is_toggled = 21;
|
|
35
|
+
optional bool is_in_ability_phase = 22;
|
|
36
|
+
optional bool is_channeling = 23;
|
|
37
|
+
optional bool is_stolen = 24;
|
|
38
|
+
optional bool is_fully_castable = 25;
|
|
39
|
+
optional uint32 charges = 30;
|
|
40
|
+
optional uint32 secondary_charges = 31;
|
|
41
|
+
optional bool is_combined_locked = 40;
|
|
42
|
+
optional int32 power_treads_stat = 50 [default = -1];
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
message DroppedItem {
|
|
46
|
+
optional int32 item_id = 1 [default = -1];
|
|
47
|
+
optional .CMsgBotWorldState.Vector location = 2;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
message RuneInfo {
|
|
51
|
+
optional int32 type = 1;
|
|
52
|
+
optional .CMsgBotWorldState.Vector location = 2;
|
|
53
|
+
optional uint32 status = 3;
|
|
54
|
+
optional float time_since_seen = 4;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
message TeleportInfo {
|
|
58
|
+
optional int32 player_id = 1;
|
|
59
|
+
optional .CMsgBotWorldState.Vector location = 2;
|
|
60
|
+
optional float time_remaining = 3;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
message Modifier {
|
|
64
|
+
optional uint32 handle = 7 [(valve_map_key) = true];
|
|
65
|
+
optional string name = 1;
|
|
66
|
+
optional uint32 stack_count = 2;
|
|
67
|
+
optional uint32 ability_handle = 3 [default = 4294967295];
|
|
68
|
+
optional int32 ability_id = 4 [default = -1];
|
|
69
|
+
optional float remaining_duration = 5;
|
|
70
|
+
repeated uint32 auxiliary_units_handles = 6;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
message LinearProjectile {
|
|
74
|
+
optional uint32 handle = 1 [(valve_map_key) = true];
|
|
75
|
+
optional uint32 caster_handle = 2 [default = 4294967295];
|
|
76
|
+
optional .CMsgBotWorldState.UnitType caster_unit_type = 9 [default = INVALID];
|
|
77
|
+
optional int32 caster_player_id = 3;
|
|
78
|
+
optional uint32 ability_handle = 4 [default = 4294967295];
|
|
79
|
+
optional int32 ability_id = 5 [default = -1];
|
|
80
|
+
optional .CMsgBotWorldState.Vector location = 6;
|
|
81
|
+
optional .CMsgBotWorldState.Vector velocity = 7;
|
|
82
|
+
optional uint32 radius = 8;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
message TrackingProjectile {
|
|
86
|
+
optional uint32 handle = 10 [(valve_map_key) = true];
|
|
87
|
+
optional uint32 caster_handle = 1 [default = 4294967295];
|
|
88
|
+
optional .CMsgBotWorldState.UnitType caster_unit_type = 9 [default = INVALID];
|
|
89
|
+
optional int32 caster_player_id = 2;
|
|
90
|
+
optional uint32 ability_handle = 3 [default = 4294967295];
|
|
91
|
+
optional int32 ability_id = 4 [default = -1];
|
|
92
|
+
optional .CMsgBotWorldState.Vector location = 5;
|
|
93
|
+
optional uint32 velocity = 6;
|
|
94
|
+
optional bool is_dodgeable = 7;
|
|
95
|
+
optional bool is_attack = 8;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
message AvoidanceZone {
|
|
99
|
+
optional .CMsgBotWorldState.Vector location = 1;
|
|
100
|
+
optional uint32 caster_handle = 2 [default = 4294967295];
|
|
101
|
+
optional .CMsgBotWorldState.UnitType caster_unit_type = 7 [default = INVALID];
|
|
102
|
+
optional int32 caster_player_id = 3;
|
|
103
|
+
optional uint32 ability_handle = 4 [default = 4294967295];
|
|
104
|
+
optional int32 ability_id = 5 [default = -1];
|
|
105
|
+
optional uint32 radius = 6;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
message Courier {
|
|
109
|
+
optional uint32 handle = 1 [(valve_map_key) = true];
|
|
110
|
+
optional .CMsgBotWorldState.CourierState state = 2 [default = COURIER_STATE_INIT];
|
|
111
|
+
optional int32 player_id = 3;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
message EventAbility {
|
|
115
|
+
optional int32 ability_id = 1 [default = -1];
|
|
116
|
+
optional int32 player_id = 2;
|
|
117
|
+
optional uint32 unit_handle = 3 [default = 4294967295];
|
|
118
|
+
optional .CMsgBotWorldState.Vector location = 4;
|
|
119
|
+
optional bool is_channel_start = 5;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
message EventDamage {
|
|
123
|
+
optional uint32 damage = 1;
|
|
124
|
+
optional int32 victim_player_id = 2;
|
|
125
|
+
optional uint32 victim_unit_handle = 3 [default = 4294967295];
|
|
126
|
+
optional int32 attacker_player_id = 4;
|
|
127
|
+
optional uint32 attacker_unit_handle = 5 [default = 4294967295];
|
|
128
|
+
optional int32 ability_id = 6 [default = -1];
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
message EventCourierKilled {
|
|
132
|
+
optional uint32 team_id = 1;
|
|
133
|
+
optional uint32 courier_unit_handle = 2 [default = 4294967295];
|
|
134
|
+
optional int32 killer_player_id = 3;
|
|
135
|
+
optional uint32 killer_unit_handle = 4 [default = 4294967295];
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
message EventRoshanKilled {
|
|
139
|
+
optional int32 killer_player_id = 1;
|
|
140
|
+
optional uint32 killer_unit_handle = 2 [default = 4294967295];
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
message EventTree {
|
|
144
|
+
optional uint32 tree_id = 1;
|
|
145
|
+
optional bool destroyed = 2;
|
|
146
|
+
optional bool respawned = 3;
|
|
147
|
+
optional .CMsgBotWorldState.Vector location = 4;
|
|
148
|
+
optional bool delayed = 5;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
message Unit {
|
|
152
|
+
optional uint32 handle = 1 [(valve_map_key) = true];
|
|
153
|
+
optional .CMsgBotWorldState.UnitType unit_type = 2 [default = INVALID];
|
|
154
|
+
optional string name = 3;
|
|
155
|
+
optional uint32 team_id = 4;
|
|
156
|
+
optional uint32 level = 5;
|
|
157
|
+
optional .CMsgBotWorldState.Vector location = 6;
|
|
158
|
+
optional bool is_alive = 7;
|
|
159
|
+
optional int32 player_id = 8;
|
|
160
|
+
optional int32 bounding_radius = 10;
|
|
161
|
+
optional int32 facing = 11;
|
|
162
|
+
optional uint32 ground_height = 12;
|
|
163
|
+
optional uint32 vision_range_daytime = 15;
|
|
164
|
+
optional uint32 vision_range_nighttime = 16;
|
|
165
|
+
optional int32 health = 20;
|
|
166
|
+
optional int32 health_max = 21;
|
|
167
|
+
optional float health_regen = 22;
|
|
168
|
+
optional int32 mana = 25;
|
|
169
|
+
optional int32 mana_max = 26;
|
|
170
|
+
optional float mana_regen = 27;
|
|
171
|
+
optional int32 base_movement_speed = 30;
|
|
172
|
+
optional int32 current_movement_speed = 31;
|
|
173
|
+
optional int32 anim_activity = 35;
|
|
174
|
+
optional float anim_cycle = 36;
|
|
175
|
+
optional int32 base_damage = 40;
|
|
176
|
+
optional int32 base_damage_variance = 41;
|
|
177
|
+
optional int32 bonus_damage = 42;
|
|
178
|
+
optional int32 attack_damage = 43;
|
|
179
|
+
optional int32 attack_range = 44;
|
|
180
|
+
optional float attack_speed = 45;
|
|
181
|
+
optional float attack_anim_point = 46;
|
|
182
|
+
optional int32 attack_acquisition_range = 47;
|
|
183
|
+
optional int32 attack_projectile_speed = 48;
|
|
184
|
+
optional uint32 attack_target_handle = 49 [default = 4294967295];
|
|
185
|
+
optional string attack_target_name = 52;
|
|
186
|
+
optional int32 attacks_per_second = 50 [default = -1];
|
|
187
|
+
optional float last_attack_time = 51 [default = -1];
|
|
188
|
+
optional uint32 bounty_xp = 60;
|
|
189
|
+
optional uint32 bounty_gold_min = 61;
|
|
190
|
+
optional uint32 bounty_gold_max = 62;
|
|
191
|
+
optional bool is_channeling = 65;
|
|
192
|
+
optional uint32 active_ability_handle = 66 [default = 4294967295];
|
|
193
|
+
optional bool is_attack_immune = 70;
|
|
194
|
+
optional bool is_blind = 71;
|
|
195
|
+
optional bool is_block_disabled = 72;
|
|
196
|
+
optional bool is_disarmed = 73;
|
|
197
|
+
optional bool is_dominated = 74;
|
|
198
|
+
optional bool is_evade_disabled = 75;
|
|
199
|
+
optional bool is_hexed = 76;
|
|
200
|
+
optional bool is_invisible = 77;
|
|
201
|
+
optional bool is_invulnerable = 78;
|
|
202
|
+
optional bool is_magic_immune = 79;
|
|
203
|
+
optional bool is_muted = 80;
|
|
204
|
+
optional bool is_nightmared = 82;
|
|
205
|
+
optional bool is_rooted = 83;
|
|
206
|
+
optional bool is_silenced = 84;
|
|
207
|
+
optional bool is_specially_deniable = 85;
|
|
208
|
+
optional bool is_stunned = 86;
|
|
209
|
+
optional bool is_unable_to_miss = 87;
|
|
210
|
+
optional bool has_scepter = 88;
|
|
211
|
+
optional bool is_specially_undeniable = 94;
|
|
212
|
+
repeated .CMsgBotWorldState.Ability abilities = 90 [(valve_map_field) = true];
|
|
213
|
+
repeated .CMsgBotWorldState.Ability items = 91 [(valve_map_field) = true];
|
|
214
|
+
repeated .CMsgBotWorldState.Modifier modifiers = 92 [(valve_map_field) = true];
|
|
215
|
+
repeated .CMsgBotWorldState.TrackingProjectile incoming_tracking_projectiles = 93 [(valve_map_field) = true];
|
|
216
|
+
optional uint32 action_type = 100;
|
|
217
|
+
optional uint32 ability_target_handle = 101 [default = 4294967295];
|
|
218
|
+
optional string ability_target_name = 103;
|
|
219
|
+
optional bool is_using_ability = 102;
|
|
220
|
+
optional uint32 primary_attribute = 110;
|
|
221
|
+
optional bool is_illusion = 111;
|
|
222
|
+
optional float respawn_time = 112;
|
|
223
|
+
optional uint32 buyback_cost = 113;
|
|
224
|
+
optional float buyback_cooldown = 114;
|
|
225
|
+
optional float spell_amplification = 115;
|
|
226
|
+
optional float armor = 116;
|
|
227
|
+
optional float magic_resist = 117;
|
|
228
|
+
optional float evasion = 118;
|
|
229
|
+
optional uint32 xp_needed_to_level = 120;
|
|
230
|
+
optional uint32 ability_points = 121;
|
|
231
|
+
optional int32 reliable_gold = 122 [default = -1];
|
|
232
|
+
optional int32 unreliable_gold = 123 [default = -1];
|
|
233
|
+
optional uint32 last_hits = 124;
|
|
234
|
+
optional uint32 denies = 125;
|
|
235
|
+
optional uint32 net_worth = 126;
|
|
236
|
+
optional uint32 strength = 127;
|
|
237
|
+
optional uint32 agility = 128;
|
|
238
|
+
optional uint32 intelligence = 129;
|
|
239
|
+
optional float remaining_lifespan = 130;
|
|
240
|
+
optional bool flying_courier = 140;
|
|
241
|
+
optional float shrine_cooldown = 150;
|
|
242
|
+
optional bool is_shrine_healing = 151;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
enum UnitType {
|
|
246
|
+
INVALID = 0;
|
|
247
|
+
HERO = 1;
|
|
248
|
+
CREEP_HERO = 2;
|
|
249
|
+
LANE_CREEP = 3;
|
|
250
|
+
JUNGLE_CREEP = 4;
|
|
251
|
+
ROSHAN = 5;
|
|
252
|
+
TOWER = 6;
|
|
253
|
+
BARRACKS = 7;
|
|
254
|
+
SHRINE = 8;
|
|
255
|
+
FORT = 9;
|
|
256
|
+
BUILDING = 10;
|
|
257
|
+
COURIER = 11;
|
|
258
|
+
WARD = 12;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
enum CourierState {
|
|
262
|
+
COURIER_STATE_INIT = -1;
|
|
263
|
+
COURIER_STATE_IDLE = 0;
|
|
264
|
+
COURIER_STATE_AT_BASE = 1;
|
|
265
|
+
COURIER_STATE_MOVING = 2;
|
|
266
|
+
COURIER_STATE_DELIVERING_ITEMS = 3;
|
|
267
|
+
COURIER_STATE_RETURNING_TO_BASE = 4;
|
|
268
|
+
COURIER_STATE_DEAD = 5;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
optional uint32 team_id = 1;
|
|
272
|
+
optional float game_time = 2;
|
|
273
|
+
optional float dota_time = 3;
|
|
274
|
+
optional uint32 game_state = 4;
|
|
275
|
+
optional uint32 hero_pick_state = 5;
|
|
276
|
+
optional float time_of_day = 6;
|
|
277
|
+
optional float glyph_cooldown = 7;
|
|
278
|
+
optional float glyph_cooldown_enemy = 8;
|
|
279
|
+
repeated .CMsgBotWorldState.Player players = 10 [(valve_map_field) = true];
|
|
280
|
+
repeated .CMsgBotWorldState.Unit units = 11 [(valve_map_field) = true];
|
|
281
|
+
repeated .CMsgBotWorldState.DroppedItem dropped_items = 12 [(diff_encode_field) = 112];
|
|
282
|
+
repeated int32 dropped_items_deltas = 112;
|
|
283
|
+
repeated .CMsgBotWorldState.RuneInfo rune_infos = 13 [(diff_encode_field) = 113];
|
|
284
|
+
repeated int32 rune_infos_deltas = 113;
|
|
285
|
+
repeated .CMsgBotWorldState.TeleportInfo incoming_teleports = 14;
|
|
286
|
+
repeated .CMsgBotWorldState.LinearProjectile linear_projectiles = 15 [(valve_map_field) = true];
|
|
287
|
+
repeated .CMsgBotWorldState.AvoidanceZone avoidance_zones = 16;
|
|
288
|
+
repeated .CMsgBotWorldState.Courier couriers = 17 [(valve_map_field) = true];
|
|
289
|
+
repeated .CMsgBotWorldState.EventAbility ability_events = 20;
|
|
290
|
+
repeated .CMsgBotWorldState.EventDamage damage_events = 21;
|
|
291
|
+
repeated .CMsgBotWorldState.EventCourierKilled courier_killed_events = 22;
|
|
292
|
+
repeated .CMsgBotWorldState.EventRoshanKilled roshan_killed_events = 23;
|
|
293
|
+
repeated .CMsgBotWorldState.EventTree tree_events = 24;
|
|
294
|
+
}
|
|
@@ -0,0 +1,351 @@
|
|
|
1
|
+
import "dota_shared_enums.proto";
|
|
2
|
+
|
|
3
|
+
enum ELeagueNodeGroupType {
|
|
4
|
+
INVALID_GROUP_TYPE = 0;
|
|
5
|
+
ORGANIZATIONAL = 1;
|
|
6
|
+
ROUND_ROBIN = 2;
|
|
7
|
+
SWISS = 3;
|
|
8
|
+
BRACKET_SINGLE = 4;
|
|
9
|
+
BRACKET_DOUBLE_SEED_LOSER = 5;
|
|
10
|
+
BRACKET_DOUBLE_ALL_WINNER = 6;
|
|
11
|
+
SHOWMATCH = 7;
|
|
12
|
+
GSL = 8;
|
|
13
|
+
PLACEMENT = 9;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
enum ELeagueNodeType {
|
|
17
|
+
INVALID_NODE_TYPE = 0;
|
|
18
|
+
BEST_OF_ONE = 1;
|
|
19
|
+
BEST_OF_THREE = 2;
|
|
20
|
+
BEST_OF_FIVE = 3;
|
|
21
|
+
BEST_OF_TWO = 4;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
message CMsgDOTALeagueNode {
|
|
25
|
+
message MatchDetails {
|
|
26
|
+
optional uint64 match_id = 1;
|
|
27
|
+
optional uint32 winning_team_id = 2;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
message VOD {
|
|
31
|
+
optional uint32 series_game = 1;
|
|
32
|
+
optional uint32 stream_id = 2;
|
|
33
|
+
optional string url = 3;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
optional string name = 1;
|
|
37
|
+
optional uint32 node_id = 2;
|
|
38
|
+
optional uint32 node_group_id = 3;
|
|
39
|
+
optional uint32 winning_node_id = 4;
|
|
40
|
+
optional uint32 losing_node_id = 5;
|
|
41
|
+
optional uint32 incoming_node_id_1 = 6;
|
|
42
|
+
optional uint32 incoming_node_id_2 = 7;
|
|
43
|
+
optional .ELeagueNodeType node_type = 8 [default = INVALID_NODE_TYPE];
|
|
44
|
+
optional uint32 scheduled_time = 9;
|
|
45
|
+
optional uint32 actual_time = 19;
|
|
46
|
+
optional uint32 series_id = 10;
|
|
47
|
+
optional uint32 team_id_1 = 11;
|
|
48
|
+
optional uint32 team_id_2 = 12;
|
|
49
|
+
repeated .CMsgDOTALeagueNode.MatchDetails matches = 13;
|
|
50
|
+
optional uint32 team_1_wins = 14;
|
|
51
|
+
optional uint32 team_2_wins = 15;
|
|
52
|
+
optional bool has_started = 16;
|
|
53
|
+
optional bool is_completed = 17;
|
|
54
|
+
repeated uint32 stream_ids = 18;
|
|
55
|
+
repeated .CMsgDOTALeagueNode.VOD vods = 20;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
message CMsgDOTALeagueNodeGroup {
|
|
59
|
+
message TeamStanding {
|
|
60
|
+
optional uint32 standing = 1;
|
|
61
|
+
optional uint32 team_id = 2;
|
|
62
|
+
optional string team_name = 3;
|
|
63
|
+
optional string team_tag = 4;
|
|
64
|
+
optional uint64 team_logo = 5;
|
|
65
|
+
optional string team_logo_url = 6;
|
|
66
|
+
optional uint32 wins = 7;
|
|
67
|
+
optional uint32 losses = 8;
|
|
68
|
+
optional int64 score = 9;
|
|
69
|
+
optional string team_abbreviation = 10;
|
|
70
|
+
optional int64 score_tiebreak_group = 11;
|
|
71
|
+
optional int64 score_tiebreak_below = 12;
|
|
72
|
+
optional int64 score_tiebreak_random = 13;
|
|
73
|
+
optional bool is_pro = 14;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
optional string name = 1;
|
|
77
|
+
optional uint32 node_group_id = 2;
|
|
78
|
+
optional uint32 parent_node_group_id = 3;
|
|
79
|
+
repeated uint32 incoming_node_group_ids = 4;
|
|
80
|
+
optional uint32 advancing_node_group_id = 5;
|
|
81
|
+
optional uint32 advancing_team_count = 6;
|
|
82
|
+
optional uint32 team_count = 7;
|
|
83
|
+
optional .ELeagueNodeGroupType node_group_type = 8 [default = INVALID_GROUP_TYPE];
|
|
84
|
+
optional .ELeagueNodeType default_node_type = 9 [default = INVALID_NODE_TYPE];
|
|
85
|
+
optional uint32 round = 10;
|
|
86
|
+
optional uint32 max_rounds = 11;
|
|
87
|
+
optional bool is_tiebreaker = 12;
|
|
88
|
+
optional bool is_final_group = 13;
|
|
89
|
+
optional bool is_completed = 14;
|
|
90
|
+
optional .ELeaguePhase phase = 18 [default = LEAGUE_PHASE_UNSET];
|
|
91
|
+
optional .ELeagueRegion region = 19 [default = LEAGUE_REGION_UNSET];
|
|
92
|
+
optional uint32 start_time = 20;
|
|
93
|
+
optional uint32 end_time = 21;
|
|
94
|
+
optional uint32 secondary_advancing_node_group_id = 22;
|
|
95
|
+
optional uint32 secondary_advancing_team_count = 23;
|
|
96
|
+
optional uint32 tertiary_advancing_node_group_id = 24;
|
|
97
|
+
optional uint32 tertiary_advancing_team_count = 25;
|
|
98
|
+
optional uint32 elimination_dpc_points = 26;
|
|
99
|
+
repeated .CMsgDOTALeagueNodeGroup.TeamStanding team_standings = 15;
|
|
100
|
+
repeated .CMsgDOTALeagueNode nodes = 16;
|
|
101
|
+
repeated .CMsgDOTALeagueNodeGroup node_groups = 17;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
message CMsgDOTALeague {
|
|
105
|
+
message Info {
|
|
106
|
+
optional uint32 league_id = 1;
|
|
107
|
+
optional string name = 2;
|
|
108
|
+
optional .ELeagueTier tier = 3 [default = LEAGUE_TIER_UNSET];
|
|
109
|
+
optional .ELeagueRegion region = 4 [default = LEAGUE_REGION_UNSET];
|
|
110
|
+
optional string url = 5;
|
|
111
|
+
optional string description = 6;
|
|
112
|
+
optional string notes = 7;
|
|
113
|
+
optional uint32 start_timestamp = 8;
|
|
114
|
+
optional uint32 end_timestamp = 9;
|
|
115
|
+
optional uint32 pro_circuit_points = 10;
|
|
116
|
+
optional uint32 image_bits = 11;
|
|
117
|
+
optional .ELeagueStatus status = 12 [default = LEAGUE_STATUS_UNSET];
|
|
118
|
+
optional uint32 most_recent_activity = 13;
|
|
119
|
+
optional uint32 registration_period = 14;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
message Admin {
|
|
123
|
+
optional uint32 account_id = 1;
|
|
124
|
+
optional bool is_primary = 2;
|
|
125
|
+
optional string email_address = 3;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
message PrizePoolItem {
|
|
129
|
+
optional uint32 item_def = 1;
|
|
130
|
+
optional uint32 sales_stop_timestamp = 2;
|
|
131
|
+
optional uint32 revenue_pct = 3;
|
|
132
|
+
optional uint32 revenue_cents_per_sale = 4;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
message PrizePool {
|
|
136
|
+
optional uint32 base_prize_pool = 1;
|
|
137
|
+
optional uint32 total_prize_pool = 2;
|
|
138
|
+
repeated uint32 prize_split_pct_x100 = 3;
|
|
139
|
+
repeated .CMsgDOTALeague.PrizePoolItem prize_pool_items = 4;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
message Stream {
|
|
143
|
+
optional uint32 stream_id = 1;
|
|
144
|
+
optional uint32 language = 2;
|
|
145
|
+
optional string name = 3;
|
|
146
|
+
optional .ELeagueBroadcastProvider broadcast_provider = 4 [default = LEAGUE_BROADCAST_UNKNOWN];
|
|
147
|
+
optional string stream_url = 5;
|
|
148
|
+
optional string vod_url = 6;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
message SeriesInfo {
|
|
152
|
+
optional uint32 series_id = 1;
|
|
153
|
+
optional uint32 series_type = 2;
|
|
154
|
+
optional uint32 start_time = 3;
|
|
155
|
+
repeated uint64 match_ids = 4;
|
|
156
|
+
optional uint32 team_id_1 = 5;
|
|
157
|
+
optional uint32 team_id_2 = 6;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
message Player {
|
|
161
|
+
optional uint32 account_id = 1;
|
|
162
|
+
optional string name = 2;
|
|
163
|
+
optional uint32 team_id = 3;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
optional .CMsgDOTALeague.Info info = 1;
|
|
167
|
+
optional .CMsgDOTALeague.PrizePool prize_pool = 2;
|
|
168
|
+
repeated .CMsgDOTALeague.Admin admins = 3;
|
|
169
|
+
repeated .CMsgDOTALeague.Stream streams = 4;
|
|
170
|
+
repeated .CMsgDOTALeagueNodeGroup node_groups = 5;
|
|
171
|
+
repeated .CMsgDOTALeague.SeriesInfo series_infos = 6;
|
|
172
|
+
repeated .CMsgDOTALeague.Player registered_players = 7;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
message CMsgDOTALeagueList {
|
|
176
|
+
repeated .CMsgDOTALeague leagues = 1;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
message CMsgDOTALeagueInfo {
|
|
180
|
+
optional uint32 league_id = 1;
|
|
181
|
+
optional string name = 2;
|
|
182
|
+
optional .ELeagueTier tier = 3 [default = LEAGUE_TIER_UNSET];
|
|
183
|
+
optional .ELeagueRegion region = 4 [default = LEAGUE_REGION_UNSET];
|
|
184
|
+
optional uint32 most_recent_activity = 5;
|
|
185
|
+
optional uint32 total_prize_pool = 6;
|
|
186
|
+
optional uint32 start_timestamp = 7;
|
|
187
|
+
optional uint32 end_timestamp = 8;
|
|
188
|
+
optional uint32 status = 9;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
message CMsgDOTALeagueInfoList {
|
|
192
|
+
repeated .CMsgDOTALeagueInfo infos = 1;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
message CMsgDOTALeagueLiveGames {
|
|
196
|
+
message LiveGame {
|
|
197
|
+
optional uint32 league_id = 1;
|
|
198
|
+
optional uint64 server_steam_id = 2;
|
|
199
|
+
optional string radiant_name = 3;
|
|
200
|
+
optional uint64 radiant_logo = 4;
|
|
201
|
+
optional uint32 radiant_team_id = 9;
|
|
202
|
+
optional string dire_name = 5;
|
|
203
|
+
optional uint64 dire_logo = 6;
|
|
204
|
+
optional uint32 dire_team_id = 10;
|
|
205
|
+
optional uint32 time = 7;
|
|
206
|
+
optional uint32 spectators = 8;
|
|
207
|
+
optional uint32 league_node_id = 11;
|
|
208
|
+
optional uint32 series_id = 12;
|
|
209
|
+
optional uint64 match_id = 13;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
repeated .CMsgDOTALeagueLiveGames.LiveGame games = 1;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
message CMsgDOTALeagueMessages {
|
|
216
|
+
message Message {
|
|
217
|
+
optional uint32 author_account_id = 1;
|
|
218
|
+
optional uint32 timestamp = 2;
|
|
219
|
+
optional string message = 3;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
repeated .CMsgDOTALeagueMessages.Message messages = 1;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
message CMsgDOTALeaguePrizePool {
|
|
226
|
+
optional uint32 prize_pool = 1;
|
|
227
|
+
optional float increment_per_second = 2;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
message CMsgDOTALeagueInfoListAdminsRequest {
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
message CMsgDOTALeagueAvailableLobbyNodesRequest {
|
|
234
|
+
optional uint32 league_id = 1;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
message CMsgDOTALeagueAvailableLobbyNodes {
|
|
238
|
+
message NodeInfo {
|
|
239
|
+
optional uint32 node_id = 1;
|
|
240
|
+
optional string node_name = 2;
|
|
241
|
+
optional string node_group_name = 3;
|
|
242
|
+
optional uint32 team_id_1 = 4;
|
|
243
|
+
optional uint32 team_id_2 = 5;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
repeated .CMsgDOTALeagueAvailableLobbyNodes.NodeInfo node_infos = 1;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
message CMsgDOTALeagueNodeResults {
|
|
250
|
+
message Result {
|
|
251
|
+
optional uint32 node_id = 1;
|
|
252
|
+
optional uint32 winning_node_id = 2;
|
|
253
|
+
optional uint32 losing_node_id = 3;
|
|
254
|
+
optional uint32 incoming_node_id_1 = 4;
|
|
255
|
+
optional uint32 incoming_node_id_2 = 5;
|
|
256
|
+
optional uint32 team_id_1 = 6;
|
|
257
|
+
optional uint32 team_id_2 = 7;
|
|
258
|
+
optional string team_1_name = 8;
|
|
259
|
+
optional string team_2_name = 9;
|
|
260
|
+
optional uint32 team_1_wins = 10;
|
|
261
|
+
optional uint32 team_2_wins = 11;
|
|
262
|
+
optional uint32 winning_team_id = 12;
|
|
263
|
+
optional uint32 losing_team_id = 13;
|
|
264
|
+
optional bool has_started = 14;
|
|
265
|
+
optional bool is_completed = 15;
|
|
266
|
+
optional uint32 scheduled_time = 16;
|
|
267
|
+
repeated uint64 match_ids = 17;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
repeated .CMsgDOTALeagueNodeResults.Result node_results = 1;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
message CMsgDOTADPCLeagueResults {
|
|
274
|
+
message Result {
|
|
275
|
+
optional uint32 standing = 1;
|
|
276
|
+
optional uint32 team_id = 2;
|
|
277
|
+
optional string team_name = 3;
|
|
278
|
+
optional uint64 team_logo = 4;
|
|
279
|
+
optional string team_logo_url = 5;
|
|
280
|
+
optional uint32 points = 6;
|
|
281
|
+
optional uint32 earnings = 7;
|
|
282
|
+
optional uint32 timestamp = 8;
|
|
283
|
+
optional .ELeaguePhase phase = 9 [default = LEAGUE_PHASE_UNSET];
|
|
284
|
+
optional string team_abbreviation = 10;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
repeated .CMsgDOTADPCLeagueResults.Result results = 1;
|
|
288
|
+
repeated uint32 points = 2;
|
|
289
|
+
repeated uint32 dollars = 3;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
message CMsgDOTADPCTeamResults {
|
|
293
|
+
message Result {
|
|
294
|
+
optional uint32 league_id = 1;
|
|
295
|
+
optional uint32 standing = 2;
|
|
296
|
+
optional uint32 points = 3;
|
|
297
|
+
optional uint32 earnings = 4;
|
|
298
|
+
optional uint32 timestamp = 5;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
repeated .CMsgDOTADPCTeamResults.Result results = 1;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
message CMsgDOTADPCSeasonResults {
|
|
305
|
+
message TeamLeagueResult {
|
|
306
|
+
optional uint32 timestamp = 1;
|
|
307
|
+
optional uint32 league_id = 2;
|
|
308
|
+
optional uint32 standing = 3;
|
|
309
|
+
optional uint32 points = 4;
|
|
310
|
+
optional uint32 earnings = 5;
|
|
311
|
+
optional uint32 audit_action = 6;
|
|
312
|
+
optional uint32 audit_data = 7;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
message TeamResult {
|
|
316
|
+
optional uint32 team_id = 1;
|
|
317
|
+
optional string team_name = 2;
|
|
318
|
+
optional string team_abbreviation = 8;
|
|
319
|
+
optional uint64 team_logo = 3;
|
|
320
|
+
optional string team_logo_url = 4;
|
|
321
|
+
optional uint32 total_points = 5;
|
|
322
|
+
optional uint32 total_earnings = 6;
|
|
323
|
+
repeated .CMsgDOTADPCSeasonResults.TeamLeagueResult league_results = 7;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
message StandingEntry {
|
|
327
|
+
optional uint32 team_id = 1;
|
|
328
|
+
optional uint32 wins = 2;
|
|
329
|
+
optional uint32 losses = 3;
|
|
330
|
+
optional string team_url = 4;
|
|
331
|
+
optional string team_name = 5;
|
|
332
|
+
optional string team_abbreviation = 6;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
message Standing {
|
|
336
|
+
optional .ELeagueRegion region = 1 [default = LEAGUE_REGION_UNSET];
|
|
337
|
+
optional .ELeagueDivision division = 2 [default = LEAGUE_DIVISION_UNSET];
|
|
338
|
+
repeated .CMsgDOTADPCSeasonResults.StandingEntry entries = 3;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
repeated .CMsgDOTADPCSeasonResults.TeamResult results = 1;
|
|
342
|
+
repeated .CMsgDOTADPCSeasonResults.Standing standings = 2;
|
|
343
|
+
repeated .CMsgDOTADPCSeasonResults.StandingEntry major_wildcard_standings = 3;
|
|
344
|
+
repeated .CMsgDOTADPCSeasonResults.StandingEntry major_group_standings = 4;
|
|
345
|
+
repeated .CMsgDOTADPCSeasonResults.StandingEntry major_playoff_standings = 5;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
message CMsgDOTADPCSeasonSpoilerResults {
|
|
349
|
+
optional uint32 time_last_updated = 1;
|
|
350
|
+
optional .CMsgDOTADPCSeasonResults saved_results = 2;
|
|
351
|
+
}
|