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,391 @@
|
|
|
1
|
+
import "steammessages.proto";
|
|
2
|
+
import "dota_shared_enums.proto";
|
|
3
|
+
import "gcsdk_gcmessages.proto";
|
|
4
|
+
|
|
5
|
+
enum ELobbyMemberCoachRequestState {
|
|
6
|
+
k_eLobbyMemberCoachRequestState_None = 0;
|
|
7
|
+
k_eLobbyMemberCoachRequestState_Accepted = 1;
|
|
8
|
+
k_eLobbyMemberCoachRequestState_Rejected = 2;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
enum LobbyDotaTVDelay {
|
|
12
|
+
LobbyDotaTV_10 = 0;
|
|
13
|
+
LobbyDotaTV_120 = 1;
|
|
14
|
+
LobbyDotaTV_300 = 2;
|
|
15
|
+
LobbyDotaTV_900 = 3;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
enum LobbyDotaPauseSetting {
|
|
19
|
+
LobbyDotaPauseSetting_Unlimited = 0;
|
|
20
|
+
LobbyDotaPauseSetting_Limited = 1;
|
|
21
|
+
LobbyDotaPauseSetting_Disabled = 2;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
message CMsgLobbyCoachFriendRequest {
|
|
25
|
+
optional uint32 coach_account_id = 1;
|
|
26
|
+
optional uint32 player_account_id = 2;
|
|
27
|
+
optional .ELobbyMemberCoachRequestState request_state = 3 [default = k_eLobbyMemberCoachRequestState_None];
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
message CMsgLobbyPlayerPlusSubscriptionData {
|
|
31
|
+
message HeroBadge {
|
|
32
|
+
optional uint32 hero_id = 1;
|
|
33
|
+
optional uint32 hero_badge_xp = 2;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
repeated .CMsgLobbyPlayerPlusSubscriptionData.HeroBadge hero_badges = 1;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
message CMsgEventActionData {
|
|
40
|
+
optional uint32 action_id = 1;
|
|
41
|
+
optional uint32 action_score = 2;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
message CMsgPeriodicResourceData {
|
|
45
|
+
optional uint32 periodic_resource_id = 1;
|
|
46
|
+
optional uint32 remaining = 2;
|
|
47
|
+
optional uint32 max = 3;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
message CMsgLobbyEventPoints {
|
|
51
|
+
message AccountPoints {
|
|
52
|
+
optional uint32 account_id = 1;
|
|
53
|
+
optional uint32 normal_points = 2;
|
|
54
|
+
optional uint32 premium_points = 3;
|
|
55
|
+
optional bool owned = 4;
|
|
56
|
+
optional uint64 active_effects_mask = 12;
|
|
57
|
+
optional uint32 wager_streak = 23;
|
|
58
|
+
repeated .CMsgEventActionData event_game_custom_actions = 25;
|
|
59
|
+
optional uint32 tip_amount_index = 26;
|
|
60
|
+
optional uint32 active_event_season_id = 27;
|
|
61
|
+
optional uint32 teleport_fx_level = 28;
|
|
62
|
+
repeated .CMsgEventActionData networked_event_actions = 30;
|
|
63
|
+
repeated .CMsgPeriodicResourceData periodic_resources = 31;
|
|
64
|
+
repeated .CExtraMsgBlock extra_event_messages = 32;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
optional uint32 event_id = 1;
|
|
68
|
+
repeated .CMsgLobbyEventPoints.AccountPoints account_points = 2;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
message CMsgLobbyEventGameData {
|
|
72
|
+
optional uint32 game_seed = 1;
|
|
73
|
+
optional uint32 event_window_start_time = 2;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
message CSODOTALobbyInvite {
|
|
77
|
+
message LobbyMember {
|
|
78
|
+
optional string name = 1;
|
|
79
|
+
optional fixed64 steam_id = 2;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
optional uint64 group_id = 1 [(key_field) = true];
|
|
83
|
+
optional fixed64 sender_id = 2;
|
|
84
|
+
optional string sender_name = 3;
|
|
85
|
+
repeated .CSODOTALobbyInvite.LobbyMember members = 4;
|
|
86
|
+
optional uint64 custom_game_id = 5;
|
|
87
|
+
optional fixed64 invite_gid = 6;
|
|
88
|
+
optional fixed64 custom_game_crc = 7;
|
|
89
|
+
optional fixed32 custom_game_timestamp = 8;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
message CSODOTALobbyMember {
|
|
93
|
+
optional fixed64 id = 1 [(key_field) = true];
|
|
94
|
+
optional uint32 hero_id = 2;
|
|
95
|
+
optional .DOTA_GC_TEAM team = 3 [default = DOTA_GC_TEAM_GOOD_GUYS];
|
|
96
|
+
optional string name = 6;
|
|
97
|
+
optional uint32 slot = 7;
|
|
98
|
+
optional uint64 party_id = 12;
|
|
99
|
+
optional uint32 meta_level = 13;
|
|
100
|
+
optional uint32 meta_xp = 14;
|
|
101
|
+
optional uint32 meta_xp_awarded = 15;
|
|
102
|
+
optional .DOTALeaverStatus_t leaver_status = 16 [default = DOTA_LEAVER_NONE];
|
|
103
|
+
optional uint32 leaver_actions = 28;
|
|
104
|
+
optional uint32 channel = 17 [default = 6];
|
|
105
|
+
repeated uint32 disabled_hero_id = 20;
|
|
106
|
+
repeated uint32 enabled_hero_id = 22;
|
|
107
|
+
optional .DOTA_GC_TEAM coach_team = 23 [default = DOTA_GC_TEAM_NOTEAM];
|
|
108
|
+
repeated uint32 coached_account_ids = 53;
|
|
109
|
+
optional uint32 coach_rating = 42;
|
|
110
|
+
optional uint32 pwrd_cyber_cafe_id = 24;
|
|
111
|
+
optional string pwrd_cyber_cafe_name = 25;
|
|
112
|
+
repeated fixed32 disabled_random_hero_bits = 41;
|
|
113
|
+
optional sint32 rank_change = 29;
|
|
114
|
+
optional bool cameraman = 30;
|
|
115
|
+
repeated uint32 custom_game_product_ids = 31;
|
|
116
|
+
optional .MatchType search_match_type = 33 [default = MATCH_TYPE_CASUAL];
|
|
117
|
+
optional uint64 favorite_team_packed = 35;
|
|
118
|
+
optional bool is_plus_subscriber = 36;
|
|
119
|
+
optional uint32 lane_selection_flags = 38;
|
|
120
|
+
optional bool can_earn_rewards = 39;
|
|
121
|
+
optional .DOTA_GC_TEAM live_spectator_team = 40 [default = DOTA_GC_TEAM_NOTEAM];
|
|
122
|
+
optional bool was_mvp_last_game = 43;
|
|
123
|
+
repeated .CMsgPendingEventAward pending_awards = 44;
|
|
124
|
+
repeated .CMsgPendingEventAward pending_awards_on_victory = 45;
|
|
125
|
+
optional .EDOTAMMRBoostType rank_mmr_boost_type = 46 [default = k_EDOTAMMRBoostType_None];
|
|
126
|
+
optional sint32 queue_point_adjustment = 47;
|
|
127
|
+
optional int32 rank_tier = 48;
|
|
128
|
+
optional uint32 title = 50;
|
|
129
|
+
optional uint32 guild_id = 51;
|
|
130
|
+
optional uint32 reports_available = 52;
|
|
131
|
+
optional bool is_steam_china = 54;
|
|
132
|
+
optional uint32 live_spectator_account_id = 55;
|
|
133
|
+
optional uint32 comms_reports_available = 56;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
message CSODOTAServerLobbyMember {
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
message CSODOTAStaticLobbyMember {
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
message CSODOTAServerStaticLobbyMember {
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
message CLobbyTeamDetails {
|
|
146
|
+
optional string team_name = 1;
|
|
147
|
+
optional string team_tag = 3;
|
|
148
|
+
optional uint32 team_id = 4;
|
|
149
|
+
optional uint64 team_logo = 5;
|
|
150
|
+
optional uint64 team_base_logo = 6;
|
|
151
|
+
optional uint64 team_banner_logo = 7;
|
|
152
|
+
optional bool team_complete = 8;
|
|
153
|
+
optional uint32 rank = 15;
|
|
154
|
+
optional sint32 rank_change = 16;
|
|
155
|
+
optional bool is_home_team = 17;
|
|
156
|
+
optional bool is_challenge_match = 18;
|
|
157
|
+
optional uint64 challenge_match_token_account = 19;
|
|
158
|
+
optional string team_logo_url = 20;
|
|
159
|
+
optional string team_abbreviation = 21;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
message CLobbyGuildDetails {
|
|
163
|
+
optional uint32 guild_id = 1;
|
|
164
|
+
optional uint32 guild_primary_color = 2;
|
|
165
|
+
optional uint32 guild_secondary_color = 3;
|
|
166
|
+
optional uint32 guild_pattern = 4;
|
|
167
|
+
optional uint64 guild_logo = 5;
|
|
168
|
+
optional uint32 guild_points = 6;
|
|
169
|
+
optional uint32 guild_event = 7;
|
|
170
|
+
optional uint32 guild_flags = 8;
|
|
171
|
+
optional .DOTA_GC_TEAM team_for_guild = 9 [default = DOTA_GC_TEAM_GOOD_GUYS];
|
|
172
|
+
optional string guild_tag = 10;
|
|
173
|
+
optional uint32 guild_weekly_percentile = 11;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
message CLobbyTimedRewardDetails {
|
|
177
|
+
optional uint32 item_def_index = 2;
|
|
178
|
+
optional bool is_supply_crate = 3;
|
|
179
|
+
optional bool is_timed_drop = 4;
|
|
180
|
+
optional uint32 account_id = 5;
|
|
181
|
+
optional uint32 origin = 6;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
message CLobbyBroadcastChannelInfo {
|
|
185
|
+
optional uint32 channel_id = 1;
|
|
186
|
+
optional string country_code = 2;
|
|
187
|
+
optional string description = 3;
|
|
188
|
+
optional string language_code = 4;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
message CLobbyGuildChallenge {
|
|
192
|
+
optional uint32 guild_id = 1;
|
|
193
|
+
optional .EEvent event_id = 2 [default = EVENT_ID_NONE];
|
|
194
|
+
optional uint32 challenge_instance_id = 3;
|
|
195
|
+
optional uint32 challenge_parameter = 4;
|
|
196
|
+
optional uint32 challenge_timestamp = 5;
|
|
197
|
+
optional uint32 challenge_period_serial = 6;
|
|
198
|
+
optional uint32 challenge_progress_at_start = 7;
|
|
199
|
+
repeated uint32 eligible_account_ids = 8;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
message CSODOTALobby {
|
|
203
|
+
message CExtraMsg {
|
|
204
|
+
optional uint32 id = 1;
|
|
205
|
+
optional bytes contents = 2;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
enum State {
|
|
209
|
+
UI = 0;
|
|
210
|
+
READYUP = 4;
|
|
211
|
+
SERVERSETUP = 1;
|
|
212
|
+
RUN = 2;
|
|
213
|
+
POSTGAME = 3;
|
|
214
|
+
NOTREADY = 5;
|
|
215
|
+
SERVERASSIGN = 6;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
enum LobbyType {
|
|
219
|
+
INVALID = -1;
|
|
220
|
+
CASUAL_MATCH = 0;
|
|
221
|
+
PRACTICE = 1;
|
|
222
|
+
COOP_BOT_MATCH = 4;
|
|
223
|
+
COMPETITIVE_MATCH = 7;
|
|
224
|
+
WEEKEND_TOURNEY = 9;
|
|
225
|
+
LOCAL_BOT_MATCH = 10;
|
|
226
|
+
SPECTATOR = 11;
|
|
227
|
+
EVENT_MATCH = 12;
|
|
228
|
+
NEW_PLAYER_POOL = 14;
|
|
229
|
+
FEATURED_GAMEMODE = 15;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
optional uint64 lobby_id = 1 [(key_field) = true];
|
|
233
|
+
repeated .CSODOTALobbyMember all_members = 120;
|
|
234
|
+
repeated uint32 member_indices = 121;
|
|
235
|
+
repeated uint32 left_member_indices = 122;
|
|
236
|
+
repeated uint32 free_member_indices = 123;
|
|
237
|
+
optional fixed64 leader_id = 11;
|
|
238
|
+
optional fixed64 server_id = 6 [default = 0];
|
|
239
|
+
optional uint32 game_mode = 3;
|
|
240
|
+
repeated fixed64 pending_invites = 10;
|
|
241
|
+
optional .CSODOTALobby.State state = 4 [default = UI];
|
|
242
|
+
optional string connect = 5;
|
|
243
|
+
optional .CSODOTALobby.LobbyType lobby_type = 12 [default = INVALID];
|
|
244
|
+
optional bool allow_cheats = 13;
|
|
245
|
+
optional bool fill_with_bots = 14;
|
|
246
|
+
optional bool intro_mode = 15;
|
|
247
|
+
optional string game_name = 16;
|
|
248
|
+
repeated .CLobbyTeamDetails team_details = 17;
|
|
249
|
+
optional uint32 tutorial_lesson = 18;
|
|
250
|
+
optional uint32 tournament_id = 19;
|
|
251
|
+
optional uint32 tournament_game_id = 20;
|
|
252
|
+
optional uint32 server_region = 21 [default = 0];
|
|
253
|
+
optional .DOTA_GameState game_state = 22 [default = DOTA_GAMERULES_STATE_INIT];
|
|
254
|
+
optional uint32 num_spectators = 23;
|
|
255
|
+
optional uint32 matchgroup = 25;
|
|
256
|
+
optional .DOTA_CM_PICK cm_pick = 28 [default = DOTA_CM_RANDOM];
|
|
257
|
+
optional uint64 match_id = 30;
|
|
258
|
+
optional bool allow_spectating = 31 [default = true];
|
|
259
|
+
optional .DOTABotDifficulty bot_difficulty_radiant = 36 [default = BOT_DIFFICULTY_HARD];
|
|
260
|
+
repeated .CLobbyTimedRewardDetails timed_reward_details = 38;
|
|
261
|
+
optional string pass_key = 39;
|
|
262
|
+
optional uint32 leagueid = 42;
|
|
263
|
+
optional uint32 penalty_level_radiant = 43 [default = 0];
|
|
264
|
+
optional uint32 penalty_level_dire = 44 [default = 0];
|
|
265
|
+
optional uint32 load_game_id = 45;
|
|
266
|
+
optional uint32 series_type = 46;
|
|
267
|
+
optional uint32 radiant_series_wins = 47;
|
|
268
|
+
optional uint32 dire_series_wins = 48;
|
|
269
|
+
optional uint32 loot_generated = 49;
|
|
270
|
+
optional uint32 loot_awarded = 50;
|
|
271
|
+
optional bool allchat = 51 [default = false];
|
|
272
|
+
optional .LobbyDotaTVDelay dota_tv_delay = 53 [default = LobbyDotaTV_10];
|
|
273
|
+
optional string custom_game_mode = 54;
|
|
274
|
+
optional string custom_map_name = 55;
|
|
275
|
+
optional uint32 custom_difficulty = 56;
|
|
276
|
+
optional bool lan = 57;
|
|
277
|
+
repeated .CLobbyBroadcastChannelInfo broadcast_channel_info = 58;
|
|
278
|
+
optional uint32 first_leaver_accountid = 59;
|
|
279
|
+
optional uint32 series_id = 60;
|
|
280
|
+
optional bool low_priority = 61;
|
|
281
|
+
repeated .CSODOTALobby.CExtraMsg extra_messages = 62;
|
|
282
|
+
optional .CDOTASaveGame save_game = 63;
|
|
283
|
+
optional bool first_blood_happened = 65;
|
|
284
|
+
optional .EMatchOutcome match_outcome = 70 [default = k_EMatchOutcome_Unknown];
|
|
285
|
+
optional bool mass_disconnect = 67;
|
|
286
|
+
optional uint64 custom_game_id = 68;
|
|
287
|
+
optional uint32 custom_min_players = 71;
|
|
288
|
+
optional uint32 custom_max_players = 72;
|
|
289
|
+
optional .DOTALobbyVisibility visibility = 75 [default = DOTALobbyVisibility_Public];
|
|
290
|
+
optional fixed64 custom_game_crc = 76;
|
|
291
|
+
optional bool custom_game_auto_created_lobby = 77;
|
|
292
|
+
optional fixed32 custom_game_timestamp = 80;
|
|
293
|
+
repeated uint64 previous_series_matches = 81;
|
|
294
|
+
optional uint64 previous_match_override = 82;
|
|
295
|
+
optional uint32 game_start_time = 87;
|
|
296
|
+
optional .LobbyDotaPauseSetting pause_setting = 88 [default = LobbyDotaPauseSetting_Unlimited];
|
|
297
|
+
optional uint32 weekend_tourney_division_id = 90;
|
|
298
|
+
optional uint32 weekend_tourney_skill_level = 91;
|
|
299
|
+
optional uint32 weekend_tourney_bracket_round = 92;
|
|
300
|
+
optional .DOTABotDifficulty bot_difficulty_dire = 93 [default = BOT_DIFFICULTY_HARD];
|
|
301
|
+
optional uint64 bot_radiant = 94;
|
|
302
|
+
optional uint64 bot_dire = 95;
|
|
303
|
+
repeated .EEvent event_progression_enabled = 96;
|
|
304
|
+
optional .DOTASelectionPriorityRules selection_priority_rules = 97 [default = k_DOTASelectionPriorityRules_Manual];
|
|
305
|
+
optional uint32 series_previous_selection_priority_team_id = 98;
|
|
306
|
+
optional uint32 series_current_selection_priority_team_id = 99;
|
|
307
|
+
optional .DOTASelectionPriorityChoice series_current_priority_team_choice = 100 [default = k_DOTASelectionPriorityChoice_Invalid];
|
|
308
|
+
optional .DOTASelectionPriorityChoice series_current_non_priority_team_choice = 101 [default = k_DOTASelectionPriorityChoice_Invalid];
|
|
309
|
+
optional bool series_current_selection_priority_used_coin_toss = 102;
|
|
310
|
+
optional .EEvent current_primary_event = 103 [default = EVENT_ID_NONE];
|
|
311
|
+
repeated uint32 emergency_disabled_hero_ids = 105;
|
|
312
|
+
optional fixed64 custom_game_private_key = 106;
|
|
313
|
+
optional bool custom_game_penalties = 107;
|
|
314
|
+
optional string lan_host_ping_location = 109;
|
|
315
|
+
optional uint32 league_node_id = 110;
|
|
316
|
+
optional uint32 match_duration = 111;
|
|
317
|
+
optional uint32 league_phase = 113;
|
|
318
|
+
optional bool experimental_gameplay_enabled = 116;
|
|
319
|
+
repeated .CLobbyGuildChallenge guild_challenges = 117;
|
|
320
|
+
repeated .CLobbyGuildDetails guild_details = 118;
|
|
321
|
+
repeated .CMsgLobbyEventPoints lobby_event_points = 119;
|
|
322
|
+
repeated uint32 requested_hero_ids = 124;
|
|
323
|
+
repeated .CMsgLobbyCoachFriendRequest coach_friend_requests = 125;
|
|
324
|
+
optional bool is_in_steam_china = 126;
|
|
325
|
+
optional bool with_scenario_save = 127;
|
|
326
|
+
optional uint32 lobby_creation_time = 128;
|
|
327
|
+
optional string event_game_definition = 129;
|
|
328
|
+
repeated .CSODOTALobby.CExtraMsg extra_startup_messages = 130;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
message CSODOTAServerLobby {
|
|
332
|
+
repeated .CSODOTAServerLobbyMember all_members = 1;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
message CSODOTAStaticLobby {
|
|
336
|
+
repeated .CSODOTAStaticLobbyMember all_members = 1;
|
|
337
|
+
optional bool is_player_draft = 2;
|
|
338
|
+
optional bool is_last_match_in_series = 3;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
message CSODOTAServerStaticLobby {
|
|
342
|
+
repeated .CSODOTAServerStaticLobbyMember all_members = 1;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
message CMsgAdditionalLobbyStartupAccountData {
|
|
346
|
+
message ChatWheelMessageRange {
|
|
347
|
+
optional uint32 message_id_start = 1 [default = 4294967295];
|
|
348
|
+
optional uint32 message_id_end = 2 [default = 4294967295];
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
message PingWheelMessageRange {
|
|
352
|
+
optional uint32 message_id_start = 1 [default = 4294967295];
|
|
353
|
+
optional uint32 message_id_end = 2 [default = 4294967295];
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
optional uint32 account_id = 1;
|
|
357
|
+
optional .CMsgLobbyPlayerPlusSubscriptionData plus_data = 2;
|
|
358
|
+
repeated .CMsgAdditionalLobbyStartupAccountData.ChatWheelMessageRange unlocked_chat_wheel_message_ranges = 3;
|
|
359
|
+
repeated .CMsgAdditionalLobbyStartupAccountData.PingWheelMessageRange unlocked_ping_wheel_message_ranges = 4;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
message CMsgLobbyInitializationComplete {
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
message CMsgLobbyPlaytestDetails {
|
|
366
|
+
optional string json = 1;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
message CMsgLocalServerGuildData {
|
|
370
|
+
optional uint32 guild_id = 1;
|
|
371
|
+
optional .EEvent event_id = 2 [default = EVENT_ID_NONE];
|
|
372
|
+
optional uint32 guild_points = 3;
|
|
373
|
+
optional uint64 guild_logo = 4;
|
|
374
|
+
optional uint32 guild_primary_color = 5;
|
|
375
|
+
optional uint32 guild_secondary_color = 6;
|
|
376
|
+
optional uint32 guild_pattern = 7;
|
|
377
|
+
optional uint32 guild_flags = 8;
|
|
378
|
+
optional uint32 guild_weekly_percentile = 9;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
message CMsgLocalServerFakeLobbyData {
|
|
382
|
+
optional uint32 account_id = 1;
|
|
383
|
+
repeated .CMsgLobbyEventPoints event_points = 2;
|
|
384
|
+
optional bool is_plus_subscriber = 3;
|
|
385
|
+
optional uint32 primary_event_id = 4;
|
|
386
|
+
optional uint32 favorite_team = 5;
|
|
387
|
+
optional uint32 favorite_team_quality = 6;
|
|
388
|
+
optional .CMsgLocalServerGuildData guild_info = 7;
|
|
389
|
+
optional uint32 teleport_fx_level = 8;
|
|
390
|
+
optional .CMsgAdditionalLobbyStartupAccountData additional_data = 9;
|
|
391
|
+
}
|