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,346 @@
|
|
|
1
|
+
import "base_gcmessages.proto";
|
|
2
|
+
import "dota_gcmessages_common_match_management.proto";
|
|
3
|
+
import "dota_gcmessages_common_lobby.proto";
|
|
4
|
+
import "dota_gcmessages_common.proto";
|
|
5
|
+
import "dota_shared_enums.proto";
|
|
6
|
+
import "gcsdk_gcmessages.proto";
|
|
7
|
+
|
|
8
|
+
message CDOTAMatchMetadataFile {
|
|
9
|
+
required int32 version = 1;
|
|
10
|
+
required uint64 match_id = 2;
|
|
11
|
+
optional .CDOTAMatchMetadata metadata = 3;
|
|
12
|
+
optional bytes private_metadata = 5;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
message CDOTAMatchMetadata {
|
|
16
|
+
message EconItem {
|
|
17
|
+
optional uint32 def_index = 1;
|
|
18
|
+
optional uint32 quality = 2 [default = 4];
|
|
19
|
+
repeated .CSOEconItemAttribute attribute = 3;
|
|
20
|
+
optional uint32 style = 4 [default = 0];
|
|
21
|
+
repeated .CSOEconItemEquipped equipped_state = 5;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
message Team {
|
|
25
|
+
message PlayerKill {
|
|
26
|
+
optional uint32 victim_slot = 1;
|
|
27
|
+
optional uint32 count = 2;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
message ItemPurchase {
|
|
31
|
+
optional int32 item_id = 1 [default = -1];
|
|
32
|
+
optional int32 purchase_time = 2;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
message InventorySnapshot {
|
|
36
|
+
repeated int32 item_id = 1;
|
|
37
|
+
optional int32 game_time = 2;
|
|
38
|
+
optional uint32 kills = 3;
|
|
39
|
+
optional uint32 deaths = 4;
|
|
40
|
+
optional uint32 assists = 5;
|
|
41
|
+
optional uint32 level = 6;
|
|
42
|
+
repeated int32 backpack_item_id = 7;
|
|
43
|
+
optional int32 neutral_item_id = 8 [default = -1];
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
message AutoStyleCriteria {
|
|
47
|
+
optional uint32 name_token = 1;
|
|
48
|
+
optional float value = 2;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
message StrangeGemProgress {
|
|
52
|
+
optional uint32 kill_eater_type = 1;
|
|
53
|
+
optional uint32 gem_item_def_index = 2;
|
|
54
|
+
optional uint32 required_hero_id = 3;
|
|
55
|
+
optional uint32 starting_value = 4;
|
|
56
|
+
optional uint32 ending_value = 5;
|
|
57
|
+
optional uint32 owner_item_def_index = 6;
|
|
58
|
+
optional uint64 owner_item_id = 7;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
message VictoryPrediction {
|
|
62
|
+
optional uint64 item_id = 1;
|
|
63
|
+
optional uint32 item_def_index = 2;
|
|
64
|
+
optional uint32 starting_value = 3;
|
|
65
|
+
optional bool is_victory = 4;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
message SubChallenge {
|
|
69
|
+
optional uint32 slot_id = 1;
|
|
70
|
+
optional uint32 start_value = 2;
|
|
71
|
+
optional uint32 end_value = 3;
|
|
72
|
+
optional bool completed = 4;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
message CavernChallengeResult {
|
|
76
|
+
optional uint32 completed_path_id = 1 [default = 255];
|
|
77
|
+
optional uint32 claimed_room_id = 2 [default = 255];
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
message ActionGrant {
|
|
81
|
+
optional uint32 action_id = 1;
|
|
82
|
+
optional uint32 quantity = 2;
|
|
83
|
+
optional uint32 audit = 3;
|
|
84
|
+
optional bool requires_win = 4;
|
|
85
|
+
optional uint64 audit_data = 5;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
message CandyGrant {
|
|
89
|
+
optional uint32 points = 1;
|
|
90
|
+
optional uint32 reason = 2;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
message PeriodicResourceData {
|
|
94
|
+
optional uint32 periodic_resource_id = 1;
|
|
95
|
+
optional uint32 remaining = 2;
|
|
96
|
+
optional uint32 max = 3;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
message EventData {
|
|
100
|
+
optional uint32 event_id = 1;
|
|
101
|
+
optional uint32 event_points = 2;
|
|
102
|
+
optional uint32 challenge_instance_id = 3;
|
|
103
|
+
optional uint32 challenge_quest_id = 4;
|
|
104
|
+
optional uint32 challenge_quest_challenge_id = 5;
|
|
105
|
+
optional bool challenge_completed = 6;
|
|
106
|
+
optional uint32 challenge_rank_completed = 7;
|
|
107
|
+
optional uint32 challenge_rank_previously_completed = 8;
|
|
108
|
+
optional bool event_owned = 9;
|
|
109
|
+
repeated .CDOTAMatchMetadata.Team.SubChallenge sub_challenges_with_progress = 10;
|
|
110
|
+
optional uint32 wager_winnings = 11;
|
|
111
|
+
optional bool cavern_challenge_active = 12;
|
|
112
|
+
optional uint32 cavern_challenge_winnings = 13;
|
|
113
|
+
optional uint32 amount_wagered = 14;
|
|
114
|
+
optional uint32 periodic_point_adjustments = 16;
|
|
115
|
+
repeated .CDOTAMatchMetadata.Team.CavernChallengeResult cavern_challenge_map_results = 17;
|
|
116
|
+
optional uint32 cavern_challenge_plus_shard_winnings = 18;
|
|
117
|
+
repeated .CDOTAMatchMetadata.Team.ActionGrant actions_granted = 19;
|
|
118
|
+
optional uint32 cavern_crawl_map_variant = 20 [default = 255];
|
|
119
|
+
optional uint32 team_wager_bonus_pct = 21;
|
|
120
|
+
optional uint32 wager_streak_pct = 22;
|
|
121
|
+
repeated .CDOTAMatchMetadata.Team.CandyGrant candy_points_granted = 23;
|
|
122
|
+
optional uint32 active_season_id = 24;
|
|
123
|
+
optional bool cavern_crawl_half_credit = 25;
|
|
124
|
+
repeated .CDOTAMatchMetadata.Team.PeriodicResourceData periodic_resources = 26;
|
|
125
|
+
repeated .CExtraMsgBlock extra_event_messages = 27;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
message FeaturedGamemodeProgress {
|
|
129
|
+
optional uint32 start_value = 1;
|
|
130
|
+
optional uint32 end_value = 2;
|
|
131
|
+
optional uint32 max_value = 3;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
message Player {
|
|
135
|
+
message ContractProgress {
|
|
136
|
+
optional uint32 guild_id = 1;
|
|
137
|
+
optional uint32 event_id = 2;
|
|
138
|
+
optional uint32 challenge_instance_id = 3;
|
|
139
|
+
optional uint32 challenge_parameter = 4;
|
|
140
|
+
optional uint32 contract_stars = 5;
|
|
141
|
+
optional uint32 contract_slot = 6;
|
|
142
|
+
optional bool completed = 7;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
repeated int32 ability_upgrades = 2;
|
|
146
|
+
optional uint32 player_slot = 3;
|
|
147
|
+
repeated .CDOTAMatchMetadata.Team.PlayerKill kills = 5;
|
|
148
|
+
repeated .CDOTAMatchMetadata.Team.ItemPurchase items = 6;
|
|
149
|
+
optional uint32 avg_kills_x16 = 7;
|
|
150
|
+
optional uint32 avg_deaths_x16 = 8;
|
|
151
|
+
optional uint32 avg_assists_x16 = 9;
|
|
152
|
+
optional uint32 avg_gpm_x16 = 10;
|
|
153
|
+
optional uint32 avg_xpm_x16 = 11;
|
|
154
|
+
optional uint32 best_kills_x16 = 12;
|
|
155
|
+
optional uint32 best_assists_x16 = 13;
|
|
156
|
+
optional uint32 best_gpm_x16 = 14;
|
|
157
|
+
optional uint32 best_xpm_x16 = 15;
|
|
158
|
+
optional uint32 win_streak = 16;
|
|
159
|
+
optional uint32 best_win_streak = 17;
|
|
160
|
+
optional float fight_score = 18;
|
|
161
|
+
optional float farm_score = 19;
|
|
162
|
+
optional float support_score = 20;
|
|
163
|
+
optional float push_score = 21;
|
|
164
|
+
repeated uint32 level_up_times = 22;
|
|
165
|
+
repeated float graph_net_worth = 23;
|
|
166
|
+
repeated .CDOTAMatchMetadata.Team.InventorySnapshot inventory_snapshot = 24;
|
|
167
|
+
optional bool avg_stats_calibrated = 25;
|
|
168
|
+
repeated .CDOTAMatchMetadata.Team.AutoStyleCriteria auto_style_criteria = 26;
|
|
169
|
+
repeated .CDOTAMatchMetadata.Team.EventData event_data = 29;
|
|
170
|
+
repeated .CDOTAMatchMetadata.Team.StrangeGemProgress strange_gem_progress = 30;
|
|
171
|
+
optional uint32 hero_xp = 31;
|
|
172
|
+
optional uint32 camps_stacked = 32;
|
|
173
|
+
repeated .CDOTAMatchMetadata.Team.VictoryPrediction victory_prediction = 33;
|
|
174
|
+
optional uint32 lane_selection_flags = 34;
|
|
175
|
+
optional uint32 rampages = 35;
|
|
176
|
+
optional uint32 triple_kills = 36;
|
|
177
|
+
optional uint32 aegis_snatched = 37;
|
|
178
|
+
optional uint32 rapiers_purchased = 38;
|
|
179
|
+
optional uint32 couriers_killed = 39;
|
|
180
|
+
optional uint32 net_worth_rank = 40;
|
|
181
|
+
optional uint32 support_gold_spent = 41;
|
|
182
|
+
optional uint32 observer_wards_placed = 42;
|
|
183
|
+
optional uint32 sentry_wards_placed = 43;
|
|
184
|
+
optional uint32 wards_dewarded = 44;
|
|
185
|
+
optional float stun_duration = 45;
|
|
186
|
+
optional .EDOTAMMRBoostType rank_mmr_boost_type = 46 [default = k_EDOTAMMRBoostType_None];
|
|
187
|
+
repeated .CDOTAMatchMetadata.Team.Player.ContractProgress contract_progress = 48;
|
|
188
|
+
repeated uint32 guild_ids = 49;
|
|
189
|
+
repeated float graph_hero_damage = 50;
|
|
190
|
+
optional .DOTA_GC_TEAM team_number = 51 [default = DOTA_GC_TEAM_GOOD_GUYS];
|
|
191
|
+
optional uint32 team_slot = 52;
|
|
192
|
+
optional .CDOTAMatchMetadata.Team.FeaturedGamemodeProgress featured_gamemode_progress = 53;
|
|
193
|
+
optional uint32 featured_hero_sticker_index = 54;
|
|
194
|
+
optional uint32 featured_hero_sticker_quality = 55;
|
|
195
|
+
repeated .CDOTAMatchMetadata.EconItem equipped_econ_items = 56;
|
|
196
|
+
optional int32 game_player_id = 57 [default = -1];
|
|
197
|
+
repeated .CMsgTrackedStat player_tracked_stats = 58;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
optional uint32 dota_team = 1;
|
|
201
|
+
repeated .CDOTAMatchMetadata.Team.Player players = 2;
|
|
202
|
+
repeated float graph_experience = 3;
|
|
203
|
+
repeated float graph_gold_earned = 4;
|
|
204
|
+
repeated float graph_net_worth = 5;
|
|
205
|
+
optional bool cm_first_pick = 6;
|
|
206
|
+
optional int32 cm_captain_player_id = 7 [default = -1];
|
|
207
|
+
optional uint32 cm_penalty = 10;
|
|
208
|
+
repeated .CMsgTrackedStat team_tracked_stats = 11;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
message GuildChallengeProgress {
|
|
212
|
+
message IndividualProgress {
|
|
213
|
+
optional uint32 progress = 2;
|
|
214
|
+
optional uint32 player_slot = 3;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
optional uint32 guild_id = 1;
|
|
218
|
+
optional .EEvent event_id = 2 [default = EVENT_ID_NONE];
|
|
219
|
+
optional uint32 challenge_instance_id = 3;
|
|
220
|
+
optional uint32 challenge_parameter = 4;
|
|
221
|
+
optional uint32 challenge_timestamp = 5;
|
|
222
|
+
optional uint32 challenge_progress_at_start = 6;
|
|
223
|
+
optional uint32 challenge_progress_accumulated = 7;
|
|
224
|
+
repeated .CDOTAMatchMetadata.GuildChallengeProgress.IndividualProgress individual_progress = 8;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
message Tip {
|
|
228
|
+
optional uint32 source_player_slot = 1;
|
|
229
|
+
optional uint32 target_player_slot = 2;
|
|
230
|
+
optional uint32 tip_amount = 3;
|
|
231
|
+
optional .EEvent event_id = 4 [default = EVENT_ID_NONE];
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
repeated .CDOTAMatchMetadata.Team teams = 1;
|
|
235
|
+
optional fixed64 lobby_id = 3;
|
|
236
|
+
optional fixed64 report_until_time = 4;
|
|
237
|
+
optional bytes event_game_custom_table = 5;
|
|
238
|
+
optional uint32 primary_event_id = 6;
|
|
239
|
+
optional .CMsgMatchMatchmakingStats matchmaking_stats = 8;
|
|
240
|
+
optional .CMvpData mvp_data = 9;
|
|
241
|
+
repeated .CDOTAMatchMetadata.GuildChallengeProgress guild_challenge_progress = 10;
|
|
242
|
+
optional bytes custom_post_game_table = 11;
|
|
243
|
+
repeated .CDOTAMatchMetadata.Tip match_tips = 12;
|
|
244
|
+
repeated .CMsgTrackedStat match_tracked_stats = 13;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
message CDOTAMatchPrivateMetadata {
|
|
248
|
+
message StringName {
|
|
249
|
+
optional uint32 id = 1;
|
|
250
|
+
optional string name = 2;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
message Team {
|
|
254
|
+
message Player {
|
|
255
|
+
message CombatSegment {
|
|
256
|
+
message DamageByAbility {
|
|
257
|
+
message ByHeroTarget {
|
|
258
|
+
optional uint32 hero_id = 1;
|
|
259
|
+
optional uint32 damage = 2;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
optional uint32 source_unit_index = 3;
|
|
263
|
+
optional int32 ability_id = 1 [default = -1];
|
|
264
|
+
repeated .CDOTAMatchPrivateMetadata.Team.Player.CombatSegment.DamageByAbility.ByHeroTarget by_hero_targets = 2;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
message HealingByAbility {
|
|
268
|
+
message ByHeroTarget {
|
|
269
|
+
optional uint32 hero_id = 1;
|
|
270
|
+
optional uint32 healing = 2;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
optional uint32 source_unit_index = 3;
|
|
274
|
+
optional int32 ability_id = 1 [default = -1];
|
|
275
|
+
repeated .CDOTAMatchPrivateMetadata.Team.Player.CombatSegment.HealingByAbility.ByHeroTarget by_hero_targets = 2;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
optional int32 game_time = 1;
|
|
279
|
+
repeated .CDOTAMatchPrivateMetadata.Team.Player.CombatSegment.DamageByAbility damage_by_ability = 2;
|
|
280
|
+
repeated .CDOTAMatchPrivateMetadata.Team.Player.CombatSegment.HealingByAbility healing_by_ability = 3;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
message BuffRecord {
|
|
284
|
+
message ByHeroTarget {
|
|
285
|
+
optional uint32 hero_id = 1;
|
|
286
|
+
optional float elapsed_duration = 2;
|
|
287
|
+
optional bool is_hidden = 3;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
optional int32 buff_ability_id = 1 [default = -1];
|
|
291
|
+
optional string buff_modifier_name = 3;
|
|
292
|
+
repeated .CDOTAMatchPrivateMetadata.Team.Player.BuffRecord.ByHeroTarget by_hero_targets = 2;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
message GoldReceived {
|
|
296
|
+
optional uint32 creep = 1;
|
|
297
|
+
optional uint32 heroes = 2;
|
|
298
|
+
optional uint32 bounty_runes = 3;
|
|
299
|
+
optional uint32 passive = 4;
|
|
300
|
+
optional uint32 buildings = 5;
|
|
301
|
+
optional uint32 abilities = 6;
|
|
302
|
+
optional uint32 wards = 7;
|
|
303
|
+
optional uint32 other = 8;
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
message XPReceived {
|
|
307
|
+
optional uint32 creep = 1;
|
|
308
|
+
optional uint32 heroes = 2;
|
|
309
|
+
optional uint32 roshan = 3;
|
|
310
|
+
optional uint32 tome_of_knowledge = 4;
|
|
311
|
+
optional uint32 outpost = 5;
|
|
312
|
+
optional uint32 other = 6;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
optional uint32 player_slot = 2;
|
|
316
|
+
optional bytes position_stream = 3;
|
|
317
|
+
repeated .CDOTAMatchPrivateMetadata.Team.Player.CombatSegment combat_segments = 4;
|
|
318
|
+
repeated string damage_unit_names = 5;
|
|
319
|
+
repeated .CDOTAMatchPrivateMetadata.Team.Player.BuffRecord buff_records = 6;
|
|
320
|
+
repeated float graph_kills = 7;
|
|
321
|
+
repeated float graph_deaths = 8;
|
|
322
|
+
repeated float graph_assists = 9;
|
|
323
|
+
repeated float graph_lasthits = 10;
|
|
324
|
+
repeated float graph_denies = 11;
|
|
325
|
+
optional .CDOTAMatchPrivateMetadata.Team.Player.GoldReceived gold_received = 12;
|
|
326
|
+
optional .CDOTAMatchPrivateMetadata.Team.Player.XPReceived xp_received = 13;
|
|
327
|
+
optional .DOTA_GC_TEAM team_number = 14 [default = DOTA_GC_TEAM_GOOD_GUYS];
|
|
328
|
+
optional uint32 team_slot = 15;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
message Building {
|
|
332
|
+
optional string unit_name = 1;
|
|
333
|
+
optional uint32 position_quant_x = 2;
|
|
334
|
+
optional uint32 position_quant_y = 3;
|
|
335
|
+
optional float death_time = 4;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
optional uint32 dota_team = 1;
|
|
339
|
+
repeated .CDOTAMatchPrivateMetadata.Team.Player players = 2;
|
|
340
|
+
repeated .CDOTAMatchPrivateMetadata.Team.Building buildings = 3;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
repeated .CDOTAMatchPrivateMetadata.Team teams = 1;
|
|
344
|
+
repeated float graph_win_probability = 2;
|
|
345
|
+
repeated .CDOTAMatchPrivateMetadata.StringName string_names = 3;
|
|
346
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import "dota_gcmessages_common_bot_script.proto";
|
|
2
|
+
import "dota_commonmessages.proto";
|
|
3
|
+
import "dota_shared_enums.proto";
|
|
4
|
+
|
|
5
|
+
enum MLBot_MessageId {
|
|
6
|
+
mlbot_MatchMetadata = 1;
|
|
7
|
+
mlbot_TickBoundary = 2;
|
|
8
|
+
mlbot_TeamState_Radiant = 3;
|
|
9
|
+
mlbot_TeamState_Radiant_Delta = 4;
|
|
10
|
+
mlbot_TeamState_Dire = 5;
|
|
11
|
+
mlbot_TeamState_Dire_Delta = 6;
|
|
12
|
+
mlbot_PlayerCommand = 7;
|
|
13
|
+
mlbot_PlayerOrder = 8;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
message CMsgMLBotMatchMetadata {
|
|
17
|
+
message Player {
|
|
18
|
+
optional int32 player_id = 1 [default = -1];
|
|
19
|
+
optional int32 team_id = 2;
|
|
20
|
+
optional int32 hero_id = 3;
|
|
21
|
+
optional int32 rank = 4;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
optional uint64 match_id = 1;
|
|
25
|
+
optional uint64 lobby_id = 2;
|
|
26
|
+
optional int32 lobby_type = 3 [default = -1];
|
|
27
|
+
optional uint32 game_mode = 4;
|
|
28
|
+
repeated .CMsgMLBotMatchMetadata.Player players = 5;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
message CMsgMLBotTickBoundary {
|
|
32
|
+
optional uint32 tick_number = 1;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
message CMsgMLBot_PlayerOrder {
|
|
36
|
+
optional int32 player_id = 1 [default = -1];
|
|
37
|
+
optional int32 team_id = 2;
|
|
38
|
+
optional int32 order_type = 3;
|
|
39
|
+
repeated uint32 selected_unit_handles = 4;
|
|
40
|
+
optional int32 target_index = 5 [default = -1];
|
|
41
|
+
optional uint32 target_handle = 6 [default = 4294967295];
|
|
42
|
+
optional int32 ability_index = 7 [default = -1];
|
|
43
|
+
optional uint32 ability_handle = 8 [default = 4294967295];
|
|
44
|
+
optional float pos_x = 9;
|
|
45
|
+
optional float pos_y = 10;
|
|
46
|
+
optional float pos_z = 11;
|
|
47
|
+
optional bool queue = 12;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
message CMsgMLBot_TeamInference {
|
|
51
|
+
optional int32 team_id = 1;
|
|
52
|
+
repeated int32 bot_player_ids = 2;
|
|
53
|
+
optional .CMsgBotWorldState world_state = 3;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
message CMsgMLBot_TeamInferenceResponse {
|
|
57
|
+
repeated .CMsgMLBot_PlayerOrder orders = 1;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
message CMsgMLBot_TeamInferenceList {
|
|
61
|
+
repeated .CMsgMLBot_TeamInference messages = 1;
|
|
62
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import "networkbasetypes.proto";
|
|
2
|
+
|
|
3
|
+
enum DOTA_MODIFIER_ENTRY_TYPE {
|
|
4
|
+
DOTA_MODIFIER_ENTRY_TYPE_ACTIVE = 1;
|
|
5
|
+
DOTA_MODIFIER_ENTRY_TYPE_REMOVED = 2;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
message CDOTAModifierBuffTableEntry {
|
|
9
|
+
required .DOTA_MODIFIER_ENTRY_TYPE entry_type = 1 [default = DOTA_MODIFIER_ENTRY_TYPE_ACTIVE];
|
|
10
|
+
required uint32 parent = 2 [default = 16777215];
|
|
11
|
+
required int32 index = 3;
|
|
12
|
+
required int32 serial_num = 4;
|
|
13
|
+
optional int32 modifier_class = 5;
|
|
14
|
+
optional int32 ability_level = 6;
|
|
15
|
+
optional int32 stack_count = 7;
|
|
16
|
+
optional float creation_time = 8;
|
|
17
|
+
optional float duration = 9 [default = -1];
|
|
18
|
+
optional uint32 caster = 10 [default = 16777215];
|
|
19
|
+
optional uint32 ability = 11 [default = 16777215];
|
|
20
|
+
optional int32 armor = 12;
|
|
21
|
+
optional float fade_time = 13;
|
|
22
|
+
optional bool subtle = 14;
|
|
23
|
+
optional float channel_time = 15;
|
|
24
|
+
optional .CMsgVector v_start = 16;
|
|
25
|
+
optional .CMsgVector v_end = 17;
|
|
26
|
+
optional string portal_loop_appear = 18;
|
|
27
|
+
optional string portal_loop_disappear = 19;
|
|
28
|
+
optional string hero_loop_appear = 20;
|
|
29
|
+
optional string hero_loop_disappear = 21;
|
|
30
|
+
optional int32 movement_speed = 22;
|
|
31
|
+
optional bool aura = 23;
|
|
32
|
+
optional int32 activity = 24;
|
|
33
|
+
optional int32 damage = 25;
|
|
34
|
+
optional int32 range = 26;
|
|
35
|
+
optional int32 dd_modifier_index = 27;
|
|
36
|
+
optional int32 dd_ability_id = 28 [default = -1];
|
|
37
|
+
optional string illusion_label = 29;
|
|
38
|
+
optional bool active = 30;
|
|
39
|
+
optional string player_ids = 31 [default = "-1"];
|
|
40
|
+
optional string lua_name = 32;
|
|
41
|
+
optional int32 attack_speed = 33;
|
|
42
|
+
optional uint32 aura_owner = 34 [default = 16777215];
|
|
43
|
+
optional int32 bonus_all_stats = 35;
|
|
44
|
+
optional int32 bonus_health = 36;
|
|
45
|
+
optional int32 bonus_mana = 37;
|
|
46
|
+
optional uint32 custom_entity = 38 [default = 16777215];
|
|
47
|
+
optional bool aura_within_range = 39;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
message CDOTALuaModifierEntry {
|
|
51
|
+
required int32 modifier_type = 1;
|
|
52
|
+
required string modifier_filename = 2;
|
|
53
|
+
}
|
|
@@ -0,0 +1,226 @@
|
|
|
1
|
+
import "dota_shared_enums.proto";
|
|
2
|
+
|
|
3
|
+
message CScenario_Position {
|
|
4
|
+
optional float x = 1;
|
|
5
|
+
optional float y = 2;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
message CScenarioGame_RoshanSpawner {
|
|
9
|
+
optional int32 kill_count = 1;
|
|
10
|
+
optional int32 state = 2;
|
|
11
|
+
optional float cooldown = 3;
|
|
12
|
+
optional int32 killer_team = 4;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
message CScenarioEnt_Courier {
|
|
16
|
+
optional int32 team_number = 1;
|
|
17
|
+
optional int32 owner_player_id = 2 [default = -1];
|
|
18
|
+
optional float cooldown = 3 [default = -1];
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
message CScenarioEnt_NPC {
|
|
22
|
+
optional .CScenario_Position position = 1;
|
|
23
|
+
optional string unit_name = 2;
|
|
24
|
+
optional int32 team_number = 3;
|
|
25
|
+
optional float health_frac = 4 [default = 1];
|
|
26
|
+
optional string owning_camp = 10;
|
|
27
|
+
optional .CScenario_Position owning_camp_position = 11;
|
|
28
|
+
optional string invade_goal = 20;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
message CScenarioEnt_SpiritBear {
|
|
32
|
+
optional int32 owner_id = 1 [default = -1];
|
|
33
|
+
optional int32 team_id = 2;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
message CScenarioEnt_DroppedItem {
|
|
37
|
+
optional .CScenario_Position position = 1;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
message CMsgDotaScenario {
|
|
41
|
+
message EntityRef {
|
|
42
|
+
optional int32 player_id = 1 [default = -1];
|
|
43
|
+
optional int32 neutral_stash_id = 2 [default = -1];
|
|
44
|
+
optional int32 entity_idx = 3 [default = -1];
|
|
45
|
+
optional bool roshan = 4 [default = false];
|
|
46
|
+
optional string ability_name = 10;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
message Game {
|
|
50
|
+
optional uint64 match_id = 1;
|
|
51
|
+
optional int32 game_mode = 2;
|
|
52
|
+
optional float clock_time = 3;
|
|
53
|
+
optional float internal_time = 4;
|
|
54
|
+
optional .CScenarioGame_RoshanSpawner roshan = 5;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
message TeamNeutralItem {
|
|
58
|
+
optional string name = 1;
|
|
59
|
+
optional bool consumed = 2;
|
|
60
|
+
optional int32 tier = 3;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
message Team {
|
|
64
|
+
optional int32 team_number = 1;
|
|
65
|
+
repeated .CMsgDotaScenario.TeamNeutralItem neutral_items = 2;
|
|
66
|
+
optional int32 hero_kills = 3;
|
|
67
|
+
optional int32 tower_kills = 4;
|
|
68
|
+
optional int32 barracks_kills = 5;
|
|
69
|
+
optional float glyph_cooldown = 6;
|
|
70
|
+
optional float radar_cooldown = 7;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
message HeroHeroInt {
|
|
74
|
+
optional int32 player_id = 1 [default = -1];
|
|
75
|
+
optional int32 value = 2;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
message HeroHeroFloat {
|
|
79
|
+
optional int32 player_id = 1 [default = -1];
|
|
80
|
+
optional float value = 2;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
message DamageStatsByType {
|
|
84
|
+
optional int32 damage_type = 1;
|
|
85
|
+
optional int32 received_pre_reduction = 2;
|
|
86
|
+
optional int32 received_post_reduction = 3;
|
|
87
|
+
optional int32 outgoing_pre_reduction = 4;
|
|
88
|
+
optional int32 outgoing_post_reduction = 5;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
message HeroAbility {
|
|
92
|
+
optional string name = 1;
|
|
93
|
+
optional int32 level = 2;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
message Hero {
|
|
97
|
+
optional fixed64 steam_id = 1;
|
|
98
|
+
optional int32 player_id = 2 [default = -1];
|
|
99
|
+
optional int32 team_id = 3;
|
|
100
|
+
optional string hero = 4;
|
|
101
|
+
optional int32 total_xp = 5;
|
|
102
|
+
optional int32 bkb_charges_used = 6;
|
|
103
|
+
optional int32 aeon_charges_used = 7;
|
|
104
|
+
optional int32 reliable_gold = 8;
|
|
105
|
+
optional int32 unreliable_gold = 9;
|
|
106
|
+
optional int32 total_earned_gold = 10;
|
|
107
|
+
optional int32 shared_gold = 11;
|
|
108
|
+
optional int32 hero_kill_gold = 12;
|
|
109
|
+
optional int32 creep_kill_gold = 13;
|
|
110
|
+
optional int32 neutral_kill_gold = 14;
|
|
111
|
+
optional int32 courier_gold = 15;
|
|
112
|
+
optional int32 bounty_gold = 16;
|
|
113
|
+
optional int32 roshan_gold = 17;
|
|
114
|
+
optional int32 building_gold = 18;
|
|
115
|
+
optional int32 other_gold = 19;
|
|
116
|
+
optional int32 income_gold = 26;
|
|
117
|
+
optional int32 ward_kill_gold = 27;
|
|
118
|
+
optional int32 ability_gold = 28;
|
|
119
|
+
optional int32 denies = 29;
|
|
120
|
+
optional int32 last_hits = 30;
|
|
121
|
+
optional int32 last_hit_streak = 31;
|
|
122
|
+
optional int32 last_hit_multikill = 32;
|
|
123
|
+
optional int32 nearby_creep_death_count = 33;
|
|
124
|
+
optional int32 claimed_deny_count = 34;
|
|
125
|
+
optional int32 claimed_miss_count = 35;
|
|
126
|
+
optional int32 miss_count = 36;
|
|
127
|
+
optional float buyback_cooldown_time = 40;
|
|
128
|
+
optional float buyback_gold_limit_time = 41;
|
|
129
|
+
optional float stun_duration = 44;
|
|
130
|
+
optional float healing = 45;
|
|
131
|
+
optional int32 tower_kills = 46;
|
|
132
|
+
optional int32 roshan_kills = 47;
|
|
133
|
+
optional int32 observer_wards_placed = 48;
|
|
134
|
+
optional int32 sentry_wards_placed = 49;
|
|
135
|
+
optional int32 creeps_stacked = 50;
|
|
136
|
+
optional int32 camps_stacked = 51;
|
|
137
|
+
optional int32 rune_pickups = 52;
|
|
138
|
+
optional int32 gold_spent_on_support = 53;
|
|
139
|
+
optional int32 hero_damage = 54;
|
|
140
|
+
optional int32 wards_purchased = 55;
|
|
141
|
+
optional int32 wards_destroyed = 56;
|
|
142
|
+
optional int32 gold_spent_on_consumables = 58;
|
|
143
|
+
optional int32 gold_spent_on_items = 59;
|
|
144
|
+
optional int32 gold_spent_on_buybacks = 60;
|
|
145
|
+
optional int32 gold_lost_to_death = 61;
|
|
146
|
+
optional int32 kills = 62;
|
|
147
|
+
optional int32 assists = 63;
|
|
148
|
+
optional int32 deaths = 64;
|
|
149
|
+
optional int32 kill_streak = 65;
|
|
150
|
+
optional int32 respawn_seconds = 68 [default = -1];
|
|
151
|
+
optional int32 last_buyback_time = 69;
|
|
152
|
+
optional bool first_blood_claimed = 71;
|
|
153
|
+
optional bool first_blood_given = 72;
|
|
154
|
+
optional int32 bounty_runes = 73;
|
|
155
|
+
optional int32 outposts_captured = 74;
|
|
156
|
+
optional .CScenario_Position position = 75;
|
|
157
|
+
repeated .CMsgDotaScenario.HeroHeroInt enemy_kills = 150;
|
|
158
|
+
repeated .CMsgDotaScenario.DamageStatsByType damage_stats = 151;
|
|
159
|
+
repeated .CMsgDotaScenario.HeroAbility abilities = 152;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
message Stock {
|
|
163
|
+
optional string name = 1;
|
|
164
|
+
optional int32 team_number = 2 [default = -1];
|
|
165
|
+
optional int32 player_id = 3 [default = -1];
|
|
166
|
+
optional int32 current_stock = 4;
|
|
167
|
+
optional float cooldown = 5;
|
|
168
|
+
optional int32 bonus_stock = 6;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
message Building {
|
|
172
|
+
optional string entity_name = 1;
|
|
173
|
+
optional string entity_class = 2;
|
|
174
|
+
optional int32 team_id = 3;
|
|
175
|
+
optional bool is_destroyed = 4;
|
|
176
|
+
optional float health_frac = 5 [default = 1];
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
message Entity {
|
|
180
|
+
optional .CScenarioEnt_Courier courier = 1;
|
|
181
|
+
optional .CScenarioEnt_NPC npc = 2;
|
|
182
|
+
optional .CScenarioEnt_SpiritBear spirit_bear = 3;
|
|
183
|
+
optional .CScenarioEnt_DroppedItem dropped_item = 4;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
message Item {
|
|
187
|
+
optional string name = 1;
|
|
188
|
+
optional .CMsgDotaScenario.EntityRef location = 2;
|
|
189
|
+
optional int32 owner_id = 3 [default = -1];
|
|
190
|
+
optional int32 item_slot = 4;
|
|
191
|
+
optional int32 neutral_drop_team = 5;
|
|
192
|
+
optional int32 charges = 6;
|
|
193
|
+
optional int32 secondary_charges = 7;
|
|
194
|
+
optional float lifetime = 8 [default = -1];
|
|
195
|
+
optional int32 stored_rune_type = 9 [default = -1];
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
message Modifier {
|
|
199
|
+
optional string name = 1;
|
|
200
|
+
optional .CMsgDotaScenario.EntityRef parent = 2;
|
|
201
|
+
optional .CMsgDotaScenario.EntityRef caster = 3;
|
|
202
|
+
optional .CMsgDotaScenario.EntityRef ability = 4;
|
|
203
|
+
optional float duration = 5 [default = -1];
|
|
204
|
+
optional float lifetime_remaining = 6 [default = 0];
|
|
205
|
+
optional int32 stack_count = 7;
|
|
206
|
+
optional bool create_even_if_existing = 8;
|
|
207
|
+
optional bool create_without_caster = 9;
|
|
208
|
+
optional bool create_without_ability = 10;
|
|
209
|
+
optional int32 moonshard_consumed_bonus = 100;
|
|
210
|
+
optional int32 moonshard_consumed_bonus_night_vision = 101;
|
|
211
|
+
optional int32 wardtruesight_range = 110;
|
|
212
|
+
optional int32 ultimate_scepter_consumed_alchemist_bonus_all_stats = 120;
|
|
213
|
+
optional int32 ultimate_scepter_consumed_alchemist_bonus_health = 121;
|
|
214
|
+
optional int32 ultimate_scepter_consumed_alchemist_bonus_mana = 122;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
optional uint64 lobby_id = 1;
|
|
218
|
+
optional .CMsgDotaScenario.Game game = 2;
|
|
219
|
+
repeated .CMsgDotaScenario.Team teams = 3;
|
|
220
|
+
repeated .CMsgDotaScenario.Hero heroes = 4;
|
|
221
|
+
repeated .CMsgDotaScenario.Stock stock = 5;
|
|
222
|
+
repeated .CMsgDotaScenario.Building buildings = 6;
|
|
223
|
+
repeated .CMsgDotaScenario.Entity entities = 7;
|
|
224
|
+
repeated .CMsgDotaScenario.Item items = 8;
|
|
225
|
+
repeated .CMsgDotaScenario.Modifier modifiers = 9;
|
|
226
|
+
}
|