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,820 @@
|
|
|
1
|
+
enum DOTA_GameMode {
|
|
2
|
+
DOTA_GAMEMODE_NONE = 0;
|
|
3
|
+
DOTA_GAMEMODE_AP = 1;
|
|
4
|
+
DOTA_GAMEMODE_CM = 2;
|
|
5
|
+
DOTA_GAMEMODE_RD = 3;
|
|
6
|
+
DOTA_GAMEMODE_SD = 4;
|
|
7
|
+
DOTA_GAMEMODE_AR = 5;
|
|
8
|
+
DOTA_GAMEMODE_INTRO = 6;
|
|
9
|
+
DOTA_GAMEMODE_HW = 7;
|
|
10
|
+
DOTA_GAMEMODE_REVERSE_CM = 8;
|
|
11
|
+
DOTA_GAMEMODE_XMAS = 9;
|
|
12
|
+
DOTA_GAMEMODE_TUTORIAL = 10;
|
|
13
|
+
DOTA_GAMEMODE_MO = 11;
|
|
14
|
+
DOTA_GAMEMODE_LP = 12;
|
|
15
|
+
DOTA_GAMEMODE_POOL1 = 13;
|
|
16
|
+
DOTA_GAMEMODE_FH = 14;
|
|
17
|
+
DOTA_GAMEMODE_CUSTOM = 15;
|
|
18
|
+
DOTA_GAMEMODE_CD = 16;
|
|
19
|
+
DOTA_GAMEMODE_BD = 17;
|
|
20
|
+
DOTA_GAMEMODE_ABILITY_DRAFT = 18;
|
|
21
|
+
DOTA_GAMEMODE_EVENT = 19;
|
|
22
|
+
DOTA_GAMEMODE_ARDM = 20;
|
|
23
|
+
DOTA_GAMEMODE_1V1MID = 21;
|
|
24
|
+
DOTA_GAMEMODE_ALL_DRAFT = 22;
|
|
25
|
+
DOTA_GAMEMODE_TURBO = 23;
|
|
26
|
+
DOTA_GAMEMODE_MUTATION = 24;
|
|
27
|
+
DOTA_GAMEMODE_COACHES_CHALLENGE = 25;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
enum DOTA_GameState {
|
|
31
|
+
DOTA_GAMERULES_STATE_INIT = 0;
|
|
32
|
+
DOTA_GAMERULES_STATE_WAIT_FOR_PLAYERS_TO_LOAD = 1;
|
|
33
|
+
DOTA_GAMERULES_STATE_HERO_SELECTION = 2;
|
|
34
|
+
DOTA_GAMERULES_STATE_STRATEGY_TIME = 3;
|
|
35
|
+
DOTA_GAMERULES_STATE_PRE_GAME = 4;
|
|
36
|
+
DOTA_GAMERULES_STATE_GAME_IN_PROGRESS = 5;
|
|
37
|
+
DOTA_GAMERULES_STATE_POST_GAME = 6;
|
|
38
|
+
DOTA_GAMERULES_STATE_DISCONNECT = 7;
|
|
39
|
+
DOTA_GAMERULES_STATE_TEAM_SHOWCASE = 8;
|
|
40
|
+
DOTA_GAMERULES_STATE_CUSTOM_GAME_SETUP = 9;
|
|
41
|
+
DOTA_GAMERULES_STATE_WAIT_FOR_MAP_TO_LOAD = 10;
|
|
42
|
+
DOTA_GAMERULES_STATE_SCENARIO_SETUP = 11;
|
|
43
|
+
DOTA_GAMERULES_STATE_PLAYER_DRAFT = 12;
|
|
44
|
+
DOTA_GAMERULES_STATE_LAST = 13;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
enum DOTA_GC_TEAM {
|
|
48
|
+
DOTA_GC_TEAM_GOOD_GUYS = 0;
|
|
49
|
+
DOTA_GC_TEAM_BAD_GUYS = 1;
|
|
50
|
+
DOTA_GC_TEAM_BROADCASTER = 2;
|
|
51
|
+
DOTA_GC_TEAM_SPECTATOR = 3;
|
|
52
|
+
DOTA_GC_TEAM_PLAYER_POOL = 4;
|
|
53
|
+
DOTA_GC_TEAM_NOTEAM = 5;
|
|
54
|
+
DOTA_GC_TEAM_CUSTOM_1 = 6;
|
|
55
|
+
DOTA_GC_TEAM_CUSTOM_2 = 7;
|
|
56
|
+
DOTA_GC_TEAM_CUSTOM_3 = 8;
|
|
57
|
+
DOTA_GC_TEAM_CUSTOM_4 = 9;
|
|
58
|
+
DOTA_GC_TEAM_CUSTOM_5 = 10;
|
|
59
|
+
DOTA_GC_TEAM_CUSTOM_6 = 11;
|
|
60
|
+
DOTA_GC_TEAM_CUSTOM_7 = 12;
|
|
61
|
+
DOTA_GC_TEAM_CUSTOM_8 = 13;
|
|
62
|
+
DOTA_GC_TEAM_NEUTRALS = 14;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
enum EEvent {
|
|
66
|
+
EVENT_ID_NONE = 0;
|
|
67
|
+
EVENT_ID_DIRETIDE = 1;
|
|
68
|
+
EVENT_ID_SPRING_FESTIVAL = 2;
|
|
69
|
+
EVENT_ID_FROSTIVUS_2013 = 3;
|
|
70
|
+
EVENT_ID_COMPENDIUM_2014 = 4;
|
|
71
|
+
EVENT_ID_NEXON_PC_BANG = 5;
|
|
72
|
+
EVENT_ID_PWRD_DAC_2015 = 6;
|
|
73
|
+
EVENT_ID_NEW_BLOOM_2015 = 7;
|
|
74
|
+
EVENT_ID_INTERNATIONAL_2015 = 8;
|
|
75
|
+
EVENT_ID_FALL_MAJOR_2015 = 9;
|
|
76
|
+
EVENT_ID_ORACLE_PA = 10;
|
|
77
|
+
EVENT_ID_NEW_BLOOM_2015_PREBEAST = 11;
|
|
78
|
+
EVENT_ID_FROSTIVUS = 12;
|
|
79
|
+
EVENT_ID_WINTER_MAJOR_2016 = 13;
|
|
80
|
+
EVENT_ID_INTERNATIONAL_2016 = 14;
|
|
81
|
+
EVENT_ID_FALL_MAJOR_2016 = 15;
|
|
82
|
+
EVENT_ID_WINTER_MAJOR_2017 = 16;
|
|
83
|
+
EVENT_ID_NEW_BLOOM_2017 = 17;
|
|
84
|
+
EVENT_ID_INTERNATIONAL_2017 = 18;
|
|
85
|
+
EVENT_ID_PLUS_SUBSCRIPTION = 19;
|
|
86
|
+
EVENT_ID_SINGLES_DAY_2017 = 20;
|
|
87
|
+
EVENT_ID_FROSTIVUS_2017 = 21;
|
|
88
|
+
EVENT_ID_INTERNATIONAL_2018 = 22;
|
|
89
|
+
EVENT_ID_FROSTIVUS_2018 = 23;
|
|
90
|
+
EVENT_ID_NEW_BLOOM_2019 = 24;
|
|
91
|
+
EVENT_ID_INTERNATIONAL_2019 = 25;
|
|
92
|
+
EVENT_ID_NEW_PLAYER_EXPERIENCE = 26;
|
|
93
|
+
EVENT_ID_FROSTIVUS_2019 = 27;
|
|
94
|
+
EVENT_ID_NEW_BLOOM_2020 = 28;
|
|
95
|
+
EVENT_ID_INTERNATIONAL_2020 = 29;
|
|
96
|
+
EVENT_ID_TEAM_FANDOM = 30;
|
|
97
|
+
EVENT_ID_DIRETIDE_2020 = 31;
|
|
98
|
+
EVENT_ID_SPRING_2021 = 32;
|
|
99
|
+
EVENT_ID_FALL_2021 = 33;
|
|
100
|
+
EVENT_ID_TEAM_FANDOM_FALL_2021 = 34;
|
|
101
|
+
EVENT_ID_TEAM_2021_2022_TOUR2 = 35;
|
|
102
|
+
EVENT_ID_INTERNATIONAL_2022 = 36;
|
|
103
|
+
EVENT_ID_TEAM_2021_2022_TOUR3 = 37;
|
|
104
|
+
EVENT_ID_TEAM_INTERNATIONAL_2022 = 38;
|
|
105
|
+
EVENT_ID_PERMANENT_GRANTS = 39;
|
|
106
|
+
EVENT_ID_MUERTA_RELEASE_SPRING2023 = 40;
|
|
107
|
+
EVENT_ID_TEAM_2023_TOUR1 = 41;
|
|
108
|
+
EVENT_ID_TEAM_2023_TOUR2 = 42;
|
|
109
|
+
EVENT_ID_TEAM_2023_TOUR3 = 43;
|
|
110
|
+
EVENT_ID_INTERNATIONAL_2023 = 45;
|
|
111
|
+
EVENT_ID_10TH_ANNIVERSARY = 46;
|
|
112
|
+
EVENT_ID_FROSTIVUS_2023 = 48;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
enum ERankType {
|
|
116
|
+
k_ERankType_Invalid = 0;
|
|
117
|
+
k_ERankType_Casual = 1;
|
|
118
|
+
k_ERankType_Ranked = 2;
|
|
119
|
+
k_ERankType_CasualLegacy = 3;
|
|
120
|
+
k_ERankType_RankedLegacy = 4;
|
|
121
|
+
k_ERankType_CasualGlicko = 5;
|
|
122
|
+
k_ERankType_RankedGlicko = 6;
|
|
123
|
+
k_ERankType_RankMax = 7;
|
|
124
|
+
k_ERankType_BehaviorPrivate = 100;
|
|
125
|
+
k_ERankType_BehaviorPublic = 101;
|
|
126
|
+
k_ERankType_Max = 102;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
enum DOTALeaverStatus_t {
|
|
130
|
+
DOTA_LEAVER_NONE = 0;
|
|
131
|
+
DOTA_LEAVER_DISCONNECTED = 1;
|
|
132
|
+
DOTA_LEAVER_DISCONNECTED_TOO_LONG = 2;
|
|
133
|
+
DOTA_LEAVER_ABANDONED = 3;
|
|
134
|
+
DOTA_LEAVER_AFK = 4;
|
|
135
|
+
DOTA_LEAVER_NEVER_CONNECTED = 5;
|
|
136
|
+
DOTA_LEAVER_NEVER_CONNECTED_TOO_LONG = 6;
|
|
137
|
+
DOTA_LEAVER_FAILED_TO_READY_UP = 7;
|
|
138
|
+
DOTA_LEAVER_DECLINED = 8;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
enum DOTAConnectionState_t {
|
|
142
|
+
DOTA_CONNECTION_STATE_UNKNOWN = 0;
|
|
143
|
+
DOTA_CONNECTION_STATE_NOT_YET_CONNECTED = 1;
|
|
144
|
+
DOTA_CONNECTION_STATE_CONNECTED = 2;
|
|
145
|
+
DOTA_CONNECTION_STATE_DISCONNECTED = 3;
|
|
146
|
+
DOTA_CONNECTION_STATE_ABANDONED = 4;
|
|
147
|
+
DOTA_CONNECTION_STATE_LOADING = 5;
|
|
148
|
+
DOTA_CONNECTION_STATE_FAILED = 6;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
enum Fantasy_Roles {
|
|
152
|
+
FANTASY_ROLE_UNDEFINED = 0;
|
|
153
|
+
FANTASY_ROLE_CORE = 1;
|
|
154
|
+
FANTASY_ROLE_SUPPORT = 2;
|
|
155
|
+
FANTASY_ROLE_OFFLANE = 3;
|
|
156
|
+
FANTASY_ROLE_MID = 4;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
enum Fantasy_Scoring {
|
|
160
|
+
FANTASY_SCORING_KILLS = 0;
|
|
161
|
+
FANTASY_SCORING_DEATHS = 1;
|
|
162
|
+
FANTASY_SCORING_CS = 2;
|
|
163
|
+
FANTASY_SCORING_GPM = 3;
|
|
164
|
+
FANTASY_SCORING_TOWER_KILLS = 4;
|
|
165
|
+
FANTASY_SCORING_ROSHAN_KILLS = 5;
|
|
166
|
+
FANTASY_SCORING_TEAMFIGHT_PARTICIPATION = 6;
|
|
167
|
+
FANTASY_SCORING_WARDS_PLANTED = 7;
|
|
168
|
+
FANTASY_SCORING_CAMPS_STACKED = 8;
|
|
169
|
+
FANTASY_SCORING_RUNES_GRABBED = 9;
|
|
170
|
+
FANTASY_SCORING_FIRST_BLOOD = 10;
|
|
171
|
+
FANTASY_SCORING_STUNS = 11;
|
|
172
|
+
FANTASY_SCORING_SMOKES_USED = 12;
|
|
173
|
+
FANTASY_SCORING_NEUTRAL_TOKENS_FOUND = 13;
|
|
174
|
+
FANTASY_SCORING_WATCHERS_TAKEN = 14;
|
|
175
|
+
FANTASY_SCORING_LOTUSES_GAINED = 15;
|
|
176
|
+
FANTASY_SCORING_TORMENTOR_KILLS = 16;
|
|
177
|
+
FANTASY_SCORING_COURIER_KILLS = 17;
|
|
178
|
+
FANTASY_SCORING_TYPES = 18;
|
|
179
|
+
FANTASY_SCORING_INVALID = 19;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
enum Fantasy_Team_Slots {
|
|
183
|
+
FANTASY_SLOT_NONE = 0;
|
|
184
|
+
FANTASY_SLOT_CORE = 1;
|
|
185
|
+
FANTASY_SLOT_SUPPORT = 2;
|
|
186
|
+
FANTASY_SLOT_ANY = 3;
|
|
187
|
+
FANTASY_SLOT_BENCH = 4;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
enum Fantasy_Selection_Mode {
|
|
191
|
+
FANTASY_SELECTION_INVALID = 0;
|
|
192
|
+
FANTASY_SELECTION_LOCKED = 1;
|
|
193
|
+
FANTASY_SELECTION_SHUFFLE = 2;
|
|
194
|
+
FANTASY_SELECTION_FREE_PICK = 3;
|
|
195
|
+
FANTASY_SELECTION_ENDED = 4;
|
|
196
|
+
FANTASY_SELECTION_PRE_SEASON = 5;
|
|
197
|
+
FANTASY_SELECTION_PRE_DRAFT = 6;
|
|
198
|
+
FANTASY_SELECTION_DRAFTING = 7;
|
|
199
|
+
FANTASY_SELECTION_REGULAR_SEASON = 8;
|
|
200
|
+
FANTASY_SELECTION_CARD_BASED = 9;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
enum Fantasy_Gem_Type {
|
|
204
|
+
FANTASY_GEM_TYPE_RUBY = 0;
|
|
205
|
+
FANTASY_GEM_TYPE_SAPPHIRE = 1;
|
|
206
|
+
FANTASY_GEM_TYPE_EMERALD = 2;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
enum DOTAChatChannelType_t {
|
|
210
|
+
DOTAChannelType_Regional = 0;
|
|
211
|
+
DOTAChannelType_Custom = 1;
|
|
212
|
+
DOTAChannelType_Party = 2;
|
|
213
|
+
DOTAChannelType_Lobby = 3;
|
|
214
|
+
DOTAChannelType_Team = 4;
|
|
215
|
+
DOTAChannelType_Guild = 5;
|
|
216
|
+
DOTAChannelType_Fantasy = 6;
|
|
217
|
+
DOTAChannelType_Whisper = 7;
|
|
218
|
+
DOTAChannelType_Console = 8;
|
|
219
|
+
DOTAChannelType_Tab = 9;
|
|
220
|
+
DOTAChannelType_Invalid = 10;
|
|
221
|
+
DOTAChannelType_GameAll = 11;
|
|
222
|
+
DOTAChannelType_GameAllies = 12;
|
|
223
|
+
DOTAChannelType_GameSpectator = 13;
|
|
224
|
+
DOTAChannelType_GameCoaching = 14;
|
|
225
|
+
DOTAChannelType_Cafe = 15;
|
|
226
|
+
DOTAChannelType_CustomGame = 16;
|
|
227
|
+
DOTAChannelType_Private = 17;
|
|
228
|
+
DOTAChannelType_PostGame = 18;
|
|
229
|
+
DOTAChannelType_BattleCup = 19;
|
|
230
|
+
DOTAChannelType_HLTVSpectator = 20;
|
|
231
|
+
DOTAChannelType_GameEvents = 21;
|
|
232
|
+
DOTAChannelType_Trivia = 22;
|
|
233
|
+
DOTAChannelType_NewPlayer = 23;
|
|
234
|
+
DOTAChannelType_PrivateCoaching = 24;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
enum EChatSpecialPrivileges {
|
|
238
|
+
k_EChatSpecialPrivileges_None = 0;
|
|
239
|
+
k_EChatSpecialPrivileges_Moderator = 1;
|
|
240
|
+
k_EChatSpecialPrivileges_SuperModerator = 2;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
enum DOTACommType_t {
|
|
244
|
+
DOTA_COMM_TYPE_NONE = 0;
|
|
245
|
+
DOTA_COMM_TYPE_PING = 1;
|
|
246
|
+
DOTA_COMM_TYPE_CHATWHEEL = 2;
|
|
247
|
+
DOTA_COMM_TYPE_TIP = 3;
|
|
248
|
+
DOTA_COMM_TYPE_TEXT = 4;
|
|
249
|
+
DOTA_COMM_TYPE_SHOWCASE = 5;
|
|
250
|
+
DOTA_COMM_TYPE_VOICE = 6;
|
|
251
|
+
DOTA_COMM_TYPE_ALLY_ABILITY = 7;
|
|
252
|
+
DOTA_COMM_TYPE_PAUSE = 8;
|
|
253
|
+
DOTA_COMM_TYPE_COACHING = 9;
|
|
254
|
+
DOTA_COMM_TYPE_NOCOOLDOWN = 10;
|
|
255
|
+
DOTA_COMM_TYPE_RANKEDMATCHMAKE = 11;
|
|
256
|
+
DOTA_COMM_TYPE_DROPS = 12;
|
|
257
|
+
DOTA_COMM_TYPE_NEWPLAYER_EXPERT = 13;
|
|
258
|
+
DOTA_COMM_TYPE_COACHED = 14;
|
|
259
|
+
DOTA_COMM_TYPE_MAPDRAWING = 15;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
enum DOTACommLevel_t {
|
|
263
|
+
DOTA_COMM_LEVEL_NONE = 0;
|
|
264
|
+
DOTA_COMM_LEVEL_COOLDOWN = 1;
|
|
265
|
+
DOTA_COMM_LEVEL_PINGS = 2;
|
|
266
|
+
DOTA_COMM_LEVEL_MAPDRAWING = 3;
|
|
267
|
+
DOTA_COMM_LEVEL_CHAT = 4;
|
|
268
|
+
DOTA_COMM_LEVEL_TIPPING = 5;
|
|
269
|
+
DOTA_COMM_LEVEL_VOICE = 6;
|
|
270
|
+
DOTA_COMM_LEVEL_ALLIED_ABILITY = 7;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
enum DOTABehaviorLevel_t {
|
|
274
|
+
DOTA_BEHAVIOR_LEVEL_NONE = 0;
|
|
275
|
+
DOTA_BEHAVIOR_LEVEL_RANKED_ALLOWED = 1;
|
|
276
|
+
DOTA_BEHAVIOR_LEVEL_PAUSING = 2;
|
|
277
|
+
DOTA_BEHAVIOR_LEVEL_DROPS = 3;
|
|
278
|
+
DOTA_BEHAVIOR_LEVEL_COACHING = 4;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
enum EProfileCardSlotType {
|
|
282
|
+
k_EProfileCardSlotType_Empty = 0;
|
|
283
|
+
k_EProfileCardSlotType_Stat = 1;
|
|
284
|
+
k_EProfileCardSlotType_Trophy = 2;
|
|
285
|
+
k_EProfileCardSlotType_Item = 3;
|
|
286
|
+
k_EProfileCardSlotType_Hero = 4;
|
|
287
|
+
k_EProfileCardSlotType_Emoticon = 5;
|
|
288
|
+
k_EProfileCardSlotType_Team = 6;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
enum EMatchGroupServerStatus {
|
|
292
|
+
k_EMatchGroupServerStatus_OK = 0;
|
|
293
|
+
k_EMatchGroupServerStatus_LimitedAvailability = 1;
|
|
294
|
+
k_EMatchGroupServerStatus_Offline = 2;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
enum DOTA_CM_PICK {
|
|
298
|
+
DOTA_CM_RANDOM = 0;
|
|
299
|
+
DOTA_CM_GOOD_GUYS = 1;
|
|
300
|
+
DOTA_CM_BAD_GUYS = 2;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
enum DOTALowPriorityBanType {
|
|
304
|
+
DOTA_LOW_PRIORITY_BAN_ABANDON = 0;
|
|
305
|
+
DOTA_LOW_PRIORITY_BAN_REPORTS = 1;
|
|
306
|
+
DOTA_LOW_PRIORITY_BAN_SECONDARY_ABANDON = 2;
|
|
307
|
+
DOTA_LOW_PRIORITY_BAN_PRE_GAME_ROLE = 3;
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
enum DOTALobbyReadyState {
|
|
311
|
+
DOTALobbyReadyState_UNDECLARED = 0;
|
|
312
|
+
DOTALobbyReadyState_ACCEPTED = 1;
|
|
313
|
+
DOTALobbyReadyState_DECLINED = 2;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
enum DOTAJoinLobbyResult {
|
|
317
|
+
DOTA_JOIN_RESULT_SUCCESS = 0;
|
|
318
|
+
DOTA_JOIN_RESULT_ALREADY_IN_GAME = 1;
|
|
319
|
+
DOTA_JOIN_RESULT_INVALID_LOBBY = 2;
|
|
320
|
+
DOTA_JOIN_RESULT_INCORRECT_PASSWORD = 3;
|
|
321
|
+
DOTA_JOIN_RESULT_ACCESS_DENIED = 4;
|
|
322
|
+
DOTA_JOIN_RESULT_GENERIC_ERROR = 5;
|
|
323
|
+
DOTA_JOIN_RESULT_INCORRECT_VERSION = 6;
|
|
324
|
+
DOTA_JOIN_RESULT_IN_TEAM_PARTY = 7;
|
|
325
|
+
DOTA_JOIN_RESULT_NO_LOBBY_FOUND = 8;
|
|
326
|
+
DOTA_JOIN_RESULT_LOBBY_FULL = 9;
|
|
327
|
+
DOTA_JOIN_RESULT_CUSTOM_GAME_INCORRECT_VERSION = 10;
|
|
328
|
+
DOTA_JOIN_RESULT_TIMEOUT = 11;
|
|
329
|
+
DOTA_JOIN_RESULT_CUSTOM_GAME_COOLDOWN = 12;
|
|
330
|
+
DOTA_JOIN_RESULT_BUSY = 13;
|
|
331
|
+
DOTA_JOIN_RESULT_NO_PLAYTIME = 14;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
enum DOTASelectionPriorityRules {
|
|
335
|
+
k_DOTASelectionPriorityRules_Manual = 0;
|
|
336
|
+
k_DOTASelectionPriorityRules_Automatic = 1;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
enum DOTASelectionPriorityChoice {
|
|
340
|
+
k_DOTASelectionPriorityChoice_Invalid = 0;
|
|
341
|
+
k_DOTASelectionPriorityChoice_FirstPick = 1;
|
|
342
|
+
k_DOTASelectionPriorityChoice_SecondPick = 2;
|
|
343
|
+
k_DOTASelectionPriorityChoice_Radiant = 3;
|
|
344
|
+
k_DOTASelectionPriorityChoice_Dire = 4;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
enum DOTAMatchVote {
|
|
348
|
+
DOTAMatchVote_INVALID = 0;
|
|
349
|
+
DOTAMatchVote_POSITIVE = 1;
|
|
350
|
+
DOTAMatchVote_NEGATIVE = 2;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
enum DOTALobbyVisibility {
|
|
354
|
+
DOTALobbyVisibility_Public = 0;
|
|
355
|
+
DOTALobbyVisibility_Friends = 1;
|
|
356
|
+
DOTALobbyVisibility_Unlisted = 2;
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
enum EDOTAPlayerMMRType {
|
|
360
|
+
k_EDOTAPlayerMMRType_Invalid = 0;
|
|
361
|
+
k_EDOTAPlayerMMRType_GeneralHidden = 1;
|
|
362
|
+
k_EDOTAPlayerMMRType_GeneralCompetitive = 3;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
enum EDOTAMMRBoostType {
|
|
366
|
+
k_EDOTAMMRBoostType_None = 0;
|
|
367
|
+
k_EDOTAMMRBoostType_Leader = 1;
|
|
368
|
+
k_EDOTAMMRBoostType_Follower = 2;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
enum MatchType {
|
|
372
|
+
MATCH_TYPE_CASUAL = 0;
|
|
373
|
+
MATCH_TYPE_COOP_BOTS = 1;
|
|
374
|
+
MATCH_TYPE_COMPETITIVE = 4;
|
|
375
|
+
MATCH_TYPE_WEEKEND_TOURNEY = 5;
|
|
376
|
+
MATCH_TYPE_EVENT = 7;
|
|
377
|
+
MATCH_TYPE_COACHES_CHALLENGE = 12;
|
|
378
|
+
MATCH_TYPE_NEW_PLAYER_POOL = 14;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
enum DOTABotDifficulty {
|
|
382
|
+
BOT_DIFFICULTY_PASSIVE = 0;
|
|
383
|
+
BOT_DIFFICULTY_EASY = 1;
|
|
384
|
+
BOT_DIFFICULTY_MEDIUM = 2;
|
|
385
|
+
BOT_DIFFICULTY_HARD = 3;
|
|
386
|
+
BOT_DIFFICULTY_UNFAIR = 4;
|
|
387
|
+
BOT_DIFFICULTY_INVALID = 5;
|
|
388
|
+
BOT_DIFFICULTY_EXTRA1 = 6;
|
|
389
|
+
BOT_DIFFICULTY_EXTRA2 = 7;
|
|
390
|
+
BOT_DIFFICULTY_EXTRA3 = 8;
|
|
391
|
+
BOT_DIFFICULTY_NPX = 9;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
enum DOTA_BOT_MODE {
|
|
395
|
+
DOTA_BOT_MODE_NONE = 0;
|
|
396
|
+
DOTA_BOT_MODE_LANING = 1;
|
|
397
|
+
DOTA_BOT_MODE_ATTACK = 2;
|
|
398
|
+
DOTA_BOT_MODE_ROAM = 3;
|
|
399
|
+
DOTA_BOT_MODE_RETREAT = 4;
|
|
400
|
+
DOTA_BOT_MODE_SECRET_SHOP = 5;
|
|
401
|
+
DOTA_BOT_MODE_SIDE_SHOP = 6;
|
|
402
|
+
DOTA_BOT_MODE_RUNE = 7;
|
|
403
|
+
DOTA_BOT_MODE_PUSH_TOWER_TOP = 8;
|
|
404
|
+
DOTA_BOT_MODE_PUSH_TOWER_MID = 9;
|
|
405
|
+
DOTA_BOT_MODE_PUSH_TOWER_BOT = 10;
|
|
406
|
+
DOTA_BOT_MODE_DEFEND_TOWER_TOP = 11;
|
|
407
|
+
DOTA_BOT_MODE_DEFEND_TOWER_MID = 12;
|
|
408
|
+
DOTA_BOT_MODE_DEFEND_TOWER_BOT = 13;
|
|
409
|
+
DOTA_BOT_MODE_ASSEMBLE = 14;
|
|
410
|
+
DOTA_BOT_MODE_ASSEMBLE_WITH_HUMANS = 15;
|
|
411
|
+
DOTA_BOT_MODE_TEAM_ROAM = 16;
|
|
412
|
+
DOTA_BOT_MODE_FARM = 17;
|
|
413
|
+
DOTA_BOT_MODE_DEFEND_ALLY = 18;
|
|
414
|
+
DOTA_BOT_MODE_EVASIVE_MANEUVERS = 19;
|
|
415
|
+
DOTA_BOT_MODE_ROSHAN = 20;
|
|
416
|
+
DOTA_BOT_MODE_ITEM = 21;
|
|
417
|
+
DOTA_BOT_MODE_WARD = 22;
|
|
418
|
+
DOTA_BOT_MODE_COMPANION = 23;
|
|
419
|
+
DOTA_BOT_MODE_TUTORIAL_BOSS = 24;
|
|
420
|
+
DOTA_BOT_MODE_MINION = 25;
|
|
421
|
+
DOTA_BOT_MODE_OUTPOST = 26;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
enum MatchLanguages {
|
|
425
|
+
MATCH_LANGUAGE_INVALID = 0;
|
|
426
|
+
MATCH_LANGUAGE_ENGLISH = 1;
|
|
427
|
+
MATCH_LANGUAGE_RUSSIAN = 2;
|
|
428
|
+
MATCH_LANGUAGE_CHINESE = 3;
|
|
429
|
+
MATCH_LANGUAGE_KOREAN = 4;
|
|
430
|
+
MATCH_LANGUAGE_SPANISH = 5;
|
|
431
|
+
MATCH_LANGUAGE_PORTUGUESE = 6;
|
|
432
|
+
MATCH_LANGUAGE_ENGLISH2 = 7;
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
enum ETourneyQueueDeadlineState {
|
|
436
|
+
k_ETourneyQueueDeadlineState_Normal = 0;
|
|
437
|
+
k_ETourneyQueueDeadlineState_Missed = 1;
|
|
438
|
+
k_ETourneyQueueDeadlineState_ExpiredOK = 2;
|
|
439
|
+
k_ETourneyQueueDeadlineState_SeekingBye = 3;
|
|
440
|
+
k_ETourneyQueueDeadlineState_EligibleForRefund = 4;
|
|
441
|
+
k_ETourneyQueueDeadlineState_NA = -1;
|
|
442
|
+
k_ETourneyQueueDeadlineState_ExpiringSoon = 101;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
enum EMatchOutcome {
|
|
446
|
+
k_EMatchOutcome_Unknown = 0;
|
|
447
|
+
k_EMatchOutcome_RadVictory = 2;
|
|
448
|
+
k_EMatchOutcome_DireVictory = 3;
|
|
449
|
+
k_EMatchOutcome_NeutralVictory = 4;
|
|
450
|
+
k_EMatchOutcome_NoTeamWinner = 5;
|
|
451
|
+
k_EMatchOutcome_Custom1Victory = 6;
|
|
452
|
+
k_EMatchOutcome_Custom2Victory = 7;
|
|
453
|
+
k_EMatchOutcome_Custom3Victory = 8;
|
|
454
|
+
k_EMatchOutcome_Custom4Victory = 9;
|
|
455
|
+
k_EMatchOutcome_Custom5Victory = 10;
|
|
456
|
+
k_EMatchOutcome_Custom6Victory = 11;
|
|
457
|
+
k_EMatchOutcome_Custom7Victory = 12;
|
|
458
|
+
k_EMatchOutcome_Custom8Victory = 13;
|
|
459
|
+
k_EMatchOutcome_NotScored_PoorNetworkConditions = 64;
|
|
460
|
+
k_EMatchOutcome_NotScored_Leaver = 65;
|
|
461
|
+
k_EMatchOutcome_NotScored_ServerCrash = 66;
|
|
462
|
+
k_EMatchOutcome_NotScored_NeverStarted = 67;
|
|
463
|
+
k_EMatchOutcome_NotScored_Canceled = 68;
|
|
464
|
+
k_EMatchOutcome_NotScored_Suspicious = 69;
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
enum ELaneType {
|
|
468
|
+
LANE_TYPE_UNKNOWN = 0;
|
|
469
|
+
LANE_TYPE_SAFE = 1;
|
|
470
|
+
LANE_TYPE_OFF = 2;
|
|
471
|
+
LANE_TYPE_MID = 3;
|
|
472
|
+
LANE_TYPE_JUNGLE = 4;
|
|
473
|
+
LANE_TYPE_ROAM = 5;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
enum EBadgeType {
|
|
477
|
+
k_EBadgeType_Invalid = 0;
|
|
478
|
+
k_EBadgeType_TI7_Midweek = 1;
|
|
479
|
+
k_EBadgeType_TI7_Finals = 2;
|
|
480
|
+
k_EBadgeType_TI7_AllEvent = 3;
|
|
481
|
+
k_EBadgeType_TI8_Midweek = 4;
|
|
482
|
+
k_EBadgeType_TI8_Finals = 5;
|
|
483
|
+
k_EBadgeType_TI8_AllEvent = 6;
|
|
484
|
+
k_EBadgeType_TI10 = 7;
|
|
485
|
+
k_EBadgeType_TI11_PlayoffsDay1 = 8;
|
|
486
|
+
k_EBadgeType_TI11_PlayoffsDay2 = 9;
|
|
487
|
+
k_EBadgeType_TI11_PlayoffsDay3 = 10;
|
|
488
|
+
k_EBadgeType_TI11_PlayoffsDay4 = 11;
|
|
489
|
+
k_EBadgeType_TI11_FinalsWeekend = 12;
|
|
490
|
+
k_EBadgeType_TI12_PlayoffsDay1 = 13;
|
|
491
|
+
k_EBadgeType_TI12_PlayoffsDay2 = 14;
|
|
492
|
+
k_EBadgeType_TI12_PlayoffsDay3 = 15;
|
|
493
|
+
k_EBadgeType_TI12_FinalsWeekend = 16;
|
|
494
|
+
k_EBadgeType_TI12_Special = 17;
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
enum ELeagueStatus {
|
|
498
|
+
LEAGUE_STATUS_UNSET = 0;
|
|
499
|
+
LEAGUE_STATUS_UNSUBMITTED = 1;
|
|
500
|
+
LEAGUE_STATUS_SUBMITTED = 2;
|
|
501
|
+
LEAGUE_STATUS_ACCEPTED = 3;
|
|
502
|
+
LEAGUE_STATUS_REJECTED = 4;
|
|
503
|
+
LEAGUE_STATUS_CONCLUDED = 5;
|
|
504
|
+
LEAGUE_STATUS_DELETED = 6;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
enum ELeagueRegion {
|
|
508
|
+
LEAGUE_REGION_UNSET = 0;
|
|
509
|
+
LEAGUE_REGION_NA = 1;
|
|
510
|
+
LEAGUE_REGION_SA = 2;
|
|
511
|
+
LEAGUE_REGION_WEU = 3;
|
|
512
|
+
LEAGUE_REGION_EEU = 4;
|
|
513
|
+
LEAGUE_REGION_CHINA = 5;
|
|
514
|
+
LEAGUE_REGION_SEA = 6;
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
enum ELeagueTier {
|
|
518
|
+
LEAGUE_TIER_UNSET = 0;
|
|
519
|
+
LEAGUE_TIER_AMATEUR = 1;
|
|
520
|
+
LEAGUE_TIER_PROFESSIONAL = 2;
|
|
521
|
+
LEAGUE_TIER_MINOR = 3;
|
|
522
|
+
LEAGUE_TIER_MAJOR = 4;
|
|
523
|
+
LEAGUE_TIER_INTERNATIONAL = 5;
|
|
524
|
+
LEAGUE_TIER_DPC_QUALIFIER = 6;
|
|
525
|
+
LEAGUE_TIER_DPC_LEAGUE_QUALIFIER = 7;
|
|
526
|
+
LEAGUE_TIER_DPC_LEAGUE = 8;
|
|
527
|
+
LEAGUE_TIER_DPC_LEAGUE_FINALS = 9;
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
enum ELeagueTierCategory {
|
|
531
|
+
LEAGUE_TIER_CATEGORY_AMATEUR = 1;
|
|
532
|
+
LEAGUE_TIER_CATEGORY_PROFESSIONAL = 2;
|
|
533
|
+
LEAGUE_TIER_CATEGORY_DPC = 3;
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
enum ELeagueDivision {
|
|
537
|
+
LEAGUE_DIVISION_UNSET = 0;
|
|
538
|
+
LEAGUE_DIVISION_I = 1;
|
|
539
|
+
LEAGUE_DIVISION_II = 2;
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
enum ELeagueBroadcastProvider {
|
|
543
|
+
LEAGUE_BROADCAST_UNKNOWN = 0;
|
|
544
|
+
LEAGUE_BROADCAST_STEAM = 1;
|
|
545
|
+
LEAGUE_BROADCAST_TWITCH = 2;
|
|
546
|
+
LEAGUE_BROADCAST_YOUTUBE = 3;
|
|
547
|
+
LEAGUE_BROADCAST_OTHER = 100;
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
enum ELeaguePhase {
|
|
551
|
+
LEAGUE_PHASE_UNSET = 0;
|
|
552
|
+
LEAGUE_PHASE_REGIONAL_QUALIFIER = 1;
|
|
553
|
+
LEAGUE_PHASE_GROUP_STAGE = 2;
|
|
554
|
+
LEAGUE_PHASE_MAIN_EVENT = 3;
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
enum ELeagueAuditAction {
|
|
558
|
+
LEAGUE_AUDIT_ACTION_INVALID = 0;
|
|
559
|
+
LEAGUE_AUDIT_ACTION_LEAGUE_CREATE = 1;
|
|
560
|
+
LEAGUE_AUDIT_ACTION_LEAGUE_EDIT = 2;
|
|
561
|
+
LEAGUE_AUDIT_ACTION_LEAGUE_DELETE = 3;
|
|
562
|
+
LEAGUE_AUDIT_ACTION_LEAGUE_ADMIN_ADD = 4;
|
|
563
|
+
LEAGUE_AUDIT_ACTION_LEAGUE_ADMIN_REVOKE = 5;
|
|
564
|
+
LEAGUE_AUDIT_ACTION_LEAGUE_ADMIN_PROMOTE = 6;
|
|
565
|
+
LEAGUE_AUDIT_ACTION_LEAGUE_STREAM_ADD = 7;
|
|
566
|
+
LEAGUE_AUDIT_ACTION_LEAGUE_STREAM_REMOVE = 8;
|
|
567
|
+
LEAGUE_AUDIT_ACTION_LEAGUE_IMAGE_UPDATED = 9;
|
|
568
|
+
LEAGUE_AUDIT_ACTION_LEAGUE_MESSAGE_ADDED = 10;
|
|
569
|
+
LEAGUE_AUDIT_ACTION_LEAGUE_SUBMITTED = 11;
|
|
570
|
+
LEAGUE_AUDIT_ACTION_LEAGUE_SET_PRIZE_POOL = 12;
|
|
571
|
+
LEAGUE_AUDIT_ACTION_LEAGUE_ADD_PRIZE_POOL_ITEM = 13;
|
|
572
|
+
LEAGUE_AUDIT_ACTION_LEAGUE_REMOVE_PRIZE_POOL_ITEM = 14;
|
|
573
|
+
LEAGUE_AUDIT_ACTION_LEAGUE_MATCH_START = 15;
|
|
574
|
+
LEAGUE_AUDIT_ACTION_LEAGUE_MATCH_END = 16;
|
|
575
|
+
LEAGUE_AUDIT_ACTION_LEAGUE_ADD_INVITED_TEAM = 17;
|
|
576
|
+
LEAGUE_AUDIT_ACTION_LEAGUE_REMOVE_INVITED_TEAM = 18;
|
|
577
|
+
LEAGUE_AUDIT_ACTION_LEAGUE_STATUS_CHANGED = 19;
|
|
578
|
+
LEAGUE_AUDIT_ACTION_LEAGUE_STREAM_EDIT = 20;
|
|
579
|
+
LEAGUE_AUDIT_ACTION_LEAGUE_TEAM_SWAP = 21;
|
|
580
|
+
LEAGUE_AUDIT_ACTION_NODEGROUP_CREATE = 100;
|
|
581
|
+
LEAGUE_AUDIT_ACTION_NODEGROUP_DESTROY = 101;
|
|
582
|
+
LEAGUE_AUDIT_ACTION_NODEGROUP_ADD_TEAM = 102;
|
|
583
|
+
LEAGUE_AUDIT_ACTION_NODEGROUP_REMOVE_TEAM = 103;
|
|
584
|
+
LEAGUE_AUDIT_ACTION_NODEGROUP_SET_ADVANCING = 104;
|
|
585
|
+
LEAGUE_AUDIT_ACTION_NODEGROUP_EDIT = 105;
|
|
586
|
+
LEAGUE_AUDIT_ACTION_NODEGROUP_POPULATE = 106;
|
|
587
|
+
LEAGUE_AUDIT_ACTION_NODEGROUP_COMPLETED = 107;
|
|
588
|
+
LEAGUE_AUDIT_ACTION_NODEGROUP_SET_SECONDARY_ADVANCING = 108;
|
|
589
|
+
LEAGUE_AUDIT_ACTION_NODEGROUP_SET_TERTIARY_ADVANCING = 109;
|
|
590
|
+
LEAGUE_AUDIT_ACTION_NODE_CREATE = 200;
|
|
591
|
+
LEAGUE_AUDIT_ACTION_NODE_DESTROY = 201;
|
|
592
|
+
LEAGUE_AUDIT_ACTION_NODE_AUTOCREATE = 202;
|
|
593
|
+
LEAGUE_AUDIT_ACTION_NODE_SET_TEAM = 203;
|
|
594
|
+
LEAGUE_AUDIT_ACTION_NODE_SET_SERIES_ID = 204;
|
|
595
|
+
LEAGUE_AUDIT_ACTION_NODE_SET_ADVANCING = 205;
|
|
596
|
+
LEAGUE_AUDIT_ACTION_NODE_SET_TIME = 206;
|
|
597
|
+
LEAGUE_AUDIT_ACTION_NODE_MATCH_COMPLETED = 207;
|
|
598
|
+
LEAGUE_AUDIT_ACTION_NODE_COMPLETED = 208;
|
|
599
|
+
LEAGUE_AUDIT_ACTION_NODE_EDIT = 209;
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
enum DOTA_COMBATLOG_TYPES {
|
|
603
|
+
DOTA_COMBATLOG_INVALID = -1;
|
|
604
|
+
DOTA_COMBATLOG_DAMAGE = 0;
|
|
605
|
+
DOTA_COMBATLOG_HEAL = 1;
|
|
606
|
+
DOTA_COMBATLOG_MODIFIER_ADD = 2;
|
|
607
|
+
DOTA_COMBATLOG_MODIFIER_REMOVE = 3;
|
|
608
|
+
DOTA_COMBATLOG_DEATH = 4;
|
|
609
|
+
DOTA_COMBATLOG_ABILITY = 5;
|
|
610
|
+
DOTA_COMBATLOG_ITEM = 6;
|
|
611
|
+
DOTA_COMBATLOG_LOCATION = 7;
|
|
612
|
+
DOTA_COMBATLOG_GOLD = 8;
|
|
613
|
+
DOTA_COMBATLOG_GAME_STATE = 9;
|
|
614
|
+
DOTA_COMBATLOG_XP = 10;
|
|
615
|
+
DOTA_COMBATLOG_PURCHASE = 11;
|
|
616
|
+
DOTA_COMBATLOG_BUYBACK = 12;
|
|
617
|
+
DOTA_COMBATLOG_ABILITY_TRIGGER = 13;
|
|
618
|
+
DOTA_COMBATLOG_PLAYERSTATS = 14;
|
|
619
|
+
DOTA_COMBATLOG_MULTIKILL = 15;
|
|
620
|
+
DOTA_COMBATLOG_KILLSTREAK = 16;
|
|
621
|
+
DOTA_COMBATLOG_TEAM_BUILDING_KILL = 17;
|
|
622
|
+
DOTA_COMBATLOG_FIRST_BLOOD = 18;
|
|
623
|
+
DOTA_COMBATLOG_MODIFIER_STACK_EVENT = 19;
|
|
624
|
+
DOTA_COMBATLOG_NEUTRAL_CAMP_STACK = 20;
|
|
625
|
+
DOTA_COMBATLOG_PICKUP_RUNE = 21;
|
|
626
|
+
DOTA_COMBATLOG_REVEALED_INVISIBLE = 22;
|
|
627
|
+
DOTA_COMBATLOG_HERO_SAVED = 23;
|
|
628
|
+
DOTA_COMBATLOG_MANA_RESTORED = 24;
|
|
629
|
+
DOTA_COMBATLOG_HERO_LEVELUP = 25;
|
|
630
|
+
DOTA_COMBATLOG_BOTTLE_HEAL_ALLY = 26;
|
|
631
|
+
DOTA_COMBATLOG_ENDGAME_STATS = 27;
|
|
632
|
+
DOTA_COMBATLOG_INTERRUPT_CHANNEL = 28;
|
|
633
|
+
DOTA_COMBATLOG_ALLIED_GOLD = 29;
|
|
634
|
+
DOTA_COMBATLOG_AEGIS_TAKEN = 30;
|
|
635
|
+
DOTA_COMBATLOG_MANA_DAMAGE = 31;
|
|
636
|
+
DOTA_COMBATLOG_PHYSICAL_DAMAGE_PREVENTED = 32;
|
|
637
|
+
DOTA_COMBATLOG_UNIT_SUMMONED = 33;
|
|
638
|
+
DOTA_COMBATLOG_ATTACK_EVADE = 34;
|
|
639
|
+
DOTA_COMBATLOG_TREE_CUT = 35;
|
|
640
|
+
DOTA_COMBATLOG_SUCCESSFUL_SCAN = 36;
|
|
641
|
+
DOTA_COMBATLOG_END_KILLSTREAK = 37;
|
|
642
|
+
DOTA_COMBATLOG_BLOODSTONE_CHARGE = 38;
|
|
643
|
+
DOTA_COMBATLOG_CRITICAL_DAMAGE = 39;
|
|
644
|
+
DOTA_COMBATLOG_SPELL_ABSORB = 40;
|
|
645
|
+
DOTA_COMBATLOG_UNIT_TELEPORTED = 41;
|
|
646
|
+
DOTA_COMBATLOG_KILL_EATER_EVENT = 42;
|
|
647
|
+
DOTA_COMBATLOG_NEUTRAL_ITEM_EARNED = 43;
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
enum EDPCFavoriteType {
|
|
651
|
+
FAVORITE_TYPE_ALL = 0;
|
|
652
|
+
FAVORITE_TYPE_PLAYER = 1;
|
|
653
|
+
FAVORITE_TYPE_TEAM = 2;
|
|
654
|
+
FAVORITE_TYPE_LEAGUE = 3;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
enum EDPCPushNotification {
|
|
658
|
+
DPC_PUSH_NOTIFICATION_MATCH_STARTING = 1;
|
|
659
|
+
DPC_PUSH_NOTIFICATION_PLAYER_LEFT_TEAM = 10;
|
|
660
|
+
DPC_PUSH_NOTIFICATION_PLAYER_JOINED_TEAM = 11;
|
|
661
|
+
DPC_PUSH_NOTIFICATION_PLAYER_JOINED_TEAM_AS_COACH = 12;
|
|
662
|
+
DPC_PUSH_NOTIFICATION_PLAYER_LEFT_TEAM_AS_COACH = 13;
|
|
663
|
+
DPC_PUSH_NOTIFICATION_LEAGUE_RESULT = 20;
|
|
664
|
+
DPC_PUSH_NOTIFICATION_PREDICTION_MATCHES_AVAILABLE = 30;
|
|
665
|
+
DPC_PUSH_NOTIFICATION_PREDICTION_RESULT = 31;
|
|
666
|
+
DPC_PUSH_NOTIFICATION_FANTASY_PLAYER_CLEARED = 40;
|
|
667
|
+
DPC_PUSH_NOTIFICATION_FANTASY_DAILY_SUMMARY = 41;
|
|
668
|
+
DPC_PUSH_NOTIFICATION_FANTASY_FINAL_RESULTS = 42;
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
enum EEventActionScoreMode {
|
|
672
|
+
k_eEventActionScoreMode_Add = 0;
|
|
673
|
+
k_eEventActionScoreMode_Min = 1;
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
enum EPlayerChallengeHistoryType {
|
|
677
|
+
k_EPlayerChallengeHistoryType_Invalid = 0;
|
|
678
|
+
k_EPlayerChallengeHistoryType_KillEater = 1;
|
|
679
|
+
k_EPlayerChallengeHistoryType_DotaPlusRelic = 2;
|
|
680
|
+
k_EPlayerChallengeHistoryType_DotaPlusHeroPlayerChallenge = 3;
|
|
681
|
+
k_EPlayerChallengeHistoryType_InGameEventChallenge = 4;
|
|
682
|
+
k_EPlayerChallengeHistoryType_GuildContract = 5;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
enum EOverwatchReportReason {
|
|
686
|
+
k_EOverwatchReportReason_Unknown = 0;
|
|
687
|
+
k_EOverwatchReportReason_Cheating = 1;
|
|
688
|
+
k_EOverwatchReportReason_Feeding = 2;
|
|
689
|
+
k_EOverwatchReportReason_Griefing = 3;
|
|
690
|
+
k_EOverwatchReportReason_Suspicious = 4;
|
|
691
|
+
k_EOverwatchReportReason_AbilityAbuse = 5;
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
message CDOTAClientHardwareSpecs {
|
|
695
|
+
optional uint32 logical_processors = 1;
|
|
696
|
+
optional fixed64 cpu_cycles_per_second = 2;
|
|
697
|
+
optional fixed64 total_physical_memory = 3;
|
|
698
|
+
optional bool is_64_bit_os = 4;
|
|
699
|
+
optional uint64 upload_measurement = 5;
|
|
700
|
+
optional bool prefer_not_host = 6;
|
|
701
|
+
repeated uint32 crc = 7;
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
message CDOTASaveGame {
|
|
705
|
+
message Player {
|
|
706
|
+
optional .DOTA_GC_TEAM team = 1 [default = DOTA_GC_TEAM_GOOD_GUYS];
|
|
707
|
+
optional string name = 2;
|
|
708
|
+
optional string hero = 3;
|
|
709
|
+
}
|
|
710
|
+
|
|
711
|
+
message SaveInstance {
|
|
712
|
+
message PlayerPositions {
|
|
713
|
+
optional float x = 1;
|
|
714
|
+
optional float y = 2;
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
optional uint32 game_time = 2;
|
|
718
|
+
optional uint32 team1_score = 3;
|
|
719
|
+
optional uint32 team2_score = 4;
|
|
720
|
+
repeated .CDOTASaveGame.SaveInstance.PlayerPositions player_positions = 5;
|
|
721
|
+
optional uint32 save_id = 6;
|
|
722
|
+
optional uint32 save_time = 7;
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
optional uint64 match_id = 5;
|
|
726
|
+
optional uint32 save_time = 2;
|
|
727
|
+
repeated .CDOTASaveGame.Player players = 3;
|
|
728
|
+
repeated .CDOTASaveGame.SaveInstance save_instances = 4;
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
message CMsgDOTACombatLogEntry {
|
|
732
|
+
optional .DOTA_COMBATLOG_TYPES type = 1 [default = DOTA_COMBATLOG_INVALID];
|
|
733
|
+
optional uint32 target_name = 2;
|
|
734
|
+
optional uint32 target_source_name = 3;
|
|
735
|
+
optional uint32 attacker_name = 4;
|
|
736
|
+
optional uint32 damage_source_name = 5;
|
|
737
|
+
optional uint32 inflictor_name = 6;
|
|
738
|
+
optional bool is_attacker_illusion = 7;
|
|
739
|
+
optional bool is_attacker_hero = 8;
|
|
740
|
+
optional bool is_target_illusion = 9;
|
|
741
|
+
optional bool is_target_hero = 10;
|
|
742
|
+
optional bool is_visible_radiant = 11;
|
|
743
|
+
optional bool is_visible_dire = 12;
|
|
744
|
+
optional uint32 value = 13;
|
|
745
|
+
optional int32 health = 14;
|
|
746
|
+
optional float timestamp = 15;
|
|
747
|
+
optional float stun_duration = 16;
|
|
748
|
+
optional float slow_duration = 17;
|
|
749
|
+
optional bool is_ability_toggle_on = 18;
|
|
750
|
+
optional bool is_ability_toggle_off = 19;
|
|
751
|
+
optional uint32 ability_level = 20;
|
|
752
|
+
optional float location_x = 21;
|
|
753
|
+
optional float location_y = 22;
|
|
754
|
+
optional uint32 gold_reason = 23;
|
|
755
|
+
optional float timestamp_raw = 24;
|
|
756
|
+
optional float modifier_duration = 25;
|
|
757
|
+
optional uint32 xp_reason = 26;
|
|
758
|
+
optional uint32 last_hits = 27;
|
|
759
|
+
optional uint32 attacker_team = 28;
|
|
760
|
+
optional uint32 target_team = 29;
|
|
761
|
+
optional uint32 obs_wards_placed = 30;
|
|
762
|
+
optional uint32 assist_player0 = 31;
|
|
763
|
+
optional uint32 assist_player1 = 32;
|
|
764
|
+
optional uint32 assist_player2 = 33;
|
|
765
|
+
optional uint32 assist_player3 = 34;
|
|
766
|
+
optional uint32 stack_count = 35;
|
|
767
|
+
optional bool hidden_modifier = 36;
|
|
768
|
+
optional bool is_target_building = 37;
|
|
769
|
+
optional uint32 neutral_camp_type = 38;
|
|
770
|
+
optional uint32 rune_type = 39;
|
|
771
|
+
repeated int32 assist_players = 40;
|
|
772
|
+
optional bool is_heal_save = 41;
|
|
773
|
+
optional bool is_ultimate_ability = 42;
|
|
774
|
+
optional uint32 attacker_hero_level = 43;
|
|
775
|
+
optional uint32 target_hero_level = 44;
|
|
776
|
+
optional uint32 xpm = 45;
|
|
777
|
+
optional uint32 gpm = 46;
|
|
778
|
+
optional uint32 event_location = 47;
|
|
779
|
+
optional bool target_is_self = 48;
|
|
780
|
+
optional uint32 damage_type = 49;
|
|
781
|
+
optional bool invisibility_modifier = 50;
|
|
782
|
+
optional uint32 damage_category = 51;
|
|
783
|
+
optional uint32 networth = 52;
|
|
784
|
+
optional uint32 building_type = 53;
|
|
785
|
+
optional float modifier_elapsed_duration = 54;
|
|
786
|
+
optional bool silence_modifier = 55;
|
|
787
|
+
optional bool heal_from_lifesteal = 56;
|
|
788
|
+
optional bool modifier_purged = 57;
|
|
789
|
+
optional bool spell_evaded = 58;
|
|
790
|
+
optional bool motion_controller_modifier = 59;
|
|
791
|
+
optional bool long_range_kill = 60;
|
|
792
|
+
optional uint32 modifier_purge_ability = 61;
|
|
793
|
+
optional uint32 modifier_purge_npc = 62;
|
|
794
|
+
optional bool root_modifier = 63;
|
|
795
|
+
optional uint32 total_unit_death_count = 64;
|
|
796
|
+
optional bool aura_modifier = 65;
|
|
797
|
+
optional bool armor_debuff_modifier = 66;
|
|
798
|
+
optional bool no_physical_damage_modifier = 67;
|
|
799
|
+
optional uint32 modifier_ability = 68;
|
|
800
|
+
optional bool modifier_hidden = 69;
|
|
801
|
+
optional bool inflictor_is_stolen_ability = 70;
|
|
802
|
+
optional uint32 kill_eater_event = 71;
|
|
803
|
+
optional uint32 unit_status_label = 72;
|
|
804
|
+
optional bool spell_generated_attack = 73;
|
|
805
|
+
optional bool at_night_time = 74;
|
|
806
|
+
optional bool attacker_has_scepter = 75;
|
|
807
|
+
optional uint32 neutral_camp_team = 76;
|
|
808
|
+
optional float regenerated_health = 77;
|
|
809
|
+
optional bool will_reincarnate = 78;
|
|
810
|
+
optional bool uses_charges = 79;
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
message CMsgPendingEventAward {
|
|
814
|
+
optional .EEvent event_id = 1 [default = EVENT_ID_NONE];
|
|
815
|
+
optional uint32 action_id = 2;
|
|
816
|
+
optional uint32 num_to_grant = 3;
|
|
817
|
+
optional .EEventActionScoreMode score_mode = 4 [default = k_eEventActionScoreMode_Add];
|
|
818
|
+
optional uint32 audit_action = 5;
|
|
819
|
+
optional uint64 audit_data = 6;
|
|
820
|
+
}
|