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,890 @@
|
|
|
1
|
+
enum EDOTAGCMsg {
|
|
2
|
+
k_EMsgGCDOTABase = 7000;
|
|
3
|
+
k_EMsgGCGameMatchSignOut = 7004;
|
|
4
|
+
k_EMsgGCGameMatchSignOutResponse = 7005;
|
|
5
|
+
k_EMsgGCJoinChatChannel = 7009;
|
|
6
|
+
k_EMsgGCJoinChatChannelResponse = 7010;
|
|
7
|
+
k_EMsgGCOtherJoinedChannel = 7013;
|
|
8
|
+
k_EMsgGCOtherLeftChannel = 7014;
|
|
9
|
+
k_EMsgServerToGCRequestStatus = 7026;
|
|
10
|
+
k_EMsgGCStartFindingMatch = 7033;
|
|
11
|
+
k_EMsgGCConnectedPlayers = 7034;
|
|
12
|
+
k_EMsgGCAbandonCurrentGame = 7035;
|
|
13
|
+
k_EMsgGCStopFindingMatch = 7036;
|
|
14
|
+
k_EMsgGCPracticeLobbyCreate = 7038;
|
|
15
|
+
k_EMsgGCPracticeLobbyLeave = 7040;
|
|
16
|
+
k_EMsgGCPracticeLobbyLaunch = 7041;
|
|
17
|
+
k_EMsgGCPracticeLobbyList = 7042;
|
|
18
|
+
k_EMsgGCPracticeLobbyListResponse = 7043;
|
|
19
|
+
k_EMsgGCPracticeLobbyJoin = 7044;
|
|
20
|
+
k_EMsgGCPracticeLobbySetDetails = 7046;
|
|
21
|
+
k_EMsgGCPracticeLobbySetTeamSlot = 7047;
|
|
22
|
+
k_EMsgGCInitialQuestionnaireResponse = 7049;
|
|
23
|
+
k_EMsgGCPracticeLobbyResponse = 7055;
|
|
24
|
+
k_EMsgGCBroadcastNotification = 7056;
|
|
25
|
+
k_EMsgGCLiveScoreboardUpdate = 7057;
|
|
26
|
+
k_EMsgGCRequestChatChannelList = 7060;
|
|
27
|
+
k_EMsgGCRequestChatChannelListResponse = 7061;
|
|
28
|
+
k_EMsgGCReadyUp = 7070;
|
|
29
|
+
k_EMsgGCKickedFromMatchmakingQueue = 7071;
|
|
30
|
+
k_EMsgGCLeaverDetected = 7072;
|
|
31
|
+
k_EMsgGCSpectateFriendGame = 7073;
|
|
32
|
+
k_EMsgGCSpectateFriendGameResponse = 7074;
|
|
33
|
+
k_EMsgGCReportsRemainingRequest = 7076;
|
|
34
|
+
k_EMsgGCReportsRemainingResponse = 7077;
|
|
35
|
+
k_EMsgGCSubmitPlayerReport = 7078;
|
|
36
|
+
k_EMsgGCSubmitPlayerReportResponse = 7079;
|
|
37
|
+
k_EMsgGCPracticeLobbyKick = 7081;
|
|
38
|
+
k_EMsgGCSubmitPlayerReportV2 = 7082;
|
|
39
|
+
k_EMsgGCSubmitPlayerReportResponseV2 = 7083;
|
|
40
|
+
k_EMsgGCRequestSaveGames = 7084;
|
|
41
|
+
k_EMsgGCRequestSaveGamesServer = 7085;
|
|
42
|
+
k_EMsgGCRequestSaveGamesResponse = 7086;
|
|
43
|
+
k_EMsgGCLeaverDetectedResponse = 7087;
|
|
44
|
+
k_EMsgGCPlayerFailedToConnect = 7088;
|
|
45
|
+
k_EMsgGCGCToRelayConnect = 7089;
|
|
46
|
+
k_EMsgGCGCToRelayConnectresponse = 7090;
|
|
47
|
+
k_EMsgGCWatchGame = 7091;
|
|
48
|
+
k_EMsgGCWatchGameResponse = 7092;
|
|
49
|
+
k_EMsgGCBanStatusRequest = 7093;
|
|
50
|
+
k_EMsgGCBanStatusResponse = 7094;
|
|
51
|
+
k_EMsgGCMatchDetailsRequest = 7095;
|
|
52
|
+
k_EMsgGCMatchDetailsResponse = 7096;
|
|
53
|
+
k_EMsgGCCancelWatchGame = 7097;
|
|
54
|
+
k_EMsgGCPopup = 7102;
|
|
55
|
+
k_EMsgGCFriendPracticeLobbyListRequest = 7111;
|
|
56
|
+
k_EMsgGCFriendPracticeLobbyListResponse = 7112;
|
|
57
|
+
k_EMsgGCPracticeLobbyJoinResponse = 7113;
|
|
58
|
+
k_EMsgGCCreateTeam = 7115;
|
|
59
|
+
k_EMsgGCCreateTeamResponse = 7116;
|
|
60
|
+
k_EMsgGCTeamInvite_InviterToGC = 7122;
|
|
61
|
+
k_EMsgGCTeamInvite_GCImmediateResponseToInviter = 7123;
|
|
62
|
+
k_EMsgGCTeamInvite_GCRequestToInvitee = 7124;
|
|
63
|
+
k_EMsgGCTeamInvite_InviteeResponseToGC = 7125;
|
|
64
|
+
k_EMsgGCTeamInvite_GCResponseToInviter = 7126;
|
|
65
|
+
k_EMsgGCTeamInvite_GCResponseToInvitee = 7127;
|
|
66
|
+
k_EMsgGCKickTeamMember = 7128;
|
|
67
|
+
k_EMsgGCKickTeamMemberResponse = 7129;
|
|
68
|
+
k_EMsgGCLeaveTeam = 7130;
|
|
69
|
+
k_EMsgGCLeaveTeamResponse = 7131;
|
|
70
|
+
k_EMsgGCApplyTeamToPracticeLobby = 7142;
|
|
71
|
+
k_EMsgGCTransferTeamAdmin = 7144;
|
|
72
|
+
k_EMsgGCPracticeLobbyJoinBroadcastChannel = 7149;
|
|
73
|
+
k_EMsgGC_TournamentItemEvent = 7150;
|
|
74
|
+
k_EMsgGC_TournamentItemEventResponse = 7151;
|
|
75
|
+
k_EMsgTeamFanfare = 7156;
|
|
76
|
+
k_EMsgResponseTeamFanfare = 7157;
|
|
77
|
+
k_EMsgGC_GameServerUploadSaveGame = 7158;
|
|
78
|
+
k_EMsgGC_GameServerSaveGameResult = 7159;
|
|
79
|
+
k_EMsgGC_GameServerGetLoadGame = 7160;
|
|
80
|
+
k_EMsgGC_GameServerGetLoadGameResult = 7161;
|
|
81
|
+
k_EMsgGCEditTeamDetails = 7166;
|
|
82
|
+
k_EMsgGCEditTeamDetailsResponse = 7167;
|
|
83
|
+
k_EMsgGCReadyUpStatus = 7170;
|
|
84
|
+
k_EMsgGCToGCMatchCompleted = 7186;
|
|
85
|
+
k_EMsgGCBalancedShuffleLobby = 7188;
|
|
86
|
+
k_EMsgGCMatchmakingStatsRequest = 7197;
|
|
87
|
+
k_EMsgGCMatchmakingStatsResponse = 7198;
|
|
88
|
+
k_EMsgGCBotGameCreate = 7199;
|
|
89
|
+
k_EMsgGCSetMatchHistoryAccess = 7200;
|
|
90
|
+
k_EMsgGCSetMatchHistoryAccessResponse = 7201;
|
|
91
|
+
k_EMsgUpgradeLeagueItem = 7203;
|
|
92
|
+
k_EMsgUpgradeLeagueItemResponse = 7204;
|
|
93
|
+
k_EMsgGCWatchDownloadedReplay = 7206;
|
|
94
|
+
k_EMsgClientsRejoinChatChannels = 7217;
|
|
95
|
+
k_EMsgGCToGCGetUserChatInfo = 7218;
|
|
96
|
+
k_EMsgGCToGCGetUserChatInfoResponse = 7219;
|
|
97
|
+
k_EMsgGCToGCLeaveAllChatChannels = 7220;
|
|
98
|
+
k_EMsgGCToGCUpdateAccountChatBan = 7221;
|
|
99
|
+
k_EMsgGCToGCCanInviteUserToTeam = 7234;
|
|
100
|
+
k_EMsgGCToGCCanInviteUserToTeamResponse = 7235;
|
|
101
|
+
k_EMsgGCToGCGetUserRank = 7236;
|
|
102
|
+
k_EMsgGCToGCGetUserRankResponse = 7237;
|
|
103
|
+
k_EMsgGCToGCAdjustUserRank = 7238;
|
|
104
|
+
k_EMsgGCToGCAdjustUserRankResponse = 7239;
|
|
105
|
+
k_EMsgGCToGCUpdateTeamStats = 7240;
|
|
106
|
+
k_EMsgGCToGCValidateTeam = 7241;
|
|
107
|
+
k_EMsgGCToGCValidateTeamResponse = 7242;
|
|
108
|
+
k_EMsgGCToGCGetLeagueAdmin = 7255;
|
|
109
|
+
k_EMsgGCToGCGetLeagueAdminResponse = 7256;
|
|
110
|
+
k_EMsgGCLeaveChatChannel = 7272;
|
|
111
|
+
k_EMsgGCChatMessage = 7273;
|
|
112
|
+
k_EMsgGCGetHeroStandings = 7274;
|
|
113
|
+
k_EMsgGCGetHeroStandingsResponse = 7275;
|
|
114
|
+
k_EMsgGCItemEditorReservationsRequest = 7283;
|
|
115
|
+
k_EMsgGCItemEditorReservationsResponse = 7284;
|
|
116
|
+
k_EMsgGCItemEditorReserveItemDef = 7285;
|
|
117
|
+
k_EMsgGCItemEditorReserveItemDefResponse = 7286;
|
|
118
|
+
k_EMsgGCItemEditorReleaseReservation = 7287;
|
|
119
|
+
k_EMsgGCItemEditorReleaseReservationResponse = 7288;
|
|
120
|
+
k_EMsgGCRewardTutorialPrizes = 7289;
|
|
121
|
+
k_EMsgGCFantasyLivePlayerStats = 7308;
|
|
122
|
+
k_EMsgGCFantasyFinalPlayerStats = 7309;
|
|
123
|
+
k_EMsgGCFlipLobbyTeams = 7320;
|
|
124
|
+
k_EMsgGCToGCEvaluateReportedPlayer = 7322;
|
|
125
|
+
k_EMsgGCToGCEvaluateReportedPlayerResponse = 7323;
|
|
126
|
+
k_EMsgGCToGCProcessPlayerReportForTarget = 7324;
|
|
127
|
+
k_EMsgGCToGCProcessReportSuccess = 7325;
|
|
128
|
+
k_EMsgGCNotifyAccountFlagsChange = 7326;
|
|
129
|
+
k_EMsgGCSetProfilePrivacy = 7327;
|
|
130
|
+
k_EMsgGCSetProfilePrivacyResponse = 7328;
|
|
131
|
+
k_EMsgGCClientSuspended = 7342;
|
|
132
|
+
k_EMsgGCPartyMemberSetCoach = 7343;
|
|
133
|
+
k_EMsgGCPracticeLobbySetCoach = 7346;
|
|
134
|
+
k_EMsgGCChatModeratorBan = 7359;
|
|
135
|
+
k_EMsgGCLobbyUpdateBroadcastChannelInfo = 7367;
|
|
136
|
+
k_EMsgGCToGCGrantTournamentItem = 7372;
|
|
137
|
+
k_EMsgGCToGCUpgradeTwitchViewerItems = 7375;
|
|
138
|
+
k_EMsgGCToGCGetLiveMatchAffiliates = 7376;
|
|
139
|
+
k_EMsgGCToGCGetLiveMatchAffiliatesResponse = 7377;
|
|
140
|
+
k_EMsgGCToGCUpdatePlayerPennantCounts = 7378;
|
|
141
|
+
k_EMsgGCToGCGetPlayerPennantCounts = 7379;
|
|
142
|
+
k_EMsgGCToGCGetPlayerPennantCountsResponse = 7380;
|
|
143
|
+
k_EMsgGCGameMatchSignOutPermissionRequest = 7381;
|
|
144
|
+
k_EMsgGCGameMatchSignOutPermissionResponse = 7382;
|
|
145
|
+
k_EMsgDOTAAwardEventPoints = 7384;
|
|
146
|
+
k_EMsgDOTAGetEventPoints = 7387;
|
|
147
|
+
k_EMsgDOTAGetEventPointsResponse = 7388;
|
|
148
|
+
k_EMsgGCPartyLeaderWatchGamePrompt = 7397;
|
|
149
|
+
k_EMsgGCCompendiumSetSelection = 7405;
|
|
150
|
+
k_EMsgGCCompendiumDataRequest = 7406;
|
|
151
|
+
k_EMsgGCCompendiumDataResponse = 7407;
|
|
152
|
+
k_EMsgDOTAGetPlayerMatchHistory = 7408;
|
|
153
|
+
k_EMsgDOTAGetPlayerMatchHistoryResponse = 7409;
|
|
154
|
+
k_EMsgGCToGCMatchmakingAddParty = 7410;
|
|
155
|
+
k_EMsgGCToGCMatchmakingRemoveParty = 7411;
|
|
156
|
+
k_EMsgGCToGCMatchmakingRemoveAllParties = 7412;
|
|
157
|
+
k_EMsgGCToGCMatchmakingMatchFound = 7413;
|
|
158
|
+
k_EMsgGCToGCUpdateMatchManagementStats = 7414;
|
|
159
|
+
k_EMsgGCToGCUpdateMatchmakingStats = 7415;
|
|
160
|
+
k_EMsgGCToServerPingRequest = 7416;
|
|
161
|
+
k_EMsgGCToServerPingResponse = 7417;
|
|
162
|
+
k_EMsgGCToServerEvaluateToxicChat = 7418;
|
|
163
|
+
k_EMsgServerToGCEvaluateToxicChat = 7419;
|
|
164
|
+
k_EMsgServerToGCEvaluateToxicChatResponse = 7420;
|
|
165
|
+
k_EMsgGCToGCProcessMatchLeaver = 7426;
|
|
166
|
+
k_EMsgGCNotificationsRequest = 7427;
|
|
167
|
+
k_EMsgGCNotificationsResponse = 7428;
|
|
168
|
+
k_EMsgGCToGCModifyNotification = 7429;
|
|
169
|
+
k_EMsgGCLeagueAdminList = 7434;
|
|
170
|
+
k_EMsgGCNotificationsMarkReadRequest = 7435;
|
|
171
|
+
k_EMsgServerToGCRequestBatchPlayerResources = 7450;
|
|
172
|
+
k_EMsgServerToGCRequestBatchPlayerResourcesResponse = 7451;
|
|
173
|
+
k_EMsgGCCompendiumSetSelectionResponse = 7453;
|
|
174
|
+
k_EMsgGCPlayerInfoSubmit = 7456;
|
|
175
|
+
k_EMsgGCPlayerInfoSubmitResponse = 7457;
|
|
176
|
+
k_EMsgGCToGCGetAccountLevel = 7458;
|
|
177
|
+
k_EMsgGCToGCGetAccountLevelResponse = 7459;
|
|
178
|
+
k_EMsgDOTAGetWeekendTourneySchedule = 7464;
|
|
179
|
+
k_EMsgDOTAWeekendTourneySchedule = 7465;
|
|
180
|
+
k_EMsgGCJoinableCustomGameModesRequest = 7466;
|
|
181
|
+
k_EMsgGCJoinableCustomGameModesResponse = 7467;
|
|
182
|
+
k_EMsgGCJoinableCustomLobbiesRequest = 7468;
|
|
183
|
+
k_EMsgGCJoinableCustomLobbiesResponse = 7469;
|
|
184
|
+
k_EMsgGCQuickJoinCustomLobby = 7470;
|
|
185
|
+
k_EMsgGCQuickJoinCustomLobbyResponse = 7471;
|
|
186
|
+
k_EMsgGCToGCGrantEventPointAction = 7472;
|
|
187
|
+
k_EMsgGCToGCSetCompendiumSelection = 7478;
|
|
188
|
+
k_EMsgGCHasItemQuery = 7484;
|
|
189
|
+
k_EMsgGCHasItemResponse = 7485;
|
|
190
|
+
k_EMsgGCToGCGrantEventPointActionMsg = 7488;
|
|
191
|
+
k_EMsgGCToGCGetCompendiumSelections = 7492;
|
|
192
|
+
k_EMsgGCToGCGetCompendiumSelectionsResponse = 7493;
|
|
193
|
+
k_EMsgServerToGCMatchConnectionStats = 7494;
|
|
194
|
+
k_EMsgGCToClientTournamentItemDrop = 7495;
|
|
195
|
+
k_EMsgSQLDelayedGrantLeagueDrop = 7496;
|
|
196
|
+
k_EMsgServerGCUpdateSpectatorCount = 7497;
|
|
197
|
+
k_EMsgGCToGCEmoticonUnlock = 7501;
|
|
198
|
+
k_EMsgSignOutDraftInfo = 7502;
|
|
199
|
+
k_EMsgClientToGCEmoticonDataRequest = 7503;
|
|
200
|
+
k_EMsgGCToClientEmoticonData = 7504;
|
|
201
|
+
k_EMsgGCPracticeLobbyToggleBroadcastChannelCameramanStatus = 7505;
|
|
202
|
+
k_EMsgDOTARedeemItem = 7518;
|
|
203
|
+
k_EMsgDOTARedeemItemResponse = 7519;
|
|
204
|
+
k_EMsgClientToGCGetAllHeroProgress = 7521;
|
|
205
|
+
k_EMsgClientToGCGetAllHeroProgressResponse = 7522;
|
|
206
|
+
k_EMsgGCToGCGetServerForClient = 7523;
|
|
207
|
+
k_EMsgGCToGCGetServerForClientResponse = 7524;
|
|
208
|
+
k_EMsgSQLProcessTournamentGameOutcome = 7525;
|
|
209
|
+
k_EMsgSQLGrantTrophyToAccount = 7526;
|
|
210
|
+
k_EMsgClientToGCGetTrophyList = 7527;
|
|
211
|
+
k_EMsgClientToGCGetTrophyListResponse = 7528;
|
|
212
|
+
k_EMsgGCToClientTrophyAwarded = 7529;
|
|
213
|
+
k_EMsgGCGameBotMatchSignOut = 7530;
|
|
214
|
+
k_EMsgGCGameBotMatchSignOutPermissionRequest = 7531;
|
|
215
|
+
k_EMsgSignOutBotInfo = 7532;
|
|
216
|
+
k_EMsgGCToGCUpdateProfileCards = 7533;
|
|
217
|
+
k_EMsgClientToGCGetProfileCard = 7534;
|
|
218
|
+
k_EMsgClientToGCGetProfileCardResponse = 7535;
|
|
219
|
+
k_EMsgClientToGCGetBattleReport = 7536;
|
|
220
|
+
k_EMsgClientToGCGetBattleReportResponse = 7537;
|
|
221
|
+
k_EMsgClientToGCSetProfileCardSlots = 7538;
|
|
222
|
+
k_EMsgGCToClientProfileCardUpdated = 7539;
|
|
223
|
+
k_EMsgServerToGCVictoryPredictions = 7540;
|
|
224
|
+
k_EMsgClientToGCGetBattleReportAggregateStats = 7541;
|
|
225
|
+
k_EMsgClientToGCGetBattleReportAggregateStatsResponse = 7542;
|
|
226
|
+
k_EMsgClientToGCGetBattleReportInfo = 7543;
|
|
227
|
+
k_EMsgClientToGCGetBattleReportInfoResponse = 7544;
|
|
228
|
+
k_EMsgSignOutCommunicationSummary = 7545;
|
|
229
|
+
k_EMsgServerToGCRequestStatus_Response = 7546;
|
|
230
|
+
k_EMsgClientToGCCreateHeroStatue = 7547;
|
|
231
|
+
k_EMsgGCToClientHeroStatueCreateResult = 7548;
|
|
232
|
+
k_EMsgGCGCToLANServerRelayConnect = 7549;
|
|
233
|
+
k_EMsgClientToGCAcknowledgeBattleReport = 7550;
|
|
234
|
+
k_EMsgClientToGCAcknowledgeBattleReportResponse = 7551;
|
|
235
|
+
k_EMsgClientToGCGetBattleReportMatchHistory = 7552;
|
|
236
|
+
k_EMsgClientToGCGetBattleReportMatchHistoryResponse = 7553;
|
|
237
|
+
k_EMsgServerToGCReportKillSummaries = 7554;
|
|
238
|
+
k_EMsgGCToGCUpdatePlayerPredictions = 7561;
|
|
239
|
+
k_EMsgGCToServerPredictionResult = 7562;
|
|
240
|
+
k_EMsgGCToGCReplayMonitorValidateReplay = 7569;
|
|
241
|
+
k_EMsgLobbyEventPoints = 7572;
|
|
242
|
+
k_EMsgGCToGCGetCustomGameTickets = 7573;
|
|
243
|
+
k_EMsgGCToGCGetCustomGameTicketsResponse = 7574;
|
|
244
|
+
k_EMsgGCToGCCustomGamePlayed = 7576;
|
|
245
|
+
k_EMsgGCToGCGrantEventPointsToUser = 7577;
|
|
246
|
+
k_EMsgGameserverCrashReport = 7579;
|
|
247
|
+
k_EMsgGameserverCrashReportResponse = 7580;
|
|
248
|
+
k_EMsgGCToClientSteamDatagramTicket = 7581;
|
|
249
|
+
k_EMsgGCToGCSendAccountsEventPoints = 7583;
|
|
250
|
+
k_EMsgClientToGCRerollPlayerChallenge = 7584;
|
|
251
|
+
k_EMsgServerToGCRerollPlayerChallenge = 7585;
|
|
252
|
+
k_EMsgGCRerollPlayerChallengeResponse = 7586;
|
|
253
|
+
k_EMsgSignOutUpdatePlayerChallenge = 7587;
|
|
254
|
+
k_EMsgClientToGCSetPartyLeader = 7588;
|
|
255
|
+
k_EMsgClientToGCCancelPartyInvites = 7589;
|
|
256
|
+
k_EMsgSQLGrantLeagueMatchToTicketHolders = 7592;
|
|
257
|
+
k_EMsgGCToGCEmoticonUnlockNoRollback = 7594;
|
|
258
|
+
k_EMsgClientToGCApplyGemCombiner = 7603;
|
|
259
|
+
k_EMsgClientToGCGetAllHeroOrder = 7606;
|
|
260
|
+
k_EMsgClientToGCGetAllHeroOrderResponse = 7607;
|
|
261
|
+
k_EMsgSQLGCToGCGrantBadgePoints = 7608;
|
|
262
|
+
k_EMsgGCToGCCheckOwnsEntireEmoticonRange = 7611;
|
|
263
|
+
k_EMsgGCToGCCheckOwnsEntireEmoticonRangeResponse = 7612;
|
|
264
|
+
k_EMsgGCToClientRequestLaneSelection = 7623;
|
|
265
|
+
k_EMsgGCToClientRequestLaneSelectionResponse = 7624;
|
|
266
|
+
k_EMsgServerToGCCavernCrawlIsHeroActive = 7625;
|
|
267
|
+
k_EMsgServerToGCCavernCrawlIsHeroActiveResponse = 7626;
|
|
268
|
+
k_EMsgClientToGCPlayerCardSpecificPurchaseRequest = 7627;
|
|
269
|
+
k_EMsgClientToGCPlayerCardSpecificPurchaseResponse = 7628;
|
|
270
|
+
k_EMsgGCtoServerTensorflowInstance = 7629;
|
|
271
|
+
k_EMsgSQLSetIsLeagueAdmin = 7630;
|
|
272
|
+
k_EMsgGCToGCGetLiveLeagueMatches = 7631;
|
|
273
|
+
k_EMsgGCToGCGetLiveLeagueMatchesResponse = 7632;
|
|
274
|
+
k_EMsgDOTALeagueInfoListAdminsRequest = 7633;
|
|
275
|
+
k_EMsgDOTALeagueInfoListAdminsReponse = 7634;
|
|
276
|
+
k_EMsgGCToGCLeagueMatchStarted = 7645;
|
|
277
|
+
k_EMsgGCToGCLeagueMatchCompleted = 7646;
|
|
278
|
+
k_EMsgGCToGCLeagueMatchStartedResponse = 7647;
|
|
279
|
+
k_EMsgDOTALeagueAvailableLobbyNodesRequest = 7650;
|
|
280
|
+
k_EMsgDOTALeagueAvailableLobbyNodes = 7651;
|
|
281
|
+
k_EMsgGCToGCLeagueRequest = 7652;
|
|
282
|
+
k_EMsgGCToGCLeagueResponse = 7653;
|
|
283
|
+
k_EMsgGCToGCLeagueNodeGroupRequest = 7654;
|
|
284
|
+
k_EMsgGCToGCLeagueNodeGroupResponse = 7655;
|
|
285
|
+
k_EMsgGCToGCLeagueNodeRequest = 7656;
|
|
286
|
+
k_EMsgGCToGCLeagueNodeResponse = 7657;
|
|
287
|
+
k_EMsgGCToGCRealtimeStatsTerseRequest = 7658;
|
|
288
|
+
k_EMsgGCToGCRealtimeStatsTerseResponse = 7659;
|
|
289
|
+
k_EMsgGCToGCGetTopMatchesRequest = 7660;
|
|
290
|
+
k_EMsgGCToGCGetTopMatchesResponse = 7661;
|
|
291
|
+
k_EMsgClientToGCGetFilteredPlayers = 7662;
|
|
292
|
+
k_EMsgGCToClientGetFilteredPlayersResponse = 7663;
|
|
293
|
+
k_EMsgClientToGCRemoveFilteredPlayer = 7664;
|
|
294
|
+
k_EMsgGCToClientRemoveFilteredPlayerResponse = 7665;
|
|
295
|
+
k_EMsgGCToClientPlayerBeaconState = 7666;
|
|
296
|
+
k_EMsgGCToClientPartyBeaconUpdate = 7667;
|
|
297
|
+
k_EMsgGCToClientPartySearchInvite = 7668;
|
|
298
|
+
k_EMsgClientToGCUpdatePartyBeacon = 7669;
|
|
299
|
+
k_EMsgClientToGCRequestActiveBeaconParties = 7670;
|
|
300
|
+
k_EMsgGCToClientRequestActiveBeaconPartiesResponse = 7671;
|
|
301
|
+
k_EMsgClientToGCManageFavorites = 7672;
|
|
302
|
+
k_EMsgGCToClientManageFavoritesResponse = 7673;
|
|
303
|
+
k_EMsgClientToGCJoinPartyFromBeacon = 7674;
|
|
304
|
+
k_EMsgGCToClientJoinPartyFromBeaconResponse = 7675;
|
|
305
|
+
k_EMsgClientToGCGetFavoritePlayers = 7676;
|
|
306
|
+
k_EMsgGCToClientGetFavoritePlayersResponse = 7677;
|
|
307
|
+
k_EMsgClientToGCVerifyFavoritePlayers = 7678;
|
|
308
|
+
k_EMsgGCToClientVerifyFavoritePlayersResponse = 7679;
|
|
309
|
+
k_EMsgGCToClientPartySearchInvites = 7680;
|
|
310
|
+
k_EMsgGCToClientRequestMMInfo = 7681;
|
|
311
|
+
k_EMsgClientToGCMMInfo = 7682;
|
|
312
|
+
k_EMsgSignOutTextMuteInfo = 7683;
|
|
313
|
+
k_EMsgClientToGCPurchaseLabyrinthBlessings = 7684;
|
|
314
|
+
k_EMsgClientToGCPurchaseLabyrinthBlessingsResponse = 7685;
|
|
315
|
+
k_EMsgClientToGCPurchaseFilteredPlayerSlot = 7686;
|
|
316
|
+
k_EMsgGCToClientPurchaseFilteredPlayerSlotResponse = 7687;
|
|
317
|
+
k_EMsgClientToGCUpdateFilteredPlayerNote = 7688;
|
|
318
|
+
k_EMsgGCToClientUpdateFilteredPlayerNoteResponse = 7689;
|
|
319
|
+
k_EMsgClientToGCClaimSwag = 7690;
|
|
320
|
+
k_EMsgGCToClientClaimSwagResponse = 7691;
|
|
321
|
+
k_EMsgServerToGCLockCharmTrading = 8004;
|
|
322
|
+
k_EMsgClientToGCPlayerStatsRequest = 8006;
|
|
323
|
+
k_EMsgGCToClientPlayerStatsResponse = 8007;
|
|
324
|
+
k_EMsgGCClearPracticeLobbyTeam = 8008;
|
|
325
|
+
k_EMsgClientToGCFindTopSourceTVGames = 8009;
|
|
326
|
+
k_EMsgGCToClientFindTopSourceTVGamesResponse = 8010;
|
|
327
|
+
k_EMsgGCLobbyList = 8011;
|
|
328
|
+
k_EMsgGCLobbyListResponse = 8012;
|
|
329
|
+
k_EMsgGCPlayerStatsMatchSignOut = 8013;
|
|
330
|
+
k_EMsgClientToGCSocialFeedPostCommentRequest = 8016;
|
|
331
|
+
k_EMsgGCToClientSocialFeedPostCommentResponse = 8017;
|
|
332
|
+
k_EMsgClientToGCCustomGamesFriendsPlayedRequest = 8018;
|
|
333
|
+
k_EMsgGCToClientCustomGamesFriendsPlayedResponse = 8019;
|
|
334
|
+
k_EMsgClientToGCFriendsPlayedCustomGameRequest = 8020;
|
|
335
|
+
k_EMsgGCToClientFriendsPlayedCustomGameResponse = 8021;
|
|
336
|
+
k_EMsgGCTopCustomGamesList = 8024;
|
|
337
|
+
k_EMsgClientToGCSetPartyOpen = 8029;
|
|
338
|
+
k_EMsgClientToGCMergePartyInvite = 8030;
|
|
339
|
+
k_EMsgGCToClientMergeGroupInviteReply = 8031;
|
|
340
|
+
k_EMsgClientToGCMergePartyResponse = 8032;
|
|
341
|
+
k_EMsgGCToClientMergePartyResponseReply = 8033;
|
|
342
|
+
k_EMsgClientToGCGetProfileCardStats = 8034;
|
|
343
|
+
k_EMsgClientToGCGetProfileCardStatsResponse = 8035;
|
|
344
|
+
k_EMsgClientToGCTopLeagueMatchesRequest = 8036;
|
|
345
|
+
k_EMsgClientToGCTopFriendMatchesRequest = 8037;
|
|
346
|
+
k_EMsgGCToClientProfileCardStatsUpdated = 8040;
|
|
347
|
+
k_EMsgServerToGCRealtimeStats = 8041;
|
|
348
|
+
k_EMsgGCToServerRealtimeStatsStartStop = 8042;
|
|
349
|
+
k_EMsgGCToGCGetServersForClients = 8045;
|
|
350
|
+
k_EMsgGCToGCGetServersForClientsResponse = 8046;
|
|
351
|
+
k_EMsgGCPracticeLobbyKickFromTeam = 8047;
|
|
352
|
+
k_EMsgDOTAChatGetMemberCount = 8048;
|
|
353
|
+
k_EMsgDOTAChatGetMemberCountResponse = 8049;
|
|
354
|
+
k_EMsgClientToGCSocialFeedPostMessageRequest = 8050;
|
|
355
|
+
k_EMsgGCToClientSocialFeedPostMessageResponse = 8051;
|
|
356
|
+
k_EMsgCustomGameListenServerStartedLoading = 8052;
|
|
357
|
+
k_EMsgCustomGameClientFinishedLoading = 8053;
|
|
358
|
+
k_EMsgGCPracticeLobbyCloseBroadcastChannel = 8054;
|
|
359
|
+
k_EMsgGCStartFindingMatchResponse = 8055;
|
|
360
|
+
k_EMsgSQLGCToGCGrantAccountFlag = 8057;
|
|
361
|
+
k_EMsgGCToClientTopLeagueMatchesResponse = 8061;
|
|
362
|
+
k_EMsgGCToClientTopFriendMatchesResponse = 8062;
|
|
363
|
+
k_EMsgClientToGCMatchesMinimalRequest = 8063;
|
|
364
|
+
k_EMsgClientToGCMatchesMinimalResponse = 8064;
|
|
365
|
+
k_EMsgGCToClientChatRegionsEnabled = 8067;
|
|
366
|
+
k_EMsgClientToGCPingData = 8068;
|
|
367
|
+
k_EMsgGCToGCEnsureAccountInParty = 8071;
|
|
368
|
+
k_EMsgGCToGCEnsureAccountInPartyResponse = 8072;
|
|
369
|
+
k_EMsgClientToGCGetProfileTickets = 8073;
|
|
370
|
+
k_EMsgClientToGCGetProfileTicketsResponse = 8074;
|
|
371
|
+
k_EMsgGCToClientMatchGroupsVersion = 8075;
|
|
372
|
+
k_EMsgClientToGCH264Unsupported = 8076;
|
|
373
|
+
k_EMsgClientToGCGetQuestProgress = 8078;
|
|
374
|
+
k_EMsgClientToGCGetQuestProgressResponse = 8079;
|
|
375
|
+
k_EMsgSignOutXPCoins = 8080;
|
|
376
|
+
k_EMsgGCToClientMatchSignedOut = 8081;
|
|
377
|
+
k_EMsgGCGetHeroStatsHistory = 8082;
|
|
378
|
+
k_EMsgGCGetHeroStatsHistoryResponse = 8083;
|
|
379
|
+
k_EMsgClientToGCPrivateChatInvite = 8084;
|
|
380
|
+
k_EMsgClientToGCPrivateChatKick = 8088;
|
|
381
|
+
k_EMsgClientToGCPrivateChatPromote = 8089;
|
|
382
|
+
k_EMsgClientToGCPrivateChatDemote = 8090;
|
|
383
|
+
k_EMsgGCToClientPrivateChatResponse = 8091;
|
|
384
|
+
k_EMsgClientToGCLatestConductScorecardRequest = 8095;
|
|
385
|
+
k_EMsgClientToGCLatestConductScorecard = 8096;
|
|
386
|
+
k_EMsgClientToGCWageringRequest = 8099;
|
|
387
|
+
k_EMsgGCToClientWageringResponse = 8100;
|
|
388
|
+
k_EMsgClientToGCEventGoalsRequest = 8103;
|
|
389
|
+
k_EMsgClientToGCEventGoalsResponse = 8104;
|
|
390
|
+
k_EMsgGCToGCLeaguePredictionsUpdate = 8108;
|
|
391
|
+
k_EMsgGCToGCAddUserToPostGameChat = 8110;
|
|
392
|
+
k_EMsgClientToGCHasPlayerVotedForMVP = 8111;
|
|
393
|
+
k_EMsgClientToGCHasPlayerVotedForMVPResponse = 8112;
|
|
394
|
+
k_EMsgClientToGCVoteForMVP = 8113;
|
|
395
|
+
k_EMsgClientToGCVoteForMVPResponse = 8114;
|
|
396
|
+
k_EMsgGCToGCGetEventOwnership = 8115;
|
|
397
|
+
k_EMsgGCToGCGetEventOwnershipResponse = 8116;
|
|
398
|
+
k_EMsgGCToClientAutomatedTournamentStateChange = 8117;
|
|
399
|
+
k_EMsgClientToGCWeekendTourneyOpts = 8118;
|
|
400
|
+
k_EMsgClientToGCWeekendTourneyOptsResponse = 8119;
|
|
401
|
+
k_EMsgClientToGCWeekendTourneyLeave = 8120;
|
|
402
|
+
k_EMsgClientToGCWeekendTourneyLeaveResponse = 8121;
|
|
403
|
+
k_EMsgClientToGCTeammateStatsRequest = 8124;
|
|
404
|
+
k_EMsgClientToGCTeammateStatsResponse = 8125;
|
|
405
|
+
k_EMsgClientToGCGetGiftPermissions = 8126;
|
|
406
|
+
k_EMsgClientToGCGetGiftPermissionsResponse = 8127;
|
|
407
|
+
k_EMsgClientToGCVoteForArcana = 8128;
|
|
408
|
+
k_EMsgClientToGCVoteForArcanaResponse = 8129;
|
|
409
|
+
k_EMsgClientToGCRequestArcanaVotesRemaining = 8130;
|
|
410
|
+
k_EMsgClientToGCRequestArcanaVotesRemainingResponse = 8131;
|
|
411
|
+
k_EMsgGCTransferTeamAdminResponse = 8132;
|
|
412
|
+
k_EMsgGCToClientTeamInfo = 8135;
|
|
413
|
+
k_EMsgGCToClientTeamsInfo = 8136;
|
|
414
|
+
k_EMsgClientToGCMyTeamInfoRequest = 8137;
|
|
415
|
+
k_EMsgClientToGCPublishUserStat = 8140;
|
|
416
|
+
k_EMsgGCToGCSignoutSpendWager = 8141;
|
|
417
|
+
k_EMsgGCSubmitLobbyMVPVote = 8144;
|
|
418
|
+
k_EMsgGCSubmitLobbyMVPVoteResponse = 8145;
|
|
419
|
+
k_EMsgSignOutCommunityGoalProgress = 8150;
|
|
420
|
+
k_EMsgGCToClientLobbyMVPAwarded = 8152;
|
|
421
|
+
k_EMsgGCToClientQuestProgressUpdated = 8153;
|
|
422
|
+
k_EMsgGCToClientWageringUpdate = 8154;
|
|
423
|
+
k_EMsgGCToClientArcanaVotesUpdate = 8155;
|
|
424
|
+
k_EMsgClientToGCSetSpectatorLobbyDetails = 8157;
|
|
425
|
+
k_EMsgClientToGCSetSpectatorLobbyDetailsResponse = 8158;
|
|
426
|
+
k_EMsgClientToGCCreateSpectatorLobby = 8159;
|
|
427
|
+
k_EMsgClientToGCCreateSpectatorLobbyResponse = 8160;
|
|
428
|
+
k_EMsgClientToGCSpectatorLobbyList = 8161;
|
|
429
|
+
k_EMsgClientToGCSpectatorLobbyListResponse = 8162;
|
|
430
|
+
k_EMsgSpectatorLobbyGameDetails = 8163;
|
|
431
|
+
k_EMsgServerToGCCompendiumInGamePredictionResults = 8166;
|
|
432
|
+
k_EMsgServerToGCCloseCompendiumInGamePredictionVoting = 8167;
|
|
433
|
+
k_EMsgClientToGCOpenPlayerCardPack = 8168;
|
|
434
|
+
k_EMsgClientToGCOpenPlayerCardPackResponse = 8169;
|
|
435
|
+
k_EMsgClientToGCSelectCompendiumInGamePrediction = 8170;
|
|
436
|
+
k_EMsgClientToGCSelectCompendiumInGamePredictionResponse = 8171;
|
|
437
|
+
k_EMsgClientToGCWeekendTourneyGetPlayerStats = 8172;
|
|
438
|
+
k_EMsgClientToGCWeekendTourneyGetPlayerStatsResponse = 8173;
|
|
439
|
+
k_EMsgClientToGCRecyclePlayerCard = 8174;
|
|
440
|
+
k_EMsgClientToGCRecyclePlayerCardResponse = 8175;
|
|
441
|
+
k_EMsgClientToGCCreatePlayerCardPack = 8176;
|
|
442
|
+
k_EMsgClientToGCCreatePlayerCardPackResponse = 8177;
|
|
443
|
+
k_EMsgClientToGCGetPlayerCardRosterRequest = 8178;
|
|
444
|
+
k_EMsgClientToGCGetPlayerCardRosterResponse = 8179;
|
|
445
|
+
k_EMsgClientToGCSetPlayerCardRosterRequest = 8180;
|
|
446
|
+
k_EMsgClientToGCSetPlayerCardRosterResponse = 8181;
|
|
447
|
+
k_EMsgServerToGCCloseCompendiumInGamePredictionVotingResponse = 8183;
|
|
448
|
+
k_EMsgLobbyBattleCupVictory = 8186;
|
|
449
|
+
k_EMsgGCGetPlayerCardItemInfo = 8187;
|
|
450
|
+
k_EMsgGCGetPlayerCardItemInfoResponse = 8188;
|
|
451
|
+
k_EMsgClientToGCRequestSteamDatagramTicket = 8189;
|
|
452
|
+
k_EMsgClientToGCRequestSteamDatagramTicketResponse = 8190;
|
|
453
|
+
k_EMsgGCToClientBattlePassRollupRequest = 8191;
|
|
454
|
+
k_EMsgGCToClientBattlePassRollupResponse = 8192;
|
|
455
|
+
k_EMsgClientToGCTransferSeasonalMMRRequest = 8193;
|
|
456
|
+
k_EMsgClientToGCTransferSeasonalMMRResponse = 8194;
|
|
457
|
+
k_EMsgGCToGCPublicChatCommunicationBan = 8195;
|
|
458
|
+
k_EMsgGCToGCUpdateAccountInfo = 8196;
|
|
459
|
+
k_EMsgGCChatReportPublicSpam = 8197;
|
|
460
|
+
k_EMsgClientToGCSetPartyBuilderOptions = 8198;
|
|
461
|
+
k_EMsgClientToGCSetPartyBuilderOptionsResponse = 8199;
|
|
462
|
+
k_EMsgGCToClientPlaytestStatus = 8200;
|
|
463
|
+
k_EMsgClientToGCJoinPlaytest = 8201;
|
|
464
|
+
k_EMsgClientToGCJoinPlaytestResponse = 8202;
|
|
465
|
+
k_EMsgLobbyPlaytestDetails = 8203;
|
|
466
|
+
k_EMsgDOTASetFavoriteTeam = 8204;
|
|
467
|
+
k_EMsgGCToClientBattlePassRollupListRequest = 8205;
|
|
468
|
+
k_EMsgGCToClientBattlePassRollupListResponse = 8206;
|
|
469
|
+
k_EMsgDOTAClaimEventAction = 8209;
|
|
470
|
+
k_EMsgDOTAClaimEventActionResponse = 8210;
|
|
471
|
+
k_EMsgDOTAGetPeriodicResource = 8211;
|
|
472
|
+
k_EMsgDOTAGetPeriodicResourceResponse = 8212;
|
|
473
|
+
k_EMsgDOTAPeriodicResourceUpdated = 8213;
|
|
474
|
+
k_EMsgServerToGCSpendWager = 8214;
|
|
475
|
+
k_EMsgGCToGCSignoutSpendWagerToken = 8215;
|
|
476
|
+
k_EMsgSubmitTriviaQuestionAnswer = 8216;
|
|
477
|
+
k_EMsgSubmitTriviaQuestionAnswerResponse = 8217;
|
|
478
|
+
k_EMsgClientToGCGiveTip = 8218;
|
|
479
|
+
k_EMsgClientToGCGiveTipResponse = 8219;
|
|
480
|
+
k_EMsgStartTriviaSession = 8220;
|
|
481
|
+
k_EMsgStartTriviaSessionResponse = 8221;
|
|
482
|
+
k_EMsgAnchorPhoneNumberRequest = 8222;
|
|
483
|
+
k_EMsgAnchorPhoneNumberResponse = 8223;
|
|
484
|
+
k_EMsgUnanchorPhoneNumberRequest = 8224;
|
|
485
|
+
k_EMsgUnanchorPhoneNumberResponse = 8225;
|
|
486
|
+
k_EMsgGCToGCSignoutSpendRankWager = 8229;
|
|
487
|
+
k_EMsgGCToGCGetFavoriteTeam = 8230;
|
|
488
|
+
k_EMsgGCToGCGetFavoriteTeamResponse = 8231;
|
|
489
|
+
k_EMsgSignOutEventGameData = 8232;
|
|
490
|
+
k_EMsgClientToGCQuickStatsRequest = 8238;
|
|
491
|
+
k_EMsgClientToGCQuickStatsResponse = 8239;
|
|
492
|
+
k_EMsgGCToGCSubtractEventPointsFromUser = 8240;
|
|
493
|
+
k_EMsgSelectionPriorityChoiceRequest = 8241;
|
|
494
|
+
k_EMsgSelectionPriorityChoiceResponse = 8242;
|
|
495
|
+
k_EMsgGCToGCCompendiumInGamePredictionResults = 8243;
|
|
496
|
+
k_EMsgGameAutographReward = 8244;
|
|
497
|
+
k_EMsgGameAutographRewardResponse = 8245;
|
|
498
|
+
k_EMsgDestroyLobbyRequest = 8246;
|
|
499
|
+
k_EMsgDestroyLobbyResponse = 8247;
|
|
500
|
+
k_EMsgPurchaseItemWithEventPoints = 8248;
|
|
501
|
+
k_EMsgPurchaseItemWithEventPointsResponse = 8249;
|
|
502
|
+
k_EMsgServerToGCMatchPlayerItemPurchaseHistory = 8250;
|
|
503
|
+
k_EMsgGCToGCGrantPlusHeroMatchResults = 8251;
|
|
504
|
+
k_EMsgServerToGCMatchStateHistory = 8255;
|
|
505
|
+
k_EMsgPurchaseHeroRandomRelic = 8258;
|
|
506
|
+
k_EMsgPurchaseHeroRandomRelicResponse = 8259;
|
|
507
|
+
k_EMsgClientToGCClaimEventActionUsingItem = 8260;
|
|
508
|
+
k_EMsgClientToGCClaimEventActionUsingItemResponse = 8261;
|
|
509
|
+
k_EMsgPartyReadyCheckRequest = 8262;
|
|
510
|
+
k_EMsgPartyReadyCheckResponse = 8263;
|
|
511
|
+
k_EMsgPartyReadyCheckAcknowledge = 8264;
|
|
512
|
+
k_EMsgGetRecentPlayTimeFriendsRequest = 8265;
|
|
513
|
+
k_EMsgGetRecentPlayTimeFriendsResponse = 8266;
|
|
514
|
+
k_EMsgGCToClientCommendNotification = 8267;
|
|
515
|
+
k_EMsgProfileRequest = 8268;
|
|
516
|
+
k_EMsgProfileResponse = 8269;
|
|
517
|
+
k_EMsgProfileUpdate = 8270;
|
|
518
|
+
k_EMsgProfileUpdateResponse = 8271;
|
|
519
|
+
k_EMsgHeroGlobalDataRequest = 8274;
|
|
520
|
+
k_EMsgHeroGlobalDataResponse = 8275;
|
|
521
|
+
k_EMsgClientToGCRequestPlusWeeklyChallengeResult = 8276;
|
|
522
|
+
k_EMsgClientToGCRequestPlusWeeklyChallengeResultResponse = 8277;
|
|
523
|
+
k_EMsgGCToGCGrantPlusPrepaidTime = 8278;
|
|
524
|
+
k_EMsgPrivateMetadataKeyRequest = 8279;
|
|
525
|
+
k_EMsgPrivateMetadataKeyResponse = 8280;
|
|
526
|
+
k_EMsgGCToGCReconcilePlusStatus = 8281;
|
|
527
|
+
k_EMsgGCToGCCheckPlusStatus = 8282;
|
|
528
|
+
k_EMsgGCToGCCheckPlusStatusResponse = 8283;
|
|
529
|
+
k_EMsgGCToGCReconcilePlusAutoGrantItems = 8284;
|
|
530
|
+
k_EMsgGCToGCReconcilePlusStatusUnreliable = 8285;
|
|
531
|
+
k_EMsgGCToClientCavernCrawlMapPathCompleted = 8288;
|
|
532
|
+
k_EMsgClientToGCCavernCrawlClaimRoom = 8289;
|
|
533
|
+
k_EMsgClientToGCCavernCrawlClaimRoomResponse = 8290;
|
|
534
|
+
k_EMsgClientToGCCavernCrawlUseItemOnRoom = 8291;
|
|
535
|
+
k_EMsgClientToGCCavernCrawlUseItemOnRoomResponse = 8292;
|
|
536
|
+
k_EMsgClientToGCCavernCrawlUseItemOnPath = 8293;
|
|
537
|
+
k_EMsgClientToGCCavernCrawlUseItemOnPathResponse = 8294;
|
|
538
|
+
k_EMsgClientToGCCavernCrawlRequestMapState = 8295;
|
|
539
|
+
k_EMsgClientToGCCavernCrawlRequestMapStateResponse = 8296;
|
|
540
|
+
k_EMsgSignOutTips = 8297;
|
|
541
|
+
k_EMsgClientToGCRequestEventPointLogV2 = 8298;
|
|
542
|
+
k_EMsgClientToGCRequestEventPointLogResponseV2 = 8299;
|
|
543
|
+
k_EMsgClientToGCRequestEventTipsSummary = 8300;
|
|
544
|
+
k_EMsgClientToGCRequestEventTipsSummaryResponse = 8301;
|
|
545
|
+
k_EMsgClientToGCRequestSocialFeed = 8303;
|
|
546
|
+
k_EMsgClientToGCRequestSocialFeedResponse = 8304;
|
|
547
|
+
k_EMsgClientToGCRequestSocialFeedComments = 8305;
|
|
548
|
+
k_EMsgClientToGCRequestSocialFeedCommentsResponse = 8306;
|
|
549
|
+
k_EMsgClientToGCCavernCrawlGetClaimedRoomCount = 8308;
|
|
550
|
+
k_EMsgClientToGCCavernCrawlGetClaimedRoomCountResponse = 8309;
|
|
551
|
+
k_EMsgGCToGCReconcilePlusAutoGrantItemsUnreliable = 8310;
|
|
552
|
+
k_EMsgServerToGCAddBroadcastTimelineEvent = 8311;
|
|
553
|
+
k_EMsgGCToServerUpdateSteamBroadcasting = 8312;
|
|
554
|
+
k_EMsgClientToGCRecordContestVote = 8313;
|
|
555
|
+
k_EMsgGCToClientRecordContestVoteResponse = 8314;
|
|
556
|
+
k_EMsgGCToGCGrantAutograph = 8315;
|
|
557
|
+
k_EMsgGCToGCGrantAutographResponse = 8316;
|
|
558
|
+
k_EMsgSignOutConsumableUsage = 8317;
|
|
559
|
+
k_EMsgLobbyEventGameDetails = 8318;
|
|
560
|
+
k_EMsgDevGrantEventPoints = 8319;
|
|
561
|
+
k_EMsgDevGrantEventPointsResponse = 8320;
|
|
562
|
+
k_EMsgDevGrantEventAction = 8321;
|
|
563
|
+
k_EMsgDevGrantEventActionResponse = 8322;
|
|
564
|
+
k_EMsgDevResetEventState = 8323;
|
|
565
|
+
k_EMsgDevResetEventStateResponse = 8324;
|
|
566
|
+
k_EMsgGCToGCReconcileEventOwnership = 8325;
|
|
567
|
+
k_EMsgConsumeEventSupportGrantItem = 8326;
|
|
568
|
+
k_EMsgConsumeEventSupportGrantItemResponse = 8327;
|
|
569
|
+
k_EMsgGCToClientClaimEventActionUsingItemCompleted = 8328;
|
|
570
|
+
k_EMsgGCToClientCavernCrawlMapUpdated = 8329;
|
|
571
|
+
k_EMsgServerToGCRequestPlayerRecentAccomplishments = 8330;
|
|
572
|
+
k_EMsgServerToGCRequestPlayerRecentAccomplishmentsResponse = 8331;
|
|
573
|
+
k_EMsgClientToGCRequestPlayerRecentAccomplishments = 8332;
|
|
574
|
+
k_EMsgClientToGCRequestPlayerRecentAccomplishmentsResponse = 8333;
|
|
575
|
+
k_EMsgClientToGCRequestPlayerHeroRecentAccomplishments = 8334;
|
|
576
|
+
k_EMsgClientToGCRequestPlayerHeroRecentAccomplishmentsResponse = 8335;
|
|
577
|
+
k_EMsgSignOutEventActionGrants = 8336;
|
|
578
|
+
k_EMsgClientToGCRequestPlayerCoachMatches = 8337;
|
|
579
|
+
k_EMsgClientToGCRequestPlayerCoachMatchesResponse = 8338;
|
|
580
|
+
k_EMsgClientToGCSubmitCoachTeammateRating = 8341;
|
|
581
|
+
k_EMsgClientToGCSubmitCoachTeammateRatingResponse = 8342;
|
|
582
|
+
k_EMsgGCToClientCoachTeammateRatingsChanged = 8343;
|
|
583
|
+
k_EMsgClientToGCRequestPlayerCoachMatch = 8345;
|
|
584
|
+
k_EMsgClientToGCRequestPlayerCoachMatchResponse = 8346;
|
|
585
|
+
k_EMsgClientToGCRequestContestVotes = 8347;
|
|
586
|
+
k_EMsgClientToGCRequestContestVotesResponse = 8348;
|
|
587
|
+
k_EMsgClientToGCMVPVoteTimeout = 8349;
|
|
588
|
+
k_EMsgClientToGCMVPVoteTimeoutResponse = 8350;
|
|
589
|
+
k_EMsgMatchMatchmakingStats = 8360;
|
|
590
|
+
k_EMsgClientToGCSubmitPlayerMatchSurvey = 8361;
|
|
591
|
+
k_EMsgClientToGCSubmitPlayerMatchSurveyResponse = 8362;
|
|
592
|
+
k_EMsgSQLGCToGCGrantAllHeroProgressAccount = 8363;
|
|
593
|
+
k_EMsgSQLGCToGCGrantAllHeroProgressVictory = 8364;
|
|
594
|
+
k_EMsgDevDeleteEventActions = 8365;
|
|
595
|
+
k_EMsgDevDeleteEventActionsResponse = 8366;
|
|
596
|
+
k_EMsgGCToGCGetAllHeroCurrent = 8635;
|
|
597
|
+
k_EMsgGCToGCGetAllHeroCurrentResponse = 8636;
|
|
598
|
+
k_EMsgGCSubmitPlayerAvoidRequest = 8637;
|
|
599
|
+
k_EMsgGCSubmitPlayerAvoidRequestResponse = 8638;
|
|
600
|
+
k_EMsgGCToClientNotificationsUpdated = 8639;
|
|
601
|
+
k_EMsgGCtoGCAssociatedExploiterAccountInfo = 8640;
|
|
602
|
+
k_EMsgGCtoGCAssociatedExploiterAccountInfoResponse = 8641;
|
|
603
|
+
k_EMsgGCtoGCRequestRecalibrationCheck = 8642;
|
|
604
|
+
k_EMsgGCToClientVACReminder = 8643;
|
|
605
|
+
k_EMsgClientToGCUnderDraftBuy = 8644;
|
|
606
|
+
k_EMsgClientToGCUnderDraftBuyResponse = 8645;
|
|
607
|
+
k_EMsgClientToGCUnderDraftReroll = 8646;
|
|
608
|
+
k_EMsgClientToGCUnderDraftRerollResponse = 8647;
|
|
609
|
+
k_EMsgNeutralItemStats = 8648;
|
|
610
|
+
k_EMsgClientToGCCreateGuild = 8649;
|
|
611
|
+
k_EMsgClientToGCCreateGuildResponse = 8650;
|
|
612
|
+
k_EMsgClientToGCSetGuildInfo = 8651;
|
|
613
|
+
k_EMsgClientToGCSetGuildInfoResponse = 8652;
|
|
614
|
+
k_EMsgClientToGCAddGuildRole = 8653;
|
|
615
|
+
k_EMsgClientToGCAddGuildRoleResponse = 8654;
|
|
616
|
+
k_EMsgClientToGCModifyGuildRole = 8655;
|
|
617
|
+
k_EMsgClientToGCModifyGuildRoleResponse = 8656;
|
|
618
|
+
k_EMsgClientToGCRemoveGuildRole = 8657;
|
|
619
|
+
k_EMsgClientToGCRemoveGuildRoleResponse = 8658;
|
|
620
|
+
k_EMsgClientToGCJoinGuild = 8659;
|
|
621
|
+
k_EMsgClientToGCJoinGuildResponse = 8660;
|
|
622
|
+
k_EMsgClientToGCLeaveGuild = 8661;
|
|
623
|
+
k_EMsgClientToGCLeaveGuildResponse = 8662;
|
|
624
|
+
k_EMsgClientToGCInviteToGuild = 8663;
|
|
625
|
+
k_EMsgClientToGCInviteToGuildResponse = 8664;
|
|
626
|
+
k_EMsgClientToGCDeclineInviteToGuild = 8665;
|
|
627
|
+
k_EMsgClientToGCDeclineInviteToGuildResponse = 8666;
|
|
628
|
+
k_EMsgClientToGCCancelInviteToGuild = 8667;
|
|
629
|
+
k_EMsgClientToGCCancelInviteToGuildResponse = 8668;
|
|
630
|
+
k_EMsgClientToGCKickGuildMember = 8669;
|
|
631
|
+
k_EMsgClientToGCKickGuildMemberResponse = 8670;
|
|
632
|
+
k_EMsgClientToGCSetGuildMemberRole = 8671;
|
|
633
|
+
k_EMsgClientToGCSetGuildMemberRoleResponse = 8672;
|
|
634
|
+
k_EMsgClientToGCRequestGuildData = 8673;
|
|
635
|
+
k_EMsgClientToGCRequestGuildDataResponse = 8674;
|
|
636
|
+
k_EMsgGCToClientGuildDataUpdated = 8675;
|
|
637
|
+
k_EMsgClientToGCRequestGuildMembership = 8676;
|
|
638
|
+
k_EMsgClientToGCRequestGuildMembershipResponse = 8677;
|
|
639
|
+
k_EMsgGCToClientGuildMembershipUpdated = 8678;
|
|
640
|
+
k_EMsgClientToGCAcceptInviteToGuild = 8681;
|
|
641
|
+
k_EMsgClientToGCAcceptInviteToGuildResponse = 8682;
|
|
642
|
+
k_EMsgClientToGCSetGuildRoleOrder = 8683;
|
|
643
|
+
k_EMsgClientToGCSetGuildRoleOrderResponse = 8684;
|
|
644
|
+
k_EMsgClientToGCRequestGuildFeed = 8685;
|
|
645
|
+
k_EMsgClientToGCRequestGuildFeedResponse = 8686;
|
|
646
|
+
k_EMsgClientToGCRequestAccountGuildEventData = 8687;
|
|
647
|
+
k_EMsgClientToGCRequestAccountGuildEventDataResponse = 8688;
|
|
648
|
+
k_EMsgGCToClientAccountGuildEventDataUpdated = 8689;
|
|
649
|
+
k_EMsgClientToGCRequestActiveGuildContracts = 8690;
|
|
650
|
+
k_EMsgClientToGCRequestActiveGuildContractsResponse = 8691;
|
|
651
|
+
k_EMsgGCToClientActiveGuildContractsUpdated = 8692;
|
|
652
|
+
k_EMsgGCToClientGuildFeedUpdated = 8693;
|
|
653
|
+
k_EMsgClientToGCSelectGuildContract = 8694;
|
|
654
|
+
k_EMsgClientToGCSelectGuildContractResponse = 8695;
|
|
655
|
+
k_EMsgGCToGCCompleteGuildContracts = 8696;
|
|
656
|
+
k_EMsgClientToGCAddPlayerToGuildChat = 8698;
|
|
657
|
+
k_EMsgClientToGCAddPlayerToGuildChatResponse = 8699;
|
|
658
|
+
k_EMsgClientToGCUnderDraftSell = 8700;
|
|
659
|
+
k_EMsgClientToGCUnderDraftSellResponse = 8701;
|
|
660
|
+
k_EMsgClientToGCUnderDraftRequest = 8702;
|
|
661
|
+
k_EMsgClientToGCUnderDraftResponse = 8703;
|
|
662
|
+
k_EMsgClientToGCUnderDraftRedeemReward = 8704;
|
|
663
|
+
k_EMsgClientToGCUnderDraftRedeemRewardResponse = 8705;
|
|
664
|
+
k_EMsgGCToServerLobbyHeroBanRates = 8708;
|
|
665
|
+
k_EMsgSignOutGuildContractProgress = 8711;
|
|
666
|
+
k_EMsgSignOutMVPStats = 8712;
|
|
667
|
+
k_EMsgClientToGCRequestActiveGuildChallenge = 8713;
|
|
668
|
+
k_EMsgClientToGCRequestActiveGuildChallengeResponse = 8714;
|
|
669
|
+
k_EMsgGCToClientActiveGuildChallengeUpdated = 8715;
|
|
670
|
+
k_EMsgClientToGCRequestReporterUpdates = 8716;
|
|
671
|
+
k_EMsgClientToGCRequestReporterUpdatesResponse = 8717;
|
|
672
|
+
k_EMsgClientToGCAcknowledgeReporterUpdates = 8718;
|
|
673
|
+
k_EMsgSignOutGuildChallengeProgress = 8720;
|
|
674
|
+
k_EMsgClientToGCRequestGuildEventMembers = 8721;
|
|
675
|
+
k_EMsgClientToGCRequestGuildEventMembersResponse = 8722;
|
|
676
|
+
k_EMsgClientToGCReportGuildContent = 8725;
|
|
677
|
+
k_EMsgClientToGCReportGuildContentResponse = 8726;
|
|
678
|
+
k_EMsgClientToGCRequestAccountGuildPersonaInfo = 8727;
|
|
679
|
+
k_EMsgClientToGCRequestAccountGuildPersonaInfoResponse = 8728;
|
|
680
|
+
k_EMsgClientToGCRequestAccountGuildPersonaInfoBatch = 8729;
|
|
681
|
+
k_EMsgClientToGCRequestAccountGuildPersonaInfoBatchResponse = 8730;
|
|
682
|
+
k_EMsgGCToClientUnderDraftGoldUpdated = 8731;
|
|
683
|
+
k_EMsgGCToServerRecordTrainingData = 8732;
|
|
684
|
+
k_EMsgSignOutBounties = 8733;
|
|
685
|
+
k_EMsgLobbyFeaturedGamemodeProgress = 8734;
|
|
686
|
+
k_EMsgLobbyGauntletProgress = 8735;
|
|
687
|
+
k_EMsgClientToGCSubmitDraftTriviaMatchAnswer = 8736;
|
|
688
|
+
k_EMsgClientToGCSubmitDraftTriviaMatchAnswerResponse = 8737;
|
|
689
|
+
k_EMsgGCToGCSignoutSpendBounty = 8738;
|
|
690
|
+
k_EMsgClientToGCApplyGauntletTicket = 8739;
|
|
691
|
+
k_EMsgClientToGCUnderDraftRollBackBench = 8740;
|
|
692
|
+
k_EMsgClientToGCUnderDraftRollBackBenchResponse = 8741;
|
|
693
|
+
k_EMsgGCToGCGetEventActionScore = 8742;
|
|
694
|
+
k_EMsgGCToGCGetEventActionScoreResponse = 8743;
|
|
695
|
+
k_EMsgServerToGCGetGuildContracts = 8744;
|
|
696
|
+
k_EMsgServerToGCGetGuildContractsResponse = 8745;
|
|
697
|
+
k_EMsgLobbyEventGameData = 8746;
|
|
698
|
+
k_EMsgGCToClientGuildMembersDataUpdated = 8747;
|
|
699
|
+
k_EMsgSignOutReportActivityMarkers = 8748;
|
|
700
|
+
k_EMsgSignOutDiretideCandy = 8749;
|
|
701
|
+
k_EMsgGCToClientPostGameItemAwardNotification = 8750;
|
|
702
|
+
k_EMsgClientToGCGetOWMatchDetails = 8751;
|
|
703
|
+
k_EMsgClientToGCGetOWMatchDetailsResponse = 8752;
|
|
704
|
+
k_EMsgClientToGCSubmitOWConviction = 8753;
|
|
705
|
+
k_EMsgClientToGCSubmitOWConvictionResponse = 8754;
|
|
706
|
+
k_EMsgGCToGCGetAccountSteamChina = 8755;
|
|
707
|
+
k_EMsgGCToGCGetAccountSteamChinaResponse = 8756;
|
|
708
|
+
k_EMsgClientToGCClaimLeaderboardRewards = 8757;
|
|
709
|
+
k_EMsgClientToGCClaimLeaderboardRewardsResponse = 8758;
|
|
710
|
+
k_EMsgClientToGCRecalibrateMMR = 8759;
|
|
711
|
+
k_EMsgClientToGCRecalibrateMMRResponse = 8760;
|
|
712
|
+
k_EMsgGCToGCGrantEventPointActionList = 8761;
|
|
713
|
+
k_EMsgClientToGCChinaSSAURLRequest = 8764;
|
|
714
|
+
k_EMsgClientToGCChinaSSAURLResponse = 8765;
|
|
715
|
+
k_EMsgClientToGCChinaSSAAcceptedRequest = 8766;
|
|
716
|
+
k_EMsgClientToGCChinaSSAAcceptedResponse = 8767;
|
|
717
|
+
k_EMsgSignOutOverwatchSuspicion = 8768;
|
|
718
|
+
k_EMsgServerToGCGetSuspicionConfig = 8769;
|
|
719
|
+
k_EMsgServerToGCGetSuspicionConfigResponse = 8770;
|
|
720
|
+
k_EMsgGCToGCGrantPlusHeroChallengeMatchResults = 8771;
|
|
721
|
+
k_EMsgGCToClientOverwatchCasesAvailable = 8772;
|
|
722
|
+
k_EMsgServerToGCAccountCheck = 8773;
|
|
723
|
+
k_EMsgClientToGCStartWatchingOverwatch = 8774;
|
|
724
|
+
k_EMsgClientToGCStopWatchingOverwatch = 8775;
|
|
725
|
+
k_EMsgSignOutPerfData = 8776;
|
|
726
|
+
k_EMsgClientToGCGetDPCFavorites = 8777;
|
|
727
|
+
k_EMsgClientToGCGetDPCFavoritesResponse = 8778;
|
|
728
|
+
k_EMsgClientToGCSetDPCFavoriteState = 8779;
|
|
729
|
+
k_EMsgClientToGCSetDPCFavoriteStateResponse = 8780;
|
|
730
|
+
k_EMsgClientToGCOverwatchReplayError = 8781;
|
|
731
|
+
k_EMsgServerToGCPlayerChallengeHistory = 8782;
|
|
732
|
+
k_EMsgSignOutBanData = 8783;
|
|
733
|
+
k_EMsgWebapiDPCSeasonResults = 8784;
|
|
734
|
+
k_EMsgClientToGCCoachFriend = 8785;
|
|
735
|
+
k_EMsgClientToGCCoachFriendResponse = 8786;
|
|
736
|
+
k_EMsgClientToGCRequestPrivateCoachingSession = 8787;
|
|
737
|
+
k_EMsgClientToGCRequestPrivateCoachingSessionResponse = 8788;
|
|
738
|
+
k_EMsgClientToGCAcceptPrivateCoachingSession = 8789;
|
|
739
|
+
k_EMsgClientToGCAcceptPrivateCoachingSessionResponse = 8790;
|
|
740
|
+
k_EMsgClientToGCLeavePrivateCoachingSession = 8791;
|
|
741
|
+
k_EMsgClientToGCLeavePrivateCoachingSessionResponse = 8792;
|
|
742
|
+
k_EMsgClientToGCGetCurrentPrivateCoachingSession = 8793;
|
|
743
|
+
k_EMsgClientToGCGetCurrentPrivateCoachingSessionResponse = 8794;
|
|
744
|
+
k_EMsgGCToClientPrivateCoachingSessionUpdated = 8795;
|
|
745
|
+
k_EMsgClientToGCSubmitPrivateCoachingSessionRating = 8796;
|
|
746
|
+
k_EMsgClientToGCSubmitPrivateCoachingSessionRatingResponse = 8797;
|
|
747
|
+
k_EMsgClientToGCGetAvailablePrivateCoachingSessions = 8798;
|
|
748
|
+
k_EMsgClientToGCGetAvailablePrivateCoachingSessionsResponse = 8799;
|
|
749
|
+
k_EMsgClientToGCGetAvailablePrivateCoachingSessionsSummary = 8800;
|
|
750
|
+
k_EMsgClientToGCGetAvailablePrivateCoachingSessionsSummaryResponse = 8801;
|
|
751
|
+
k_EMsgClientToGCJoinPrivateCoachingSessionLobby = 8802;
|
|
752
|
+
k_EMsgClientToGCJoinPrivateCoachingSessionLobbyResponse = 8803;
|
|
753
|
+
k_EMsgClientToGCRespondToCoachFriendRequest = 8804;
|
|
754
|
+
k_EMsgClientToGCRespondToCoachFriendRequestResponse = 8805;
|
|
755
|
+
k_EMsgClientToGCSetEventActiveSeasonID = 8806;
|
|
756
|
+
k_EMsgClientToGCSetEventActiveSeasonIDResponse = 8807;
|
|
757
|
+
k_EMsgServerToGCMatchPlayerNeutralItemEquipHistory = 8808;
|
|
758
|
+
k_EMsgServerToGCCompendiumChosenInGamePredictions = 8809;
|
|
759
|
+
k_EMsgClientToGCCreateTeamPlayerCardPack = 8810;
|
|
760
|
+
k_EMsgClientToGCCreateTeamPlayerCardPackResponse = 8811;
|
|
761
|
+
k_EMsgGCToServerSubmitCheerData = 8812;
|
|
762
|
+
k_EMsgGCToServerCheerConfig = 8813;
|
|
763
|
+
k_EMsgServerToGCGetCheerConfig = 8814;
|
|
764
|
+
k_EMsgServerToGCGetCheerConfigResponse = 8815;
|
|
765
|
+
k_EMsgGCToGCGrantAutographByID = 8816;
|
|
766
|
+
k_EMsgGCToServerCheerScalesOverride = 8817;
|
|
767
|
+
k_EMsgGCToServerGetCheerState = 8818;
|
|
768
|
+
k_EMsgServerToGCReportCheerState = 8819;
|
|
769
|
+
k_EMsgGCToServerScenarioSave = 8820;
|
|
770
|
+
k_EMsgGCToServerAbilityDraftLobbyData = 8821;
|
|
771
|
+
k_EMsgSignOutReportCommunications = 8822;
|
|
772
|
+
k_EMsgClientToGCBatchGetPlayerCardRosterRequest = 8823;
|
|
773
|
+
k_EMsgClientToGCBatchGetPlayerCardRosterResponse = 8824;
|
|
774
|
+
k_EMsgClientToGCGetStickerbookRequest = 8825;
|
|
775
|
+
k_EMsgClientToGCGetStickerbookResponse = 8826;
|
|
776
|
+
k_EMsgClientToGCCreateStickerbookPageRequest = 8827;
|
|
777
|
+
k_EMsgClientToGCCreateStickerbookPageResponse = 8828;
|
|
778
|
+
k_EMsgClientToGCDeleteStickerbookPageRequest = 8829;
|
|
779
|
+
k_EMsgClientToGCDeleteStickerbookPageResponse = 8830;
|
|
780
|
+
k_EMsgClientToGCPlaceStickersRequest = 8831;
|
|
781
|
+
k_EMsgClientToGCPlaceStickersResponse = 8832;
|
|
782
|
+
k_EMsgClientToGCPlaceCollectionStickersRequest = 8833;
|
|
783
|
+
k_EMsgClientToGCPlaceCollectionStickersResponse = 8834;
|
|
784
|
+
k_EMsgClientToGCOrderStickerbookTeamPageRequest = 8835;
|
|
785
|
+
k_EMsgClientToGCOrderStickerbookTeamPageResponse = 8836;
|
|
786
|
+
k_EMsgServerToGCGetStickerHeroes = 8837;
|
|
787
|
+
k_EMsgServerToGCGetStickerHeroesResponse = 8838;
|
|
788
|
+
k_EMsgClientToGCCandyShopGetUserData = 8840;
|
|
789
|
+
k_EMsgClientToGCCandyShopGetUserDataResponse = 8841;
|
|
790
|
+
k_EMsgGCToClientCandyShopUserDataUpdated = 8842;
|
|
791
|
+
k_EMsgClientToGCCandyShopPurchaseReward = 8843;
|
|
792
|
+
k_EMsgClientToGCCandyShopPurchaseRewardResponse = 8844;
|
|
793
|
+
k_EMsgClientToGCCandyShopDoExchange = 8845;
|
|
794
|
+
k_EMsgClientToGCCandyShopDoExchangeResponse = 8846;
|
|
795
|
+
k_EMsgClientToGCCandyShopDoVariableExchange = 8847;
|
|
796
|
+
k_EMsgClientToGCCandyShopDoVariableExchangeResponse = 8848;
|
|
797
|
+
k_EMsgClientToGCCandyShopRerollRewards = 8849;
|
|
798
|
+
k_EMsgClientToGCCandyShopRerollRewardsResponse = 8850;
|
|
799
|
+
k_EMsgClientToGCSetHeroSticker = 8851;
|
|
800
|
+
k_EMsgClientToGCSetHeroStickerResponse = 8852;
|
|
801
|
+
k_EMsgClientToGCGetHeroStickers = 8853;
|
|
802
|
+
k_EMsgClientToGCGetHeroStickersResponse = 8854;
|
|
803
|
+
k_EMsgClientToGCSetFavoritePage = 8855;
|
|
804
|
+
k_EMsgClientToGCSetFavoritePageResponse = 8856;
|
|
805
|
+
k_EMsgClientToGCCandyShopDevGrantCandy = 8857;
|
|
806
|
+
k_EMsgClientToGCCandyShopDevGrantCandyResponse = 8858;
|
|
807
|
+
k_EMsgClientToGCCandyShopDevClearInventory = 8859;
|
|
808
|
+
k_EMsgClientToGCCandyShopDevClearInventoryResponse = 8860;
|
|
809
|
+
k_EMsgClientToGCCandyShopOpenBags = 8861;
|
|
810
|
+
k_EMsgClientToGCCandyShopOpenBagsResponse = 8862;
|
|
811
|
+
k_EMsgClientToGCCandyShopDevGrantCandyBags = 8863;
|
|
812
|
+
k_EMsgClientToGCCandyShopDevGrantCandyBagsResponse = 8864;
|
|
813
|
+
k_EMsgClientToGCCandyShopDevShuffleExchange = 8865;
|
|
814
|
+
k_EMsgClientToGCCandyShopDevShuffleExchangeResponse = 8866;
|
|
815
|
+
k_EMsgClientToGCCandyShopDevGrantRerollCharges = 8867;
|
|
816
|
+
k_EMsgClientToGCCandyShopDevGrantRerollChargesResponse = 8868;
|
|
817
|
+
k_EMsgLobbyAdditionalAccountData = 8869;
|
|
818
|
+
k_EMsgServerToGCLobbyInitialized = 8870;
|
|
819
|
+
k_EMsgClientToGCCollectorsCacheAvailableDataRequest = 8871;
|
|
820
|
+
k_EMsgGCToClientCollectorsCacheAvailableDataResponse = 8872;
|
|
821
|
+
k_EMsgClientToGCUploadMatchClip = 8873;
|
|
822
|
+
k_EMsgGCToClientUploadMatchClipResponse = 8874;
|
|
823
|
+
k_EMsgGCToServerSetSteamLearnKeysChanged = 8876;
|
|
824
|
+
k_EMsgSignOutMuertaMinigame = 8877;
|
|
825
|
+
k_EMsgGCToServerLobbyHeroRoleStats = 8878;
|
|
826
|
+
k_EMsgClientToGCRankRequest = 8879;
|
|
827
|
+
k_EMsgGCToClientRankResponse = 8880;
|
|
828
|
+
k_EMsgGCToClientRankUpdate = 8881;
|
|
829
|
+
k_EMsgSignOutMapStats = 8882;
|
|
830
|
+
k_EMsgClientToGCMapStatsRequest = 8883;
|
|
831
|
+
k_EMsgGCToClientMapStatsResponse = 8884;
|
|
832
|
+
k_EMsgGCToServerSetSteamLearnInferencing = 8885;
|
|
833
|
+
k_EMsgClientToGCShowcaseGetUserData = 8886;
|
|
834
|
+
k_EMsgClientToGCShowcaseGetUserDataResponse = 8887;
|
|
835
|
+
k_EMsgClientToGCShowcaseSetUserData = 8888;
|
|
836
|
+
k_EMsgClientToGCShowcaseSetUserDataResponse = 8889;
|
|
837
|
+
k_EMsgClientToGCFantasyCraftingGetData = 8890;
|
|
838
|
+
k_EMsgClientToGCFantasyCraftingGetDataResponse = 8891;
|
|
839
|
+
k_EMsgClientToGCFantasyCraftingPerformOperation = 8892;
|
|
840
|
+
k_EMsgClientToGCFantasyCraftingPerformOperationResponse = 8893;
|
|
841
|
+
k_EMsgGCToClientFantasyCraftingGetDataUpdated = 8894;
|
|
842
|
+
k_EMsgClientToGCFantasyCraftingDevModifyTablet = 8895;
|
|
843
|
+
k_EMsgClientToGCFantasyCraftingDevModifyTabletResponse = 8896;
|
|
844
|
+
k_EMsgClientToGCRoadToTIGetQuests = 8897;
|
|
845
|
+
k_EMsgClientToGCRoadToTIGetQuestsResponse = 8898;
|
|
846
|
+
k_EMsgClientToGCRoadToTIGetActiveQuest = 8899;
|
|
847
|
+
k_EMsgClientToGCRoadToTIGetActiveQuestResponse = 8900;
|
|
848
|
+
k_EMsgClientToGCBingoGetUserData = 8901;
|
|
849
|
+
k_EMsgClientToGCBingoGetUserDataResponse = 8902;
|
|
850
|
+
k_EMsgClientToGCBingoClaimRow = 8903;
|
|
851
|
+
k_EMsgClientToGCBingoClaimRowResponse = 8904;
|
|
852
|
+
k_EMsgClientToGCBingoDevRerollCard = 8905;
|
|
853
|
+
k_EMsgClientToGCBingoDevRerollCardResponse = 8906;
|
|
854
|
+
k_EMsgClientToGCBingoGetStatsData = 8907;
|
|
855
|
+
k_EMsgClientToGCBingoGetStatsDataResponse = 8908;
|
|
856
|
+
k_EMsgGCToClientBingoUserDataUpdated = 8909;
|
|
857
|
+
k_EMsgGCToClientRoadToTIQuestDataUpdated = 8910;
|
|
858
|
+
k_EMsgClientToGCRoadToTIUseItem = 8911;
|
|
859
|
+
k_EMsgClientToGCRoadToTIUseItemResponse = 8912;
|
|
860
|
+
k_EMsgClientToGCShowcaseSubmitReport = 8913;
|
|
861
|
+
k_EMsgClientToGCShowcaseSubmitReportResponse = 8914;
|
|
862
|
+
k_EMsgClientToGCShowcaseAdminGetReportsRollupList = 8915;
|
|
863
|
+
k_EMsgClientToGCShowcaseAdminGetReportsRollupListResponse = 8916;
|
|
864
|
+
k_EMsgClientToGCShowcaseAdminGetReportsRollup = 8917;
|
|
865
|
+
k_EMsgClientToGCShowcaseAdminGetReportsRollupResponse = 8918;
|
|
866
|
+
k_EMsgClientToGCShowcaseAdminGetUserDetails = 8919;
|
|
867
|
+
k_EMsgClientToGCShowcaseAdminGetUserDetailsResponse = 8920;
|
|
868
|
+
k_EMsgClientToGCShowcaseAdminConvict = 8921;
|
|
869
|
+
k_EMsgClientToGCShowcaseAdminConvictResponse = 8922;
|
|
870
|
+
k_EMsgClientToGCShowcaseAdminExonerate = 8923;
|
|
871
|
+
k_EMsgClientToGCShowcaseAdminExonerateResponse = 8924;
|
|
872
|
+
k_EMsgClientToGCShowcaseAdminReset = 8925;
|
|
873
|
+
k_EMsgClientToGCShowcaseAdminResetResponse = 8926;
|
|
874
|
+
k_EMsgClientToGCShowcaseAdminLockAccount = 8927;
|
|
875
|
+
k_EMsgClientToGCShowcaseAdminLockAccountResponse = 8928;
|
|
876
|
+
k_EMsgClientToGCFantasyCraftingSelectPlayer = 8929;
|
|
877
|
+
k_EMsgClientToGCFantasyCraftingSelectPlayerResponse = 8930;
|
|
878
|
+
k_EMsgClientToGCFantasyCraftingGenerateTablets = 8931;
|
|
879
|
+
k_EMsgClientToGCFantasyCraftingGenerateTabletsResponse = 8932;
|
|
880
|
+
k_EMsgClientToGcFantasyCraftingUpgradeTablets = 8933;
|
|
881
|
+
k_EMsgClientToGcFantasyCraftingUpgradeTabletsResponse = 8934;
|
|
882
|
+
k_EMsgClientToGCFantasyCraftingRerollOptions = 8936;
|
|
883
|
+
k_EMsgClientToGCFantasyCraftingRerollOptionsResponse = 8937;
|
|
884
|
+
k_EMsgClientToGCRoadToTIDevForceQuest = 8935;
|
|
885
|
+
k_EMsgLobbyRoadToTIMatchQuestData = 8939;
|
|
886
|
+
k_EMsgClientToGCShowcaseModerationGetQueue = 8940;
|
|
887
|
+
k_EMsgClientToGCShowcaseModerationGetQueueResponse = 8941;
|
|
888
|
+
k_EMsgClientToGCShowcaseModerationApplyModeration = 8942;
|
|
889
|
+
k_EMsgClientToGCShowcaseModerationApplyModerationResponse = 8943;
|
|
890
|
+
}
|