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,395 @@
|
|
|
1
|
+
import "dcg_gcmessages_common.proto";
|
|
2
|
+
|
|
3
|
+
option optimize_for = SPEED;
|
|
4
|
+
option cc_generic_services = false;
|
|
5
|
+
|
|
6
|
+
enum EGCDCGServerMessages {
|
|
7
|
+
k_EMsgServerToGCMatchSignoutPermission = 10012;
|
|
8
|
+
k_EMsgServerToGCMatchSignoutPermissionResponse = 10013;
|
|
9
|
+
k_EMsgServerToGCMatchSignout = 10014;
|
|
10
|
+
k_EMsgServerToGCMatchSignoutResponse = 10015;
|
|
11
|
+
k_EMsgServerToGCIdlePing = 10018;
|
|
12
|
+
k_EMsgGCToServerRequestPing = 10019;
|
|
13
|
+
k_EMsgGCToServerAllocateForMatch = 10021;
|
|
14
|
+
k_EMsgGCToServerAllocateForMatchResponse = 10022;
|
|
15
|
+
k_EMsgServerToGCEnterMatchmaking = 10023;
|
|
16
|
+
k_EMsgGCToServerCancelAllocateForMatch = 10024;
|
|
17
|
+
k_EMsgServerToGCUpdateLobbyServerState = 10025;
|
|
18
|
+
k_EMsgServerToGCAbandonMatch = 10026;
|
|
19
|
+
k_EMsgServerToGCAbandonMatchResponse = 10027;
|
|
20
|
+
k_EMsgServerToGCTestConnection = 10028;
|
|
21
|
+
k_EMsgServerToGCTestConnectionResponse = 10029;
|
|
22
|
+
k_EMsgGCToServerRunTests = 10031;
|
|
23
|
+
k_EMsgGCToServerRunTestsResponse = 10032;
|
|
24
|
+
k_EMsgServerToGCTestResults = 10033;
|
|
25
|
+
k_EMsgGCToServerAddTourneySpectator = 10034;
|
|
26
|
+
k_EMsgGCToServerAddTourneySpectatorResponse = 10035;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
enum EGCServerLobbyData {
|
|
30
|
+
k_EServerLobbyData_DeckValidator = 1;
|
|
31
|
+
k_EServerLobbyData_DraftCards = 3;
|
|
32
|
+
k_EServerLobbyData_PlayerDeck = 4;
|
|
33
|
+
k_EServerLobbyData_PlayerMMR = 5;
|
|
34
|
+
k_EServerLobbyData_CardAchievements = 6;
|
|
35
|
+
k_EServerLobbyData_GauntletInfo = 7;
|
|
36
|
+
k_EServerLobbyData_PlayerInfo = 8;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
enum EGCServerSignoutData {
|
|
40
|
+
k_EServerSignoutData_PlayerProgress = 1;
|
|
41
|
+
k_EServerSignoutData_PlayerDecks = 2;
|
|
42
|
+
k_EServerSignoutData_LobbyInfo = 4;
|
|
43
|
+
k_EServerSignoutData_GameOptions = 9;
|
|
44
|
+
k_EServerSignoutData_CardAchievements = 11;
|
|
45
|
+
k_EServerSignoutData_PerformanceStats = 12;
|
|
46
|
+
k_EServerSignoutData_Disconnections = 13;
|
|
47
|
+
k_EServerSignoutData_MatchChatStats = 14;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
message CMsgServerCrashSentinelFile {
|
|
51
|
+
message DCGGameInfo {
|
|
52
|
+
optional uint64 match_id = 1;
|
|
53
|
+
optional fixed64 lobby_id = 2;
|
|
54
|
+
optional uint32 gauntlet_id = 3;
|
|
55
|
+
optional uint32 server_state = 4;
|
|
56
|
+
repeated uint32 client_account_ids = 5;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
optional uint32 version = 1;
|
|
60
|
+
optional fixed64 server_steam_id = 2;
|
|
61
|
+
optional fixed32 server_public_ip_addr = 3;
|
|
62
|
+
optional uint32 server_port = 4;
|
|
63
|
+
optional uint32 server_cluster = 5;
|
|
64
|
+
optional uint32 pid = 6;
|
|
65
|
+
optional uint32 saved_time = 7;
|
|
66
|
+
optional uint32 server_version = 8;
|
|
67
|
+
optional .CMsgServerCrashSentinelFile.DCGGameInfo dcg_info = 9;
|
|
68
|
+
optional uint32 server_private_ip_addr = 10;
|
|
69
|
+
optional uint32 instance_id = 11;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
message CServerLobbyData_CardAchievements {
|
|
73
|
+
optional uint32 account_id = 1;
|
|
74
|
+
repeated uint32 achievement_ids = 2 [packed = true];
|
|
75
|
+
repeated uint32 progress = 3 [packed = true];
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
message CServerDraftCard {
|
|
79
|
+
optional uint32 def_index = 1;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
message CServerLobbyData_DraftCards {
|
|
83
|
+
message Pack {
|
|
84
|
+
optional uint64 pack_item_id = 1;
|
|
85
|
+
repeated .CServerDraftCard pack_cards = 2;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
message Player {
|
|
89
|
+
optional uint32 account_id = 1;
|
|
90
|
+
repeated .CServerLobbyData_DraftCards.Pack packs = 2;
|
|
91
|
+
optional bool cannot_trade = 3;
|
|
92
|
+
optional uint32 trade_restriction_time = 4;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
repeated .CServerLobbyData_DraftCards.Player players = 1;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
message CServerLobbyData_PlayerDeck {
|
|
99
|
+
optional bytes deck_code = 1;
|
|
100
|
+
optional bytes collection_code = 2;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
message CServerLobbyData_PlayerMMR {
|
|
104
|
+
message Player {
|
|
105
|
+
optional uint32 account_id = 1;
|
|
106
|
+
optional uint32 mmr = 2;
|
|
107
|
+
optional uint32 uncertainty = 3;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
repeated .CServerLobbyData_PlayerMMR.Player players = 1;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
message CServerLobbyData_GauntletInfo {
|
|
114
|
+
optional .CMsgGauntletConfig gauntlet_config = 1;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
message CServerLobbyData_DeckValidator {
|
|
118
|
+
optional .CMsgDeckValidator deck_validator = 1;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
message CServerLobbyData_PlayerInfo {
|
|
122
|
+
optional uint32 account_id = 1;
|
|
123
|
+
optional uint32 progress_level = 2;
|
|
124
|
+
optional uint32 progress_xp = 3;
|
|
125
|
+
optional uint32 mmr_level = 4;
|
|
126
|
+
optional uint32 last_win_bonus_time = 5;
|
|
127
|
+
optional uint32 win_streak = 6;
|
|
128
|
+
optional uint32 bonus_period_wins = 7;
|
|
129
|
+
optional uint32 player_badge = 8;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
message CSODCGServerLobby {
|
|
133
|
+
repeated .CExtraMsgBlock extra_messages = 1;
|
|
134
|
+
optional fixed64 server_steam_id = 2;
|
|
135
|
+
optional uint64 lobby_id = 3;
|
|
136
|
+
optional fixed32 replay_salt = 4;
|
|
137
|
+
optional fixed64 private_lobby_id = 5;
|
|
138
|
+
optional .EDCGLobbyTimer timer_mode = 6 [default = k_eDCGLobbyTimer_Unspecified];
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
message CMsgServerSignoutData_MatchChatStats {
|
|
142
|
+
message ChatStats {
|
|
143
|
+
optional uint32 account_id = 1;
|
|
144
|
+
optional uint32 total_messages = 2;
|
|
145
|
+
optional uint32 total_custom_messages = 3;
|
|
146
|
+
optional bool user_sent_custom_message_before_mute = 4;
|
|
147
|
+
optional uint32 total_messages_sent_while_muted = 5;
|
|
148
|
+
optional uint32 num_times_squelched = 6;
|
|
149
|
+
optional bool user_muted_opponent_before_receiving_message = 7;
|
|
150
|
+
optional bool user_was_muted_then_was_unmuted = 8;
|
|
151
|
+
optional bool user_was_muted_at_match_end = 9;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
repeated .CMsgServerSignoutData_MatchChatStats.ChatStats chat_stats = 1;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
message CMsgServerSignoutData_LobbyInfo {
|
|
158
|
+
optional uint64 match_id = 1;
|
|
159
|
+
optional uint32 start_time = 2;
|
|
160
|
+
optional uint32 gauntlet_id = 3;
|
|
161
|
+
optional uint32 server_version = 4;
|
|
162
|
+
optional uint32 replay_salt = 5;
|
|
163
|
+
optional .EDCGMatchMode match_mode = 6 [default = k_EDCGMatchMode_Unranked];
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
message CMsgServerSignoutData_PlayerDecks {
|
|
167
|
+
message Player {
|
|
168
|
+
message Hero {
|
|
169
|
+
optional uint32 card_id = 1;
|
|
170
|
+
optional uint32 hero_slot = 2;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
message Card {
|
|
174
|
+
optional uint32 card_id = 1;
|
|
175
|
+
optional uint32 num_in_deck = 2;
|
|
176
|
+
optional uint32 num_in_hand = 3;
|
|
177
|
+
optional uint32 num_played = 4;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
optional uint32 player_id = 1;
|
|
181
|
+
repeated .CMsgServerSignoutData_PlayerDecks.Player.Card cards = 2;
|
|
182
|
+
repeated .CMsgServerSignoutData_PlayerDecks.Player.Hero heroes = 3;
|
|
183
|
+
optional uint32 critical_life = 6;
|
|
184
|
+
optional uint32 total_gold = 7;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
repeated .CMsgServerSignoutData_PlayerDecks.Player players = 1;
|
|
188
|
+
optional uint32 stats_version = 2;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
message CMsgServerSignoutData_PlayerProgress {
|
|
192
|
+
message PointBonus {
|
|
193
|
+
optional uint32 bonus_id = 1;
|
|
194
|
+
optional uint32 bonus_points = 2;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
optional uint32 account_id = 1;
|
|
198
|
+
optional uint32 xp_to_grant = 2;
|
|
199
|
+
repeated .CMsgServerSignoutData_PlayerProgress.PointBonus bonuses = 3;
|
|
200
|
+
optional uint32 weekly_bonus_reset_time = 5;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
message CMsgServerToGCMatchSignoutPermission {
|
|
204
|
+
optional uint32 signout_start = 1;
|
|
205
|
+
optional uint64 match_id = 3;
|
|
206
|
+
optional .EDCGMatchMode match_mode = 4 [default = k_EDCGMatchMode_Unranked];
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
message CMsgServerToGCMatchSignoutPermissionResponse {
|
|
210
|
+
optional bool can_sign_out = 1;
|
|
211
|
+
optional uint32 retry_time_s = 2;
|
|
212
|
+
repeated .EGCServerSignoutData requested_data = 3;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
message CMsgServerSignoutData_CardAchievements {
|
|
216
|
+
enum EAchievementGrantType {
|
|
217
|
+
k_EAchievementGrant_Add = 0;
|
|
218
|
+
k_EAchievementGrant_Max = 1;
|
|
219
|
+
k_EAchievementGrant_Set = 2;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
optional uint32 account_id = 1;
|
|
223
|
+
repeated uint32 achievement_ids = 2 [packed = true];
|
|
224
|
+
repeated uint32 grant_amounts = 3 [packed = true];
|
|
225
|
+
repeated .CMsgServerSignoutData_CardAchievements.EAchievementGrantType grant_types = 4 [packed = true];
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
message CMsgServerSignoutData_PerformanceStats {
|
|
229
|
+
optional uint32 start_memory_bytes = 1;
|
|
230
|
+
optional uint32 peak_memory_bytes = 2;
|
|
231
|
+
optional uint32 end_memory_bytes = 3;
|
|
232
|
+
optional uint32 total_update_time_ms = 4;
|
|
233
|
+
optional uint32 total_match_time_ms = 5;
|
|
234
|
+
optional uint32 sent_messages = 6;
|
|
235
|
+
optional uint32 received_messages = 7;
|
|
236
|
+
optional uint32 sent_bytes = 8;
|
|
237
|
+
optional uint32 received_bytes = 9;
|
|
238
|
+
optional uint32 max_update_time_micros = 10;
|
|
239
|
+
optional uint32 num_updates = 11;
|
|
240
|
+
optional uint32 replay_size_bytes = 12;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
message CMsgServerSignoutData_GameOptions {
|
|
244
|
+
message GameOption {
|
|
245
|
+
optional string key = 1;
|
|
246
|
+
optional string value = 2;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
repeated .CMsgServerSignoutData_GameOptions.GameOption game_options = 1;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
message CMsgMatchDisconnection {
|
|
253
|
+
optional uint32 account_id = 1;
|
|
254
|
+
optional uint32 disconnect_time = 2;
|
|
255
|
+
optional uint32 connection_state = 3;
|
|
256
|
+
optional uint32 reason_code = 4;
|
|
257
|
+
optional uint32 reconnect_delay = 5;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
message CMsgServerSignoutData_Disconnections {
|
|
261
|
+
repeated .CMsgMatchDisconnection disconnections = 1;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
message CMsgServerToGCMatchSignout {
|
|
265
|
+
repeated .CExtraMsgBlock additional_data = 1;
|
|
266
|
+
optional uint32 signout_attempt = 2;
|
|
267
|
+
optional uint64 lobby_id = 3;
|
|
268
|
+
optional uint32 cluster_id = 9;
|
|
269
|
+
optional .CMsgMatchData match_data = 10;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
message CMsgServerToGCMatchSignoutResponse {
|
|
273
|
+
enum ESignoutResult {
|
|
274
|
+
k_ESignout_Failed_Retry = 1;
|
|
275
|
+
k_ESignout_Failed_NoRetry = 2;
|
|
276
|
+
k_ESignout_Failed_InFlight = 3;
|
|
277
|
+
k_ESignout_Success = 4;
|
|
278
|
+
k_ESignout_Success_AlreadySignedOut = 5;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
optional .CMsgServerToGCMatchSignoutResponse.ESignoutResult result = 1 [default = k_ESignout_Failed_Retry];
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
message CMsgServerWelcomeDCG {
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
message CMsgServerToGCIdlePing {
|
|
288
|
+
optional uint32 server_version = 1;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
message CMsgGCToServerRequestPing {
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
message CMsgGCToServerAllocateForMatch {
|
|
295
|
+
optional uint64 match_id = 1;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
message CMsgGCToServerAllocateForMatchResponse {
|
|
299
|
+
optional bool success = 1;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
message CMsgServerToGCEnterMatchmaking {
|
|
303
|
+
optional uint32 server_version = 1;
|
|
304
|
+
optional string search_key = 2;
|
|
305
|
+
optional uint32 region_id = 3;
|
|
306
|
+
optional uint32 cluster_id = 4;
|
|
307
|
+
optional uint32 server_public_ip = 5;
|
|
308
|
+
optional uint32 server_private_ip = 6;
|
|
309
|
+
optional uint32 server_port = 7;
|
|
310
|
+
optional bytes sdr_address = 9;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
message CMsgGCToServerCancelAllocateForMatch {
|
|
314
|
+
optional uint64 match_id = 1;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
message CMsgServerToGCUpdateLobbyServerState {
|
|
318
|
+
optional uint64 lobby_id = 1;
|
|
319
|
+
optional .ELobbyServerState server_state = 2 [default = k_eLobbyServerState_Assign];
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
message CMsgServerToGCAbandonMatch {
|
|
323
|
+
message Player {
|
|
324
|
+
optional uint32 account_id = 1;
|
|
325
|
+
optional uint64 additional_data = 2;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
enum EReason {
|
|
329
|
+
eReason_ServerCrash = 1;
|
|
330
|
+
eReason_ClientsFailedToConnect = 2;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
optional fixed64 server_steam_id = 1;
|
|
334
|
+
optional fixed64 lobby_id = 2;
|
|
335
|
+
optional uint32 cluster_id = 3;
|
|
336
|
+
optional .CMsgServerToGCAbandonMatch.EReason reason_code = 4 [default = eReason_ServerCrash];
|
|
337
|
+
optional uint64 additional_data = 5;
|
|
338
|
+
optional uint64 match_id = 6;
|
|
339
|
+
optional uint32 gauntlet_id = 7;
|
|
340
|
+
repeated .CMsgServerToGCAbandonMatch.Player players = 8;
|
|
341
|
+
optional fixed32 public_ip_address = 9;
|
|
342
|
+
optional uint32 port = 10;
|
|
343
|
+
optional uint32 server_version = 11;
|
|
344
|
+
optional uint32 pid = 12;
|
|
345
|
+
optional uint32 instance_id = 13;
|
|
346
|
+
optional uint32 private_ip_address = 14;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
message CMsgServerToGCAbandonMatchResponse {
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
message CMsgServerToGCTestConnection {
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
message CMsgServerToGCTestConnectionResponse {
|
|
356
|
+
optional uint32 state = 1;
|
|
357
|
+
optional uint64 lobby_id = 2;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
message CMsgGCToServerAddTourneySpectator {
|
|
361
|
+
optional uint64 lobby_id = 1;
|
|
362
|
+
optional uint32 account_id = 2;
|
|
363
|
+
optional uint32 account_to_spectate_id = 3;
|
|
364
|
+
optional uint64 tourney_id = 4;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
message CMsgGCToServerAddTourneySpectatorResponse {
|
|
368
|
+
optional bool success = 1;
|
|
369
|
+
optional uint64 tourney_id = 2;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
message CMsgGCToServerRunTests {
|
|
373
|
+
optional uint32 expected_version = 1;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
message CMsgGCToServerRunTestsResponse {
|
|
377
|
+
optional bool running_tests = 1;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
message CMsgServerToGCTestResults {
|
|
381
|
+
message TestResult {
|
|
382
|
+
optional string test_name = 1;
|
|
383
|
+
optional string test_group = 2;
|
|
384
|
+
optional .CMsgServerToGCTestResults.ETestResult test_result = 3 [default = eResult_Failure];
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
enum ETestResult {
|
|
388
|
+
eResult_Failure = 0;
|
|
389
|
+
eResult_Success = 1;
|
|
390
|
+
eResult_Disabled = 2;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
repeated .CMsgServerToGCTestResults.TestResult results = 1;
|
|
394
|
+
optional uint32 server_version = 2;
|
|
395
|
+
}
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
option cc_generic_services = false;
|
|
2
|
+
|
|
3
|
+
enum EDemoCommands {
|
|
4
|
+
DEM_Error = -1;
|
|
5
|
+
DEM_Stop = 0;
|
|
6
|
+
DEM_FileHeader = 1;
|
|
7
|
+
DEM_FileInfo = 2;
|
|
8
|
+
DEM_SyncTick = 3;
|
|
9
|
+
DEM_SendTables = 4;
|
|
10
|
+
DEM_ClassInfo = 5;
|
|
11
|
+
DEM_StringTables = 6;
|
|
12
|
+
DEM_Packet = 7;
|
|
13
|
+
DEM_SignonPacket = 8;
|
|
14
|
+
DEM_ConsoleCmd = 9;
|
|
15
|
+
DEM_CustomData = 10;
|
|
16
|
+
DEM_CustomDataCallbacks = 11;
|
|
17
|
+
DEM_UserCmd = 12;
|
|
18
|
+
DEM_FullPacket = 13;
|
|
19
|
+
DEM_SaveGame = 14;
|
|
20
|
+
DEM_SpawnGroups = 15;
|
|
21
|
+
DEM_Max = 16;
|
|
22
|
+
DEM_IsCompressed = 64;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
message CDemoFileHeader {
|
|
26
|
+
required string demo_file_stamp = 1;
|
|
27
|
+
optional int32 network_protocol = 2;
|
|
28
|
+
optional string server_name = 3;
|
|
29
|
+
optional string client_name = 4;
|
|
30
|
+
optional string map_name = 5;
|
|
31
|
+
optional string game_directory = 6;
|
|
32
|
+
optional int32 fullpackets_version = 7;
|
|
33
|
+
optional bool allow_clientside_entities = 8;
|
|
34
|
+
optional bool allow_clientside_particles = 9;
|
|
35
|
+
optional string addons = 10;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
message CGameInfo {
|
|
39
|
+
message CDotaGameInfo {
|
|
40
|
+
message CPlayerInfo {
|
|
41
|
+
optional string hero_name = 1;
|
|
42
|
+
optional string player_name = 2;
|
|
43
|
+
optional bool is_fake_client = 3;
|
|
44
|
+
optional uint64 steamid = 4;
|
|
45
|
+
optional int32 game_team = 5;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
message CHeroSelectEvent {
|
|
49
|
+
optional bool is_pick = 1;
|
|
50
|
+
optional uint32 team = 2;
|
|
51
|
+
optional uint32 hero_id = 3;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
optional uint64 match_id = 1;
|
|
55
|
+
optional int32 game_mode = 2;
|
|
56
|
+
optional int32 game_winner = 3;
|
|
57
|
+
repeated .CGameInfo.CDotaGameInfo.CPlayerInfo player_info = 4;
|
|
58
|
+
optional uint32 leagueid = 5;
|
|
59
|
+
repeated .CGameInfo.CDotaGameInfo.CHeroSelectEvent picks_bans = 6;
|
|
60
|
+
optional uint32 radiant_team_id = 7;
|
|
61
|
+
optional uint32 dire_team_id = 8;
|
|
62
|
+
optional string radiant_team_tag = 9;
|
|
63
|
+
optional string dire_team_tag = 10;
|
|
64
|
+
optional uint32 end_time = 11;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
optional .CGameInfo.CDotaGameInfo dota = 4;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
message CDemoFileInfo {
|
|
71
|
+
optional float playback_time = 1;
|
|
72
|
+
optional int32 playback_ticks = 2;
|
|
73
|
+
optional int32 playback_frames = 3;
|
|
74
|
+
optional .CGameInfo game_info = 4;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
message CDemoPacket {
|
|
78
|
+
optional bytes data = 3;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
message CDemoFullPacket {
|
|
82
|
+
optional .CDemoStringTables string_table = 1;
|
|
83
|
+
optional .CDemoPacket packet = 2;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
message CDemoSaveGame {
|
|
87
|
+
optional bytes data = 1;
|
|
88
|
+
optional fixed64 steam_id = 2;
|
|
89
|
+
optional fixed64 signature = 3;
|
|
90
|
+
optional int32 version = 4;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
message CDemoSyncTick {
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
message CDemoConsoleCmd {
|
|
97
|
+
optional string cmdstring = 1;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
message CDemoSendTables {
|
|
101
|
+
optional bytes data = 1;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
message CDemoClassInfo {
|
|
105
|
+
message class_t {
|
|
106
|
+
optional int32 class_id = 1;
|
|
107
|
+
optional string network_name = 2;
|
|
108
|
+
optional string table_name = 3;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
repeated .CDemoClassInfo.class_t classes = 1;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
message CDemoCustomData {
|
|
115
|
+
optional int32 callback_index = 1;
|
|
116
|
+
optional bytes data = 2;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
message CDemoCustomDataCallbacks {
|
|
120
|
+
repeated string save_id = 1;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
message CDemoStringTables {
|
|
124
|
+
message items_t {
|
|
125
|
+
optional string str = 1;
|
|
126
|
+
optional bytes data = 2;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
message table_t {
|
|
130
|
+
optional string table_name = 1;
|
|
131
|
+
repeated .CDemoStringTables.items_t items = 2;
|
|
132
|
+
repeated .CDemoStringTables.items_t items_clientside = 3;
|
|
133
|
+
optional int32 table_flags = 4;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
repeated .CDemoStringTables.table_t tables = 1;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
message CDemoStop {
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
message CDemoUserCmd {
|
|
143
|
+
optional int32 cmd_number = 1;
|
|
144
|
+
optional bytes data = 2;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
message CDemoSpawnGroups {
|
|
148
|
+
repeated bytes msgs = 3;
|
|
149
|
+
}
|