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,29 @@
|
|
|
1
|
+
enum EDotaBroadcastMessages {
|
|
2
|
+
DOTA_BM_LANLobbyRequest = 1;
|
|
3
|
+
DOTA_BM_LANLobbyReply = 2;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
message CDOTABroadcastMsg {
|
|
7
|
+
required .EDotaBroadcastMessages type = 1 [default = DOTA_BM_LANLobbyRequest];
|
|
8
|
+
optional bytes msg = 2;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
message CDOTABroadcastMsg_LANLobbyRequest {
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
message CDOTABroadcastMsg_LANLobbyReply {
|
|
15
|
+
message CLobbyMember {
|
|
16
|
+
optional uint32 account_id = 1;
|
|
17
|
+
optional string player_name = 2;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
optional uint64 id = 1;
|
|
21
|
+
optional uint32 tournament_id = 2;
|
|
22
|
+
optional uint32 tournament_game_id = 3;
|
|
23
|
+
repeated .CDOTABroadcastMsg_LANLobbyReply.CLobbyMember members = 4;
|
|
24
|
+
optional bool requires_pass_key = 5;
|
|
25
|
+
optional uint32 leader_account_id = 6;
|
|
26
|
+
optional uint32 game_mode = 7;
|
|
27
|
+
optional string name = 8;
|
|
28
|
+
optional uint32 players = 9;
|
|
29
|
+
}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import "dota_shared_enums.proto";
|
|
2
|
+
|
|
3
|
+
enum ETournamentTemplate {
|
|
4
|
+
k_ETournamentTemplate_None = 0;
|
|
5
|
+
k_ETournamentTemplate_AutomatedWin3 = 1;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
enum ETournamentGameState {
|
|
9
|
+
k_ETournamentGameState_Unknown = 0;
|
|
10
|
+
k_ETournamentGameState_Canceled = 1;
|
|
11
|
+
k_ETournamentGameState_Scheduled = 2;
|
|
12
|
+
k_ETournamentGameState_Active = 3;
|
|
13
|
+
k_ETournamentGameState_RadVictory = 20;
|
|
14
|
+
k_ETournamentGameState_DireVictory = 21;
|
|
15
|
+
k_ETournamentGameState_RadVictoryByForfeit = 22;
|
|
16
|
+
k_ETournamentGameState_DireVictoryByForfeit = 23;
|
|
17
|
+
k_ETournamentGameState_ServerFailure = 40;
|
|
18
|
+
k_ETournamentGameState_NotNeeded = 41;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
enum ETournamentTeamState {
|
|
22
|
+
k_ETournamentTeamState_Unknown = 0;
|
|
23
|
+
k_ETournamentTeamState_Node1 = 1;
|
|
24
|
+
k_ETournamentTeamState_NodeMax = 1024;
|
|
25
|
+
k_ETournamentTeamState_Eliminated = 14003;
|
|
26
|
+
k_ETournamentTeamState_Forfeited = 14004;
|
|
27
|
+
k_ETournamentTeamState_Finished1st = 15001;
|
|
28
|
+
k_ETournamentTeamState_Finished2nd = 15002;
|
|
29
|
+
k_ETournamentTeamState_Finished3rd = 15003;
|
|
30
|
+
k_ETournamentTeamState_Finished4th = 15004;
|
|
31
|
+
k_ETournamentTeamState_Finished5th = 15005;
|
|
32
|
+
k_ETournamentTeamState_Finished6th = 15006;
|
|
33
|
+
k_ETournamentTeamState_Finished7th = 15007;
|
|
34
|
+
k_ETournamentTeamState_Finished8th = 15008;
|
|
35
|
+
k_ETournamentTeamState_Finished9th = 15009;
|
|
36
|
+
k_ETournamentTeamState_Finished10th = 15010;
|
|
37
|
+
k_ETournamentTeamState_Finished11th = 15011;
|
|
38
|
+
k_ETournamentTeamState_Finished12th = 15012;
|
|
39
|
+
k_ETournamentTeamState_Finished13th = 15013;
|
|
40
|
+
k_ETournamentTeamState_Finished14th = 15014;
|
|
41
|
+
k_ETournamentTeamState_Finished15th = 15015;
|
|
42
|
+
k_ETournamentTeamState_Finished16th = 15016;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
enum ETournamentState {
|
|
46
|
+
k_ETournamentState_Unknown = 0;
|
|
47
|
+
k_ETournamentState_CanceledByAdmin = 1;
|
|
48
|
+
k_ETournamentState_Completed = 2;
|
|
49
|
+
k_ETournamentState_Merged = 3;
|
|
50
|
+
k_ETournamentState_ServerFailure = 4;
|
|
51
|
+
k_ETournamentState_TeamAbandoned = 5;
|
|
52
|
+
k_ETournamentState_TeamTimeoutForfeit = 6;
|
|
53
|
+
k_ETournamentState_TeamTimeoutRefund = 7;
|
|
54
|
+
k_ETournamentState_ServerFailureGrantedVictory = 8;
|
|
55
|
+
k_ETournamentState_TeamTimeoutGrantedVictory = 9;
|
|
56
|
+
k_ETournamentState_InProgress = 100;
|
|
57
|
+
k_ETournamentState_WaitingToMerge = 101;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
enum ETournamentNodeState {
|
|
61
|
+
k_ETournamentNodeState_Unknown = 0;
|
|
62
|
+
k_ETournamentNodeState_Canceled = 1;
|
|
63
|
+
k_ETournamentNodeState_TeamsNotYetAssigned = 2;
|
|
64
|
+
k_ETournamentNodeState_InBetweenGames = 3;
|
|
65
|
+
k_ETournamentNodeState_GameInProgress = 4;
|
|
66
|
+
k_ETournamentNodeState_A_Won = 5;
|
|
67
|
+
k_ETournamentNodeState_B_Won = 6;
|
|
68
|
+
k_ETournamentNodeState_A_WonByForfeit = 7;
|
|
69
|
+
k_ETournamentNodeState_B_WonByForfeit = 8;
|
|
70
|
+
k_ETournamentNodeState_A_Bye = 9;
|
|
71
|
+
k_ETournamentNodeState_A_Abandoned = 10;
|
|
72
|
+
k_ETournamentNodeState_ServerFailure = 11;
|
|
73
|
+
k_ETournamentNodeState_A_TimeoutForfeit = 12;
|
|
74
|
+
k_ETournamentNodeState_A_TimeoutRefund = 13;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
enum EDOTAGroupMergeResult {
|
|
78
|
+
k_EDOTAGroupMergeResult_OK = 0;
|
|
79
|
+
k_EDOTAGroupMergeResult_FAILED_GENERIC = 1;
|
|
80
|
+
k_EDOTAGroupMergeResult_NOT_LEADER = 2;
|
|
81
|
+
k_EDOTAGroupMergeResult_TOO_MANY_PLAYERS = 3;
|
|
82
|
+
k_EDOTAGroupMergeResult_TOO_MANY_COACHES = 4;
|
|
83
|
+
k_EDOTAGroupMergeResult_ENGINE_MISMATCH = 5;
|
|
84
|
+
k_EDOTAGroupMergeResult_NO_SUCH_GROUP = 6;
|
|
85
|
+
k_EDOTAGroupMergeResult_OTHER_GROUP_NOT_OPEN = 7;
|
|
86
|
+
k_EDOTAGroupMergeResult_ALREADY_INVITED = 8;
|
|
87
|
+
k_EDOTAGroupMergeResult_NOT_INVITED = 9;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
enum EPartyBeaconType {
|
|
91
|
+
k_EPartyBeaconType_Available = 0;
|
|
92
|
+
k_EPartyBeaconType_Joinable = 1;
|
|
93
|
+
}
|
|
@@ -0,0 +1,573 @@
|
|
|
1
|
+
import "dota_commonmessages.proto";
|
|
2
|
+
import "dota_shared_enums.proto";
|
|
3
|
+
|
|
4
|
+
enum EDotaClientMessages {
|
|
5
|
+
DOTA_CM_MapLine = 301;
|
|
6
|
+
DOTA_CM_AspectRatio = 302;
|
|
7
|
+
DOTA_CM_MapPing = 303;
|
|
8
|
+
DOTA_CM_UnitsAutoAttack = 304;
|
|
9
|
+
DOTA_CM_SearchString = 307;
|
|
10
|
+
DOTA_CM_Pause = 308;
|
|
11
|
+
DOTA_CM_ShopViewMode = 309;
|
|
12
|
+
DOTA_CM_SetUnitShareFlag = 310;
|
|
13
|
+
DOTA_CM_SwapRequest = 311;
|
|
14
|
+
DOTA_CM_SwapAccept = 312;
|
|
15
|
+
DOTA_CM_WorldLine = 313;
|
|
16
|
+
DOTA_CM_RequestGraphUpdate = 314;
|
|
17
|
+
DOTA_CM_ItemAlert = 315;
|
|
18
|
+
DOTA_CM_ChatWheel = 316;
|
|
19
|
+
DOTA_CM_SendStatPopup = 317;
|
|
20
|
+
DOTA_CM_BeginLastHitChallenge = 318;
|
|
21
|
+
DOTA_CM_UpdateQuickBuy = 319;
|
|
22
|
+
DOTA_CM_UpdateCoachListen = 320;
|
|
23
|
+
DOTA_CM_CoachHUDPing = 321;
|
|
24
|
+
DOTA_CM_RecordVote = 322;
|
|
25
|
+
DOTA_CM_UnitsAutoAttackAfterSpell = 323;
|
|
26
|
+
DOTA_CM_WillPurchaseAlert = 324;
|
|
27
|
+
DOTA_CM_PlayerShowCase = 325;
|
|
28
|
+
DOTA_CM_TeleportRequiresHalt = 326;
|
|
29
|
+
DOTA_CM_CameraZoomAmount = 327;
|
|
30
|
+
DOTA_CM_BroadcasterUsingCamerman = 328;
|
|
31
|
+
DOTA_CM_BroadcasterUsingAssistedCameraOperator = 329;
|
|
32
|
+
DOTA_CM_EnemyItemAlert = 330;
|
|
33
|
+
DOTA_CM_FreeInventory = 331;
|
|
34
|
+
DOTA_CM_BuyBackStateAlert = 332;
|
|
35
|
+
DOTA_CM_QuickBuyAlert = 333;
|
|
36
|
+
DOTA_CM_HeroStatueLike = 334;
|
|
37
|
+
DOTA_CM_ModifierAlert = 335;
|
|
38
|
+
DOTA_CM_TeamShowcaseEditor = 336;
|
|
39
|
+
DOTA_CM_HPManaAlert = 337;
|
|
40
|
+
DOTA_CM_GlyphAlert = 338;
|
|
41
|
+
DOTA_CM_TeamShowcaseClientData = 339;
|
|
42
|
+
DOTA_CM_PlayTeamShowcase = 340;
|
|
43
|
+
DOTA_CM_EventCNY2015Cmd = 341;
|
|
44
|
+
DOTA_CM_FillEmptySlotsWithBots = 342;
|
|
45
|
+
DOTA_CM_DemoHero = 343;
|
|
46
|
+
DOTA_CM_AbilityLearnModeToggled = 344;
|
|
47
|
+
DOTA_CM_AbilityStartUse = 345;
|
|
48
|
+
DOTA_CM_ChallengeSelect = 346;
|
|
49
|
+
DOTA_CM_ChallengeReroll = 347;
|
|
50
|
+
DOTA_CM_ClickedBuff = 348;
|
|
51
|
+
DOTA_CM_CoinWager = 349;
|
|
52
|
+
DOTA_CM_ExecuteOrders = 350;
|
|
53
|
+
DOTA_CM_XPAlert = 351;
|
|
54
|
+
DOTA_CM_EventPointsTip = 353;
|
|
55
|
+
DOTA_CM_KillMyHero = 355;
|
|
56
|
+
DOTA_CM_QuestStatus = 356;
|
|
57
|
+
DOTA_CM_ToggleAutoattack = 357;
|
|
58
|
+
DOTA_CM_SpecialAbility = 358;
|
|
59
|
+
DOTA_CM_KillcamDamageTaken = 359;
|
|
60
|
+
DOTA_CM_SetEnemyStartingPosition = 360;
|
|
61
|
+
DOTA_CM_SetDesiredWardPlacement = 361;
|
|
62
|
+
DOTA_CM_RollDice = 362;
|
|
63
|
+
DOTA_CM_FlipCoin = 363;
|
|
64
|
+
DOTA_CM_RequestItemSuggestions = 364;
|
|
65
|
+
DOTA_CM_MakeTeamCaptain = 365;
|
|
66
|
+
DOTA_CM_CoinWagerToken = 366;
|
|
67
|
+
DOTA_CM_RankWager = 367;
|
|
68
|
+
DOTA_CM_DismissAllStatPopups = 368;
|
|
69
|
+
DOTA_CM_HelpTipSystemStateChanged = 369;
|
|
70
|
+
DOTA_CM_ChannelRequiresHalt = 370;
|
|
71
|
+
DOTA_CM_RequestBulkCombatLog = 371;
|
|
72
|
+
DOTA_CM_AbilityDraftRequestAbility = 372;
|
|
73
|
+
DOTA_CM_GuideSelectOption = 373;
|
|
74
|
+
DOTA_CM_GuideSelected = 374;
|
|
75
|
+
DOTA_CM_DamageReport = 375;
|
|
76
|
+
DOTA_CM_SalutePlayer = 376;
|
|
77
|
+
DOTA_CM_SprayWheel = 377;
|
|
78
|
+
DOTA_CM_TipAlert = 378;
|
|
79
|
+
DOTA_CM_EmptyTeleportAlert = 379;
|
|
80
|
+
DOTA_CM_RadarAlert = 380;
|
|
81
|
+
DOTA_CM_TalentTreeAlert = 381;
|
|
82
|
+
DOTA_CM_SetCavernMapVariant = 382;
|
|
83
|
+
DOTA_CM_PauseGameOrder = 383;
|
|
84
|
+
DOTA_CM_VersusScene_PlayerBehavior = 384;
|
|
85
|
+
DOTA_CM_PlayerBounty = 385;
|
|
86
|
+
DOTA_CM_PlayerBountyCancel = 386;
|
|
87
|
+
DOTA_CM_EmptyItemSlotAlert = 388;
|
|
88
|
+
DOTA_CM_AddOverwatchReportMarker = 389;
|
|
89
|
+
DOTA_CM_AghsStatusAlert = 390;
|
|
90
|
+
DOTA_CM_PerfReport = 391;
|
|
91
|
+
DOTA_CM_ContextualTips_Subscribe = 393;
|
|
92
|
+
DOTA_CM_ChatMessage = 394;
|
|
93
|
+
DOTA_CM_AddCommunicationsReportMarker = 395;
|
|
94
|
+
DOTA_CM_AddCommunicationsBlockMarker = 396;
|
|
95
|
+
DOTA_CM_NeutralCampAlert = 397;
|
|
96
|
+
DOTA_CM_DuelAccepted = 398;
|
|
97
|
+
DOTA_CM_ChooseNeutralItem = 399;
|
|
98
|
+
DOTA_CM_PlayerDraftPick = 800;
|
|
99
|
+
DOTA_CM_PlayerDraftSuggest = 801;
|
|
100
|
+
DOTA_CM_PlayerDraftPreferRole = 802;
|
|
101
|
+
DOTA_CM_PlayerDraftPreferTeam = 803;
|
|
102
|
+
DOTA_CM_ChatWheelAlert = 804;
|
|
103
|
+
DOTA_CM_AbilityAlert = 805;
|
|
104
|
+
DOTA_CM_AllyAbilityAlert = 806;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
message CDOTAClientMsg_MapPing {
|
|
108
|
+
optional .CDOTAMsg_LocationPing location_ping = 1;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
message CDOTAClientMsg_ItemAlert {
|
|
112
|
+
optional .CDOTAMsg_ItemAlert item_alert = 1;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
message CDOTAClientMsg_EnemyItemAlert {
|
|
116
|
+
optional int32 item_entindex = 1 [default = -1];
|
|
117
|
+
optional int32 rune_type = 2 [default = -1];
|
|
118
|
+
optional int32 item_level = 3 [default = -1];
|
|
119
|
+
optional int32 primary_charges = 4 [default = -1];
|
|
120
|
+
optional int32 secondary_charges = 5 [default = -1];
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
message CDOTAClientMsg_ModifierAlert {
|
|
124
|
+
optional int32 buff_internal_index = 1;
|
|
125
|
+
optional int32 target_entindex = 2 [default = -1];
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
message CDOTAClientMsg_ClickedBuff {
|
|
129
|
+
optional int32 buff_internal_index = 1;
|
|
130
|
+
optional int32 target_entindex = 2 [default = -1];
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
message CDOTAClientMsg_HPManaAlert {
|
|
134
|
+
optional int32 target_entindex = 1 [default = -1];
|
|
135
|
+
optional bool show_raw_values = 2;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
message CDOTAClientMsg_NeutralCampAlert {
|
|
139
|
+
optional int32 spawner_entindex = 1 [default = -1];
|
|
140
|
+
optional int32 unit_entindex = 2 [default = -1];
|
|
141
|
+
optional bool stack_request = 3;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
message CDOTAClientMsg_GlyphAlert {
|
|
145
|
+
optional bool negative = 1;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
message CDOTAClientMsg_RadarAlert {
|
|
149
|
+
optional bool negative = 1;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
message CDOTAClientMsg_MapLine {
|
|
153
|
+
optional .CDOTAMsg_MapLine mapline = 1;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
message CDOTAClientMsg_AspectRatio {
|
|
157
|
+
optional float ratio = 1;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
message CDOTAClientMsg_UnitsAutoAttackMode {
|
|
161
|
+
enum EMode {
|
|
162
|
+
INVALID = -1;
|
|
163
|
+
NEVER = 0;
|
|
164
|
+
AFTER_SPELLCAST = 1;
|
|
165
|
+
ALWAYS = 2;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
enum EUnitType {
|
|
169
|
+
NORMAL = 0;
|
|
170
|
+
SUMMONED = 1;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
optional .CDOTAClientMsg_UnitsAutoAttackMode.EMode mode = 1 [default = INVALID];
|
|
174
|
+
optional .CDOTAClientMsg_UnitsAutoAttackMode.EUnitType unit_type = 2 [default = NORMAL];
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
message CDOTAClientMsg_UnitsAutoAttackAfterSpell {
|
|
178
|
+
optional bool enabled = 1;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
message CDOTAClientMsg_TeleportRequiresHalt {
|
|
182
|
+
optional bool enabled = 1;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
message CDOTAClientMsg_ChannelRequiresHalt {
|
|
186
|
+
optional bool enabled = 1;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
message CDOTAClientMsg_SearchString {
|
|
190
|
+
optional string search = 1;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
message CDOTAClientMsg_Pause {
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
message CDOTAClientMsg_ShopViewMode {
|
|
197
|
+
optional uint32 mode = 1;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
message CDOTAClientMsg_SetUnitShareFlag {
|
|
201
|
+
optional int32 player_id = 1 [default = -1];
|
|
202
|
+
optional uint32 flag = 2;
|
|
203
|
+
optional bool state = 3;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
message CDOTAClientMsg_SwapRequest {
|
|
207
|
+
optional int32 player_id = 1 [default = -1];
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
message CDOTAClientMsg_SwapAccept {
|
|
211
|
+
optional int32 player_id = 1 [default = -1];
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
message CDOTAClientMsg_WorldLine {
|
|
215
|
+
optional .CDOTAMsg_WorldLine worldline = 1;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
message CDOTAClientMsg_RequestGraphUpdate {
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
message CDOTAClientMsg_ChatWheel {
|
|
222
|
+
optional uint32 chat_message_id = 1 [default = 4294967295];
|
|
223
|
+
optional uint32 param_hero_id = 2;
|
|
224
|
+
optional uint32 emoticon_id = 3;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
message CDOTAClientMsg_SendStatPopup {
|
|
228
|
+
optional .CDOTAMsg_SendStatPopup statpopup = 1;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
message CDOTAClientMsg_DismissAllStatPopups {
|
|
232
|
+
optional .CDOTAMsg_DismissAllStatPopups dismissallmsg = 1;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
message CDOTAClientMsg_BeginLastHitChallenge {
|
|
236
|
+
optional uint32 chosen_lane = 1;
|
|
237
|
+
optional bool helper_enabled = 2;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
message CDOTAClientMsg_UpdateQuickBuyItem {
|
|
241
|
+
optional int32 item_ability_id = 1 [default = -1];
|
|
242
|
+
optional bool purchasable = 2 [default = false];
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
message CDOTAClientMsg_UpdateQuickBuy {
|
|
246
|
+
repeated .CDOTAClientMsg_UpdateQuickBuyItem items = 1;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
message CDOTAClientMsg_RecordVote {
|
|
250
|
+
optional int32 choice_index = 1;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
message CDOTAClientMsg_WillPurchaseAlert {
|
|
254
|
+
optional int32 item_ability_id = 1 [default = -1];
|
|
255
|
+
optional uint32 gold_remaining = 2;
|
|
256
|
+
optional int32 suggestion_player_id = 3 [default = -1];
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
message CDOTAClientMsg_BuyBackStateAlert {
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
message CDOTAClientMsg_QuickBuyAlert {
|
|
263
|
+
optional int32 item_ability_id = 1 [default = -1];
|
|
264
|
+
optional int32 gold_cost = 2;
|
|
265
|
+
optional int32 item_cooldown_seconds = 3;
|
|
266
|
+
optional bool show_buyback = 4;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
message CDOTAClientMsg_PlayerShowCase {
|
|
270
|
+
optional bool showcase = 1;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
message CDOTAClientMsg_CameraZoomAmount {
|
|
274
|
+
optional float zoom_amount = 1;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
message CDOTAClientMsg_BroadcasterUsingCameraman {
|
|
278
|
+
optional bool cameraman = 1;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
message CDOTAClientMsg_BroadcasterUsingAssistedCameraOperator {
|
|
282
|
+
optional bool enabled = 1;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
message CDOTAClientMsg_FillEmptySlotsWithBots {
|
|
286
|
+
optional bool fillwithbots = 1;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
message CDOTAClientMsg_HeroStatueLike {
|
|
290
|
+
optional int32 owner_player_id = 1 [default = -1];
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
message CDOTAClientMsg_EventCNY2015Cmd {
|
|
294
|
+
optional bytes data = 1;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
message CDOTAClientMsg_DemoHero {
|
|
298
|
+
optional int32 hero_id = 1;
|
|
299
|
+
optional int32 hero_id_to_spawn = 2;
|
|
300
|
+
repeated uint32 item_defs = 3;
|
|
301
|
+
repeated uint64 item_ids = 4;
|
|
302
|
+
optional uint32 style_index = 5 [default = 255];
|
|
303
|
+
optional bool keep_existing_demohero = 6;
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
message CDOTAClientMsg_ChallengeSelect {
|
|
307
|
+
optional uint32 event_id = 1;
|
|
308
|
+
optional uint32 slot_id = 2;
|
|
309
|
+
optional uint32 sequence_id = 3;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
message CDOTAClientMsg_ChallengeReroll {
|
|
313
|
+
optional .EEvent event_id = 1 [default = EVENT_ID_NONE];
|
|
314
|
+
optional uint32 slot_id = 2;
|
|
315
|
+
optional uint32 sequence_id = 3;
|
|
316
|
+
optional uint32 hero_id = 4;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
message CDOTAClientMsg_CoinWager {
|
|
320
|
+
optional uint32 wager_amount = 1;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
message CDOTAClientMsg_CoinWagerToken {
|
|
324
|
+
optional uint64 wager_token_item_id = 1;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
message CDOTAClientMsg_RankWager {
|
|
328
|
+
optional bool announce_wager = 1;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
message CDOTAClientMsg_PlayerBounty {
|
|
332
|
+
optional int32 player_id = 1 [default = -1];
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
message CDOTAClientMsg_EventPointsTip {
|
|
336
|
+
optional int32 recipient_player_id = 1 [default = -1];
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
message CDOTAClientMsg_ExecuteOrders {
|
|
340
|
+
repeated .CDOTAMsg_UnitOrder orders = 1;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
message CDOTAClientMsg_XPAlert {
|
|
344
|
+
optional int32 target_entindex = 1 [default = -1];
|
|
345
|
+
optional uint32 damage_taken = 2;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
message CDOTAClientMsg_TalentTreeAlert {
|
|
349
|
+
optional int32 target_entindex = 1 [default = -1];
|
|
350
|
+
optional int32 ability_id = 2 [default = -1];
|
|
351
|
+
optional int32 slot = 3;
|
|
352
|
+
optional bool learned = 4;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
message CDOTAClientMsg_KillcamDamageTaken {
|
|
356
|
+
optional int32 target_entindex = 1 [default = -1];
|
|
357
|
+
optional uint32 damage_taken = 2;
|
|
358
|
+
optional uint32 item_type = 3;
|
|
359
|
+
optional int32 item_ability_id = 4 [default = -1];
|
|
360
|
+
optional string hero_name = 5;
|
|
361
|
+
optional string damage_color = 6;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
message CDOTAClientMsg_KillMyHero {
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
message CDOTAClientMsg_QuestStatus {
|
|
368
|
+
optional uint32 quest_id = 1;
|
|
369
|
+
optional uint32 challenge_id = 2;
|
|
370
|
+
optional uint32 progress = 3;
|
|
371
|
+
optional uint32 goal = 4;
|
|
372
|
+
optional uint32 query = 5;
|
|
373
|
+
optional float fail_gametime = 6;
|
|
374
|
+
optional int32 item_ability_id = 7 [default = -1];
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
message CDOTAClientMsg_ToggleAutoattack {
|
|
378
|
+
optional int32 mode = 1;
|
|
379
|
+
optional bool show_message = 2;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
message CDOTAClientMsg_SpecialAbility {
|
|
383
|
+
optional uint32 ability_index = 1;
|
|
384
|
+
optional int32 target_entindex = 2 [default = -1];
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
message CDOTAClientMsg_SetEnemyStartingPosition {
|
|
388
|
+
optional int32 enemy_player_id = 1 [default = -1];
|
|
389
|
+
optional uint32 enemy_starting_position = 2;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
message CDOTAClientMsg_SetDesiredWardPlacement {
|
|
393
|
+
optional uint32 ward_index = 1;
|
|
394
|
+
optional float ward_x = 2;
|
|
395
|
+
optional float ward_y = 3;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
message CDOTAClientMsg_RollDice {
|
|
399
|
+
optional uint32 channel_type = 1;
|
|
400
|
+
optional uint32 roll_min = 2;
|
|
401
|
+
optional uint32 roll_max = 3;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
message CDOTAClientMsg_FlipCoin {
|
|
405
|
+
optional uint32 channel_type = 1;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
message CDOTAClientMsg_RequestItemSuggestions {
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
message CDOTAClientMsg_MakeTeamCaptain {
|
|
412
|
+
optional int32 player_id = 1 [default = -1];
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
message CDOTAClientMsg_HelpTipSystemStateChanged {
|
|
416
|
+
optional bool tip_displayed = 1;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
message CDOTAClientMsg_RequestBulkCombatLog {
|
|
420
|
+
optional float game_time = 1;
|
|
421
|
+
optional float duration = 2;
|
|
422
|
+
optional bool recent_player_death = 3;
|
|
423
|
+
optional int32 player_id = 4 [default = -1];
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
message CDOTAClientMsg_AbilityDraftRequestAbility {
|
|
427
|
+
optional int32 requested_ability_id = 1 [default = -1];
|
|
428
|
+
optional bool ctrl_is_down = 2;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
message CDOTAClientMsg_GuideSelectOption {
|
|
432
|
+
optional uint32 option = 1;
|
|
433
|
+
optional bool force_recalculate = 2;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
message CDOTAClientMsg_GuideSelected {
|
|
437
|
+
optional uint64 guide_workshop_id = 1;
|
|
438
|
+
optional bool is_plus_guide = 2;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
message CDOTAClientMsg_DamageReport {
|
|
442
|
+
optional uint32 target_hero_id = 1;
|
|
443
|
+
optional uint32 source_hero_id = 2;
|
|
444
|
+
optional int32 damage_amount = 3;
|
|
445
|
+
optional bool broadcast = 4;
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
message CDOTAClientMsg_SalutePlayer {
|
|
449
|
+
optional int32 target_player_id = 1 [default = -1];
|
|
450
|
+
optional int32 event_id = 2;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
message CDOTAClientMsg_TipAlert {
|
|
454
|
+
optional string tip_text = 1;
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
message CDOTAClientMsg_EmptyTeleportAlert {
|
|
458
|
+
optional int32 target_entindex = 1 [default = -1];
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
message CDOTAClientMsg_SetCavernMapVariant {
|
|
462
|
+
optional uint32 map_variant = 1 [default = 255];
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
message CDOTAClientMsg_PauseGameOrder {
|
|
466
|
+
optional int32 order_id = 1;
|
|
467
|
+
optional int32 data = 2;
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
message CDOTAClientMsg_VersusScene_PlayerBehavior {
|
|
471
|
+
optional .EDOTAVersusScenePlayerBehavior behavior = 1 [default = VS_PLAYER_BEHAVIOR_PLAY_ACTIVITY];
|
|
472
|
+
optional .VersusScene_PlayActivity play_activity = 2;
|
|
473
|
+
optional .VersusScene_ChatWheel chat_wheel = 3;
|
|
474
|
+
optional .VersusScene_PlaybackRate playback_rate = 4;
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
message CDOTAClientMsg_EmptyItemSlotAlert {
|
|
478
|
+
optional int32 target_entindex = 1 [default = -1];
|
|
479
|
+
optional int32 slot_index = 2;
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
message CDOTAClientMsg_AddOverwatchReportMarker {
|
|
483
|
+
optional int32 target_player_id = 1 [default = -1];
|
|
484
|
+
optional .EOverwatchReportReason reason = 2 [default = k_EOverwatchReportReason_Unknown];
|
|
485
|
+
optional uint32 seconds_ago = 4;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
message CDOTAClientMsg_AddCommunicationsReportMarker {
|
|
489
|
+
optional int32 target_player_id = 1 [default = -1];
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
message CDOTAClientMsg_AddCommunicationsBlockMarker {
|
|
493
|
+
optional int32 target_player_id = 1 [default = -1];
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
message CDOTAClientMsg_AghsStatusAlert {
|
|
497
|
+
optional int32 source_player_id = 1 [default = -1];
|
|
498
|
+
optional int32 target_player_id = 2 [default = -1];
|
|
499
|
+
optional int32 target_entindex = 3 [default = -1];
|
|
500
|
+
optional uint32 alert_type = 4;
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
message CDOTAClientMsg_PerfReport {
|
|
504
|
+
optional float average_frame_time = 1;
|
|
505
|
+
optional float max_frame_time = 2;
|
|
506
|
+
optional float average_compute_time = 3;
|
|
507
|
+
optional float max_compute_time = 4;
|
|
508
|
+
optional float average_client_tick_time = 5;
|
|
509
|
+
optional float max_client_tick_time = 6;
|
|
510
|
+
optional float average_client_simulate_time = 7;
|
|
511
|
+
optional float max_client_simulate_time = 8;
|
|
512
|
+
optional float average_output_time = 9;
|
|
513
|
+
optional float max_output_time = 10;
|
|
514
|
+
optional float average_wait_for_rendering_to_complete_time = 11;
|
|
515
|
+
optional float max_wait_for_rendering_to_complete_time = 12;
|
|
516
|
+
optional float average_swap_time = 13;
|
|
517
|
+
optional float max_swap_time = 14;
|
|
518
|
+
optional float average_frame_update_time = 15;
|
|
519
|
+
optional float max_frame_update_time = 16;
|
|
520
|
+
optional float average_idle_time = 17;
|
|
521
|
+
optional float max_idle_time = 18;
|
|
522
|
+
optional float average_input_processing_time = 19;
|
|
523
|
+
optional float max_input_processing_time = 20;
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
message CDOTAClientMsg_ContextualTips_Subscribe_Entry {
|
|
527
|
+
optional bool unsubscribe = 1;
|
|
528
|
+
optional int32 tip_id = 2;
|
|
529
|
+
optional int32 prior_display_count = 3;
|
|
530
|
+
repeated int32 variants_seen = 4;
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
message CDOTAClientMsg_ContextualTips_Subscribe {
|
|
534
|
+
repeated .CDOTAClientMsg_ContextualTips_Subscribe_Entry tips = 1;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
message CDOTAClientMsg_ChatMessage {
|
|
538
|
+
optional uint32 channel_type = 1;
|
|
539
|
+
optional string message_text = 2;
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
message CDOTAClientMsg_DuelAccepted {
|
|
543
|
+
optional int32 challenger_player_id = 1 [default = -1];
|
|
544
|
+
optional int32 accepter_player_id = 2 [default = -1];
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
message CDOTAClientMsg_ChooseNeutralItem {
|
|
548
|
+
optional int32 neutral_item_index = 1;
|
|
549
|
+
optional int32 target_entindex = 2 [default = -1];
|
|
550
|
+
optional int32 slot_index = 3;
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
message CDOTAClientMsg_PlayerDraftPick {
|
|
554
|
+
optional int32 player_id = 1 [default = -1];
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
message CDOTAClientMsg_PlayerDraftSuggest {
|
|
558
|
+
optional int32 player_id = 1 [default = -1];
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
message CDOTAClientMsg_PlayerDraftPreferRole {
|
|
562
|
+
optional int32 role_idx = 1;
|
|
563
|
+
optional bool desired = 2;
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
message CDOTAClientMsg_PlayerDraftPreferTeam {
|
|
567
|
+
optional int32 team = 1;
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
message CDOTAClientMsg_AbilityAlert {
|
|
571
|
+
optional uint32 ability_entindex = 1 [default = 16777215];
|
|
572
|
+
optional bool ctrl_held = 2;
|
|
573
|
+
}
|