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,17 @@
|
|
|
1
|
+
import "google/protobuf/descriptor.proto";
|
|
2
|
+
|
|
3
|
+
extend .google.protobuf.FieldOptions {
|
|
4
|
+
optional bool valve_map_field = 61000 [default = false];
|
|
5
|
+
optional bool valve_map_key = 61001 [default = false];
|
|
6
|
+
optional int32 diff_encode_field = 61002 [default = 0];
|
|
7
|
+
optional bool delta_ignore = 61003 [default = false];
|
|
8
|
+
optional uint32 steamml_max_entries = 61004 [default = 0];
|
|
9
|
+
optional bool steamml_is_timestamp = 61005 [default = false];
|
|
10
|
+
optional uint32 steamlearn_count = 61006 [default = 0];
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
extend .google.protobuf.EnumValueOptions {
|
|
14
|
+
optional string schema_friendly_name = 1000;
|
|
15
|
+
optional string schema_description = 1001;
|
|
16
|
+
optional bool schema_suppress_enumerator = 1002;
|
|
17
|
+
}
|
|
@@ -0,0 +1,400 @@
|
|
|
1
|
+
import "steammessages.proto";
|
|
2
|
+
import "gcsdk_gcmessages.proto";
|
|
3
|
+
|
|
4
|
+
enum EGCBaseMsg {
|
|
5
|
+
k_EMsgGCInviteToParty = 4501;
|
|
6
|
+
k_EMsgGCInvitationCreated = 4502;
|
|
7
|
+
k_EMsgGCPartyInviteResponse = 4503;
|
|
8
|
+
k_EMsgGCKickFromParty = 4504;
|
|
9
|
+
k_EMsgGCLeaveParty = 4505;
|
|
10
|
+
k_EMsgGCServerAvailable = 4506;
|
|
11
|
+
k_EMsgGCClientConnectToServer = 4507;
|
|
12
|
+
k_EMsgGCGameServerInfo = 4508;
|
|
13
|
+
k_EMsgGCLANServerAvailable = 4511;
|
|
14
|
+
k_EMsgGCInviteToLobby = 4512;
|
|
15
|
+
k_EMsgGCLobbyInviteResponse = 4513;
|
|
16
|
+
k_EMsgGCToClientPollFileRequest = 4514;
|
|
17
|
+
k_EMsgGCToClientPollFileResponse = 4515;
|
|
18
|
+
k_EMsgGCToGCPerformManualOp = 4516;
|
|
19
|
+
k_EMsgGCToGCPerformManualOpCompleted = 4517;
|
|
20
|
+
k_EMsgGCToGCReloadServerRegionSettings = 4518;
|
|
21
|
+
k_EMsgGCAdditionalWelcomeMsgList = 4519;
|
|
22
|
+
k_EMsgGCToClientApplyRemoteConVars = 4520;
|
|
23
|
+
k_EMsgGCToServerApplyRemoteConVars = 4521;
|
|
24
|
+
k_EMsgClientToGCIntegrityStatus = 4522;
|
|
25
|
+
k_EMsgClientToGCAggregateMetrics = 4523;
|
|
26
|
+
k_EMsgGCToClientAggregateMetricsBackoff = 4524;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
enum ECustomGameInstallStatus {
|
|
30
|
+
k_ECustomGameInstallStatus_Unknown = 0;
|
|
31
|
+
k_ECustomGameInstallStatus_Ready = 1;
|
|
32
|
+
k_ECustomGameInstallStatus_Busy = 2;
|
|
33
|
+
k_ECustomGameInstallStatus_FailedGeneric = 101;
|
|
34
|
+
k_ECustomGameInstallStatus_FailedInternalError = 102;
|
|
35
|
+
k_ECustomGameInstallStatus_RequestedTimestampTooOld = 103;
|
|
36
|
+
k_ECustomGameInstallStatus_RequestedTimestampTooNew = 104;
|
|
37
|
+
k_ECustomGameInstallStatus_CRCMismatch = 105;
|
|
38
|
+
k_ECustomGameInstallStatus_FailedSteam = 106;
|
|
39
|
+
k_ECustomGameInstallStatus_FailedCanceled = 107;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
message CGCStorePurchaseInit_LineItem {
|
|
43
|
+
optional uint32 item_def_id = 1;
|
|
44
|
+
optional uint32 quantity = 2;
|
|
45
|
+
optional uint32 cost_in_local_currency = 3;
|
|
46
|
+
optional uint32 purchase_type = 4;
|
|
47
|
+
optional uint64 source_reference_id = 5;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
message CMsgGCStorePurchaseInit {
|
|
51
|
+
optional string country = 1;
|
|
52
|
+
optional int32 language = 2;
|
|
53
|
+
optional int32 currency = 3;
|
|
54
|
+
repeated .CGCStorePurchaseInit_LineItem line_items = 4;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
message CMsgGCStorePurchaseInitResponse {
|
|
58
|
+
optional int32 result = 1;
|
|
59
|
+
optional uint64 txn_id = 2;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
message CMsgClientPingData {
|
|
63
|
+
repeated fixed32 relay_codes = 4 [packed = true];
|
|
64
|
+
repeated uint32 relay_pings = 5 [packed = true];
|
|
65
|
+
repeated uint32 region_codes = 8 [packed = true];
|
|
66
|
+
repeated uint32 region_pings = 9 [packed = true];
|
|
67
|
+
optional uint32 region_ping_failed_bitmask = 10;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
message CMsgInviteToParty {
|
|
71
|
+
optional fixed64 steam_id = 1;
|
|
72
|
+
optional uint32 client_version = 2;
|
|
73
|
+
optional uint32 team_id = 3;
|
|
74
|
+
optional bool as_coach = 4;
|
|
75
|
+
optional .CMsgClientPingData ping_data = 5;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
message CMsgInviteToLobby {
|
|
79
|
+
optional fixed64 steam_id = 1;
|
|
80
|
+
optional uint32 client_version = 2;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
message CMsgInvitationCreated {
|
|
84
|
+
optional uint64 group_id = 1;
|
|
85
|
+
optional fixed64 steam_id = 2;
|
|
86
|
+
optional bool user_offline = 3;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
message CMsgPartyInviteResponse {
|
|
90
|
+
optional uint64 party_id = 1;
|
|
91
|
+
optional bool accept = 2;
|
|
92
|
+
optional uint32 client_version = 3;
|
|
93
|
+
optional .CMsgClientPingData ping_data = 8;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
message CMsgLobbyInviteResponse {
|
|
97
|
+
optional fixed64 lobby_id = 1;
|
|
98
|
+
optional bool accept = 2;
|
|
99
|
+
optional uint32 client_version = 3;
|
|
100
|
+
optional fixed64 custom_game_crc = 6;
|
|
101
|
+
optional fixed32 custom_game_timestamp = 7;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
message CMsgKickFromParty {
|
|
105
|
+
optional fixed64 steam_id = 1;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
message CMsgLeaveParty {
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
message CMsgCustomGameInstallStatus {
|
|
112
|
+
optional .ECustomGameInstallStatus status = 1 [default = k_ECustomGameInstallStatus_Unknown];
|
|
113
|
+
optional string message = 2;
|
|
114
|
+
optional fixed32 latest_timestamp_from_steam = 3;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
message CMsgServerAvailable {
|
|
118
|
+
optional .CMsgCustomGameInstallStatus custom_game_install_status = 1;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
message CMsgLANServerAvailable {
|
|
122
|
+
optional fixed64 lobby_id = 1;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
message CSOEconGameAccountClient {
|
|
126
|
+
optional uint32 additional_backpack_slots = 1 [default = 0];
|
|
127
|
+
optional bool trial_account = 2 [default = false];
|
|
128
|
+
optional bool eligible_for_online_play = 3 [default = true];
|
|
129
|
+
optional bool need_to_choose_most_helpful_friend = 4;
|
|
130
|
+
optional bool in_coaches_list = 5;
|
|
131
|
+
optional fixed32 trade_ban_expiration = 6;
|
|
132
|
+
optional fixed32 duel_ban_expiration = 7;
|
|
133
|
+
optional bool made_first_purchase = 9 [default = false];
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
message CMsgApplyStrangePart {
|
|
137
|
+
optional uint64 strange_part_item_id = 1;
|
|
138
|
+
optional uint64 item_item_id = 2;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
message CMsgApplyPennantUpgrade {
|
|
142
|
+
optional uint64 upgrade_item_id = 1;
|
|
143
|
+
optional uint64 pennant_item_id = 2;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
message CMsgApplyEggEssence {
|
|
147
|
+
optional uint64 essence_item_id = 1;
|
|
148
|
+
optional uint64 egg_item_id = 2;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
message CSOEconItemAttribute {
|
|
152
|
+
optional uint32 def_index = 1 [default = 65535];
|
|
153
|
+
optional uint32 value = 2;
|
|
154
|
+
optional bytes value_bytes = 3;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
message CSOEconItemEquipped {
|
|
158
|
+
optional uint32 new_class = 1;
|
|
159
|
+
optional uint32 new_slot = 2;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
message CSOEconItem {
|
|
163
|
+
optional uint64 id = 1;
|
|
164
|
+
optional uint32 account_id = 2;
|
|
165
|
+
optional uint32 inventory = 3;
|
|
166
|
+
optional uint32 def_index = 4;
|
|
167
|
+
optional uint32 quantity = 5 [default = 1];
|
|
168
|
+
optional uint32 level = 6 [default = 1];
|
|
169
|
+
optional uint32 quality = 7 [default = 4];
|
|
170
|
+
optional uint32 flags = 8 [default = 0];
|
|
171
|
+
optional uint32 origin = 9 [default = 0];
|
|
172
|
+
repeated .CSOEconItemAttribute attribute = 12;
|
|
173
|
+
optional .CSOEconItem interior_item = 13;
|
|
174
|
+
optional uint32 style = 15 [default = 0];
|
|
175
|
+
optional uint64 original_id = 16;
|
|
176
|
+
repeated .CSOEconItemEquipped equipped_state = 18;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
message CMsgSortItems {
|
|
180
|
+
optional uint32 sort_type = 1;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
message CMsgItemAcknowledged {
|
|
184
|
+
optional uint32 account_id = 1;
|
|
185
|
+
optional uint32 inventory = 2;
|
|
186
|
+
optional uint32 def_index = 3;
|
|
187
|
+
optional uint32 quality = 4;
|
|
188
|
+
optional uint32 rarity = 5;
|
|
189
|
+
optional uint32 origin = 6;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
message CMsgSetItemPositions {
|
|
193
|
+
message ItemPosition {
|
|
194
|
+
optional uint64 item_id = 1;
|
|
195
|
+
optional uint32 position = 2;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
repeated .CMsgSetItemPositions.ItemPosition item_positions = 1;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
message CMsgGCStorePurchaseCancel {
|
|
202
|
+
optional uint64 txn_id = 1;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
message CMsgGCStorePurchaseCancelResponse {
|
|
206
|
+
optional uint32 result = 1;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
message CMsgGCStorePurchaseFinalize {
|
|
210
|
+
optional uint64 txn_id = 1;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
message CMsgGCStorePurchaseFinalizeResponse {
|
|
214
|
+
optional uint32 result = 1;
|
|
215
|
+
repeated uint64 item_ids = 2;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
message CMsgGCToGCBannedWordListUpdated {
|
|
219
|
+
optional uint32 group_id = 1;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
message CMsgGCToGCDirtySDOCache {
|
|
223
|
+
optional uint32 sdo_type = 1;
|
|
224
|
+
optional uint64 key_uint64 = 2;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
message CMsgSDONoMemcached {
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
message CMsgGCToGCUpdateSQLKeyValue {
|
|
231
|
+
optional string key_name = 1;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
message CMsgGCServerVersionUpdated {
|
|
235
|
+
optional uint32 server_version = 1;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
message CMsgGCClientVersionUpdated {
|
|
239
|
+
optional uint32 client_version = 1;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
message CMsgGCToGCWebAPIAccountChanged {
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
message CMsgExtractGems {
|
|
246
|
+
optional uint64 tool_item_id = 1;
|
|
247
|
+
optional uint64 item_item_id = 2;
|
|
248
|
+
optional uint32 item_socket_id = 3 [default = 65535];
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
message CMsgExtractGemsResponse {
|
|
252
|
+
enum EExtractGems {
|
|
253
|
+
k_ExtractGems_Succeeded = 0;
|
|
254
|
+
k_ExtractGems_Failed_ToolIsInvalid = 1;
|
|
255
|
+
k_ExtractGems_Failed_ItemIsInvalid = 2;
|
|
256
|
+
k_ExtractGems_Failed_ToolCannotRemoveGem = 3;
|
|
257
|
+
k_ExtractGems_Failed_FailedToRemoveGem = 4;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
optional uint64 item_id = 1;
|
|
261
|
+
optional .CMsgExtractGemsResponse.EExtractGems response = 2 [default = k_ExtractGems_Succeeded];
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
message CMsgAddSocket {
|
|
265
|
+
optional uint64 tool_item_id = 1;
|
|
266
|
+
optional uint64 item_item_id = 2;
|
|
267
|
+
optional bool unusual = 3;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
message CMsgAddSocketResponse {
|
|
271
|
+
enum EAddSocket {
|
|
272
|
+
k_AddSocket_Succeeded = 0;
|
|
273
|
+
k_AddSocket_Failed_ToolIsInvalid = 1;
|
|
274
|
+
k_AddSocket_Failed_ItemCannotBeSocketed = 2;
|
|
275
|
+
k_AddSocket_Failed_FailedToAddSocket = 3;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
optional uint64 item_id = 1;
|
|
279
|
+
repeated uint32 updated_socket_index = 2;
|
|
280
|
+
optional .CMsgAddSocketResponse.EAddSocket response = 3 [default = k_AddSocket_Succeeded];
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
message CMsgAddItemToSocketData {
|
|
284
|
+
optional uint64 gem_item_id = 1;
|
|
285
|
+
optional uint32 socket_index = 2 [default = 65535];
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
message CMsgAddItemToSocket {
|
|
289
|
+
optional uint64 item_item_id = 1;
|
|
290
|
+
repeated .CMsgAddItemToSocketData gems_to_socket = 2;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
message CMsgAddItemToSocketResponse {
|
|
294
|
+
enum EAddGem {
|
|
295
|
+
k_AddGem_Succeeded = 0;
|
|
296
|
+
k_AddGem_Failed_GemIsInvalid = 1;
|
|
297
|
+
k_AddGem_Failed_ItemIsInvalid = 2;
|
|
298
|
+
k_AddGem_Failed_FailedToAddGem = 3;
|
|
299
|
+
k_AddGem_Failed_InvalidGemTypeForSocket = 4;
|
|
300
|
+
k_AddGem_Failed_InvalidGemTypeForHero = 5;
|
|
301
|
+
k_AddGem_Failed_InvalidGemTypeForSlot = 6;
|
|
302
|
+
k_AddGem_Failed_SocketContainsUnremovableGem = 7;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
optional uint64 item_item_id = 1;
|
|
306
|
+
repeated uint32 updated_socket_index = 2;
|
|
307
|
+
optional .CMsgAddItemToSocketResponse.EAddGem response = 3 [default = k_AddGem_Succeeded];
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
message CMsgResetStrangeGemCount {
|
|
311
|
+
optional uint64 item_item_id = 1;
|
|
312
|
+
optional uint32 socket_index = 2 [default = 65535];
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
message CMsgResetStrangeGemCountResponse {
|
|
316
|
+
enum EResetGem {
|
|
317
|
+
k_ResetGem_Succeeded = 0;
|
|
318
|
+
k_ResetGem_Failed_FailedToResetGem = 1;
|
|
319
|
+
k_ResetGem_Failed_ItemIsInvalid = 2;
|
|
320
|
+
k_ResetGem_Failed_InvalidSocketId = 3;
|
|
321
|
+
k_ResetGem_Failed_SocketCannotBeReset = 4;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
optional .CMsgResetStrangeGemCountResponse.EResetGem response = 1 [default = k_ResetGem_Succeeded];
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
message CMsgGCToClientPollFileRequest {
|
|
328
|
+
optional string file_name = 1;
|
|
329
|
+
optional uint32 client_version = 2;
|
|
330
|
+
optional uint32 poll_id = 3;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
message CMsgGCToClientPollFileResponse {
|
|
334
|
+
optional uint32 poll_id = 1;
|
|
335
|
+
optional uint32 file_size = 2;
|
|
336
|
+
optional uint32 file_crc = 3;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
message CMsgGCToGCPerformManualOp {
|
|
340
|
+
optional uint64 op_id = 1;
|
|
341
|
+
optional uint32 group_code = 2;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
message CMsgGCToGCPerformManualOpCompleted {
|
|
345
|
+
optional bool success = 1;
|
|
346
|
+
optional int32 source_gc = 2 [default = -1];
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
message CMsgGCToGCReloadServerRegionSettings {
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
message CMsgGCAdditionalWelcomeMsgList {
|
|
353
|
+
repeated .CExtraMsgBlock welcome_messages = 1;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
message CMsgApplyRemoteConVars {
|
|
357
|
+
message ConVar {
|
|
358
|
+
optional string name = 1;
|
|
359
|
+
optional string value = 2;
|
|
360
|
+
optional uint32 version_min = 3;
|
|
361
|
+
optional uint32 version_max = 4;
|
|
362
|
+
optional .EGCPlatform platform = 5 [default = k_eGCPlatform_None];
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
repeated .CMsgApplyRemoteConVars.ConVar con_vars = 1;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
message CMsgGCToClientApplyRemoteConVars {
|
|
369
|
+
optional .CMsgApplyRemoteConVars msg = 1;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
message CMsgGCToServerApplyRemoteConVars {
|
|
373
|
+
optional .CMsgApplyRemoteConVars msg = 1;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
message CMsgClientToGCIntegrityStatus {
|
|
377
|
+
message keyvalue {
|
|
378
|
+
optional uint32 id = 1;
|
|
379
|
+
optional uint32 extended = 2;
|
|
380
|
+
optional uint64 value = 3;
|
|
381
|
+
optional string string_value = 4;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
optional string report = 1;
|
|
385
|
+
optional bool secure_allowed = 2;
|
|
386
|
+
repeated .CMsgClientToGCIntegrityStatus.keyvalue diagnostics = 3;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
message CMsgClientToGCAggregateMetrics {
|
|
390
|
+
message SingleMetric {
|
|
391
|
+
optional string metric_name = 1;
|
|
392
|
+
optional uint32 metric_count = 2;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
repeated .CMsgClientToGCAggregateMetrics.SingleMetric metrics = 1;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
message CMsgGCToClientAggregateMetricsBackoff {
|
|
399
|
+
optional float upload_rate_modifier = 1;
|
|
400
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import "netmessages.proto";
|
|
2
|
+
import "networkbasetypes.proto";
|
|
3
|
+
|
|
4
|
+
enum P2P_Messages {
|
|
5
|
+
p2p_TextMessage = 256;
|
|
6
|
+
p2p_Voice = 257;
|
|
7
|
+
p2p_Ping = 258;
|
|
8
|
+
p2p_VRAvatarPosition = 259;
|
|
9
|
+
p2p_WatchSynchronization = 260;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
message CP2P_TextMessage {
|
|
13
|
+
optional bytes text = 1;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
message CSteam_Voice_Encoding {
|
|
17
|
+
optional bytes voice_data = 1;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
message CP2P_Voice {
|
|
21
|
+
enum Handler_Flags {
|
|
22
|
+
Played_Audio = 1;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
optional .CMsgVoiceAudio audio = 1;
|
|
26
|
+
optional uint32 broadcast_group = 2;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
message CP2P_Ping {
|
|
30
|
+
required uint64 send_time = 1;
|
|
31
|
+
required bool is_reply = 2;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
message CP2P_VRAvatarPosition {
|
|
35
|
+
message COrientation {
|
|
36
|
+
optional .CMsgVector pos = 1;
|
|
37
|
+
optional .CMsgQAngle ang = 2;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
repeated .CP2P_VRAvatarPosition.COrientation body_parts = 1;
|
|
41
|
+
optional int32 hat_id = 2;
|
|
42
|
+
optional int32 scene_id = 3;
|
|
43
|
+
optional int32 world_scale = 4;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
message CP2P_WatchSynchronization {
|
|
47
|
+
optional int32 demo_tick = 1;
|
|
48
|
+
optional bool paused = 2;
|
|
49
|
+
optional uint64 tv_listen_voice_indices = 3;
|
|
50
|
+
optional int32 dota_spectator_mode = 4;
|
|
51
|
+
optional bool dota_spectator_watching_broadcaster = 5;
|
|
52
|
+
optional int32 dota_spectator_hero_index = 6;
|
|
53
|
+
optional int32 dota_spectator_autospeed = 7;
|
|
54
|
+
optional int32 dota_replay_speed = 8;
|
|
55
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
enum EBaseClientMessages {
|
|
2
|
+
CM_CustomGameEvent = 280;
|
|
3
|
+
CM_CustomGameEventBounce = 281;
|
|
4
|
+
CM_ClientUIEvent = 282;
|
|
5
|
+
CM_DevPaletteVisibilityChanged = 283;
|
|
6
|
+
CM_WorldUIControllerHasPanelChanged = 284;
|
|
7
|
+
CM_RotateAnchor = 285;
|
|
8
|
+
CM_MAX_BASE = 300;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
enum EClientUIEvent {
|
|
12
|
+
EClientUIEvent_Invalid = 0;
|
|
13
|
+
EClientUIEvent_DialogFinished = 1;
|
|
14
|
+
EClientUIEvent_FireOutput = 2;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
message CClientMsg_CustomGameEvent {
|
|
18
|
+
optional string event_name = 1;
|
|
19
|
+
optional bytes data = 2;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
message CClientMsg_CustomGameEventBounce {
|
|
23
|
+
optional string event_name = 1;
|
|
24
|
+
optional bytes data = 2;
|
|
25
|
+
optional int32 player_slot = 3 [default = -1];
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
message CClientMsg_ClientUIEvent {
|
|
29
|
+
optional .EClientUIEvent event = 1 [default = EClientUIEvent_Invalid];
|
|
30
|
+
optional uint32 ent_ehandle = 2;
|
|
31
|
+
optional uint32 client_ehandle = 3;
|
|
32
|
+
optional string data1 = 4;
|
|
33
|
+
optional string data2 = 5;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
message CClientMsg_DevPaletteVisibilityChangedEvent {
|
|
37
|
+
optional bool visible = 1;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
message CClientMsg_WorldUIControllerHasPanelChangedEvent {
|
|
41
|
+
optional bool has_panel = 1;
|
|
42
|
+
optional uint32 client_ehandle = 2;
|
|
43
|
+
optional uint32 literal_hand_type = 3;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
message CClientMsg_RotateAnchor {
|
|
47
|
+
optional float angle = 1;
|
|
48
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import "netmessages.proto";
|
|
2
|
+
|
|
3
|
+
message C2S_CONNECT_Message {
|
|
4
|
+
optional uint32 host_version = 1;
|
|
5
|
+
optional uint32 auth_protocol = 2;
|
|
6
|
+
optional uint32 challenge_number = 3;
|
|
7
|
+
optional fixed64 reservation_cookie = 4;
|
|
8
|
+
optional bool low_violence = 5;
|
|
9
|
+
optional bytes encrypted_password = 6;
|
|
10
|
+
repeated .CCLCMsg_SplitPlayerConnect splitplayers = 7;
|
|
11
|
+
optional bytes auth_steam = 8;
|
|
12
|
+
optional string challenge_context = 9;
|
|
13
|
+
optional sint32 use_snp = 10;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
message C2S_CONNECTION_Message {
|
|
17
|
+
optional string addon_name = 1;
|
|
18
|
+
optional bool use_snp = 2;
|
|
19
|
+
}
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
enum EDemoCommands {
|
|
2
|
+
DEM_Error = -1;
|
|
3
|
+
DEM_Stop = 0;
|
|
4
|
+
DEM_FileHeader = 1;
|
|
5
|
+
DEM_FileInfo = 2;
|
|
6
|
+
DEM_SyncTick = 3;
|
|
7
|
+
DEM_SendTables = 4;
|
|
8
|
+
DEM_ClassInfo = 5;
|
|
9
|
+
DEM_StringTables = 6;
|
|
10
|
+
DEM_Packet = 7;
|
|
11
|
+
DEM_SignonPacket = 8;
|
|
12
|
+
DEM_ConsoleCmd = 9;
|
|
13
|
+
DEM_CustomData = 10;
|
|
14
|
+
DEM_CustomDataCallbacks = 11;
|
|
15
|
+
DEM_UserCmd = 12;
|
|
16
|
+
DEM_FullPacket = 13;
|
|
17
|
+
DEM_SaveGame = 14;
|
|
18
|
+
DEM_SpawnGroups = 15;
|
|
19
|
+
DEM_AnimationData = 16;
|
|
20
|
+
DEM_Max = 17;
|
|
21
|
+
DEM_IsCompressed = 64;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
message CDemoFileHeader {
|
|
25
|
+
required string demo_file_stamp = 1;
|
|
26
|
+
optional int32 network_protocol = 2;
|
|
27
|
+
optional string server_name = 3;
|
|
28
|
+
optional string client_name = 4;
|
|
29
|
+
optional string map_name = 5;
|
|
30
|
+
optional string game_directory = 6;
|
|
31
|
+
optional int32 fullpackets_version = 7;
|
|
32
|
+
optional bool allow_clientside_entities = 8;
|
|
33
|
+
optional bool allow_clientside_particles = 9;
|
|
34
|
+
optional string addons = 10;
|
|
35
|
+
optional string demo_version_name = 11;
|
|
36
|
+
optional string demo_version_guid = 12;
|
|
37
|
+
optional int32 build_num = 13;
|
|
38
|
+
optional string game = 14;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
message CGameInfo {
|
|
42
|
+
message CDotaGameInfo {
|
|
43
|
+
message CPlayerInfo {
|
|
44
|
+
optional string hero_name = 1;
|
|
45
|
+
optional string player_name = 2;
|
|
46
|
+
optional bool is_fake_client = 3;
|
|
47
|
+
optional uint64 steamid = 4;
|
|
48
|
+
optional int32 game_team = 5;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
message CHeroSelectEvent {
|
|
52
|
+
optional bool is_pick = 1;
|
|
53
|
+
optional uint32 team = 2;
|
|
54
|
+
optional uint32 hero_id = 3;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
optional uint64 match_id = 1;
|
|
58
|
+
optional int32 game_mode = 2;
|
|
59
|
+
optional int32 game_winner = 3;
|
|
60
|
+
repeated .CGameInfo.CDotaGameInfo.CPlayerInfo player_info = 4;
|
|
61
|
+
optional uint32 leagueid = 5;
|
|
62
|
+
repeated .CGameInfo.CDotaGameInfo.CHeroSelectEvent picks_bans = 6;
|
|
63
|
+
optional uint32 radiant_team_id = 7;
|
|
64
|
+
optional uint32 dire_team_id = 8;
|
|
65
|
+
optional string radiant_team_tag = 9;
|
|
66
|
+
optional string dire_team_tag = 10;
|
|
67
|
+
optional uint32 end_time = 11;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
optional .CGameInfo.CDotaGameInfo dota = 4;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
message CDemoFileInfo {
|
|
74
|
+
optional float playback_time = 1;
|
|
75
|
+
optional int32 playback_ticks = 2;
|
|
76
|
+
optional int32 playback_frames = 3;
|
|
77
|
+
optional .CGameInfo game_info = 4;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
message CDemoPacket {
|
|
81
|
+
optional bytes data = 3;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
message CDemoFullPacket {
|
|
85
|
+
optional .CDemoStringTables string_table = 1;
|
|
86
|
+
optional .CDemoPacket packet = 2;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
message CDemoSaveGame {
|
|
90
|
+
optional bytes data = 1;
|
|
91
|
+
optional fixed64 steam_id = 2;
|
|
92
|
+
optional fixed64 signature = 3;
|
|
93
|
+
optional int32 version = 4;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
message CDemoSyncTick {
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
message CDemoConsoleCmd {
|
|
100
|
+
optional string cmdstring = 1;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
message CDemoSendTables {
|
|
104
|
+
optional bytes data = 1;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
message CDemoClassInfo {
|
|
108
|
+
message class_t {
|
|
109
|
+
optional int32 class_id = 1;
|
|
110
|
+
optional string network_name = 2;
|
|
111
|
+
optional string table_name = 3;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
repeated .CDemoClassInfo.class_t classes = 1;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
message CDemoCustomData {
|
|
118
|
+
optional int32 callback_index = 1;
|
|
119
|
+
optional bytes data = 2;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
message CDemoCustomDataCallbacks {
|
|
123
|
+
repeated string save_id = 1;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
message CDemoAnimationData {
|
|
127
|
+
optional sint32 entity_id = 1;
|
|
128
|
+
optional int32 start_tick = 2;
|
|
129
|
+
optional int32 end_tick = 3;
|
|
130
|
+
optional bytes data = 4;
|
|
131
|
+
optional int64 data_checksum = 5;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
message CDemoStringTables {
|
|
135
|
+
message items_t {
|
|
136
|
+
optional string str = 1;
|
|
137
|
+
optional bytes data = 2;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
message table_t {
|
|
141
|
+
optional string table_name = 1;
|
|
142
|
+
repeated .CDemoStringTables.items_t items = 2;
|
|
143
|
+
repeated .CDemoStringTables.items_t items_clientside = 3;
|
|
144
|
+
optional int32 table_flags = 4;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
repeated .CDemoStringTables.table_t tables = 1;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
message CDemoStop {
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
message CDemoUserCmd {
|
|
154
|
+
optional int32 cmd_number = 1;
|
|
155
|
+
optional bytes data = 2;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
message CDemoSpawnGroups {
|
|
159
|
+
repeated bytes msgs = 3;
|
|
160
|
+
}
|