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,1033 @@
|
|
|
1
|
+
import "steammessages.proto";
|
|
2
|
+
import "econ_shared_enums.proto";
|
|
3
|
+
|
|
4
|
+
option optimize_for = SPEED;
|
|
5
|
+
option cc_generic_services = false;
|
|
6
|
+
|
|
7
|
+
enum EGCItemMsg {
|
|
8
|
+
k_EMsgGCBase = 1000;
|
|
9
|
+
k_EMsgGCSetItemPosition = 1001;
|
|
10
|
+
k_EMsgGCDelete = 1004;
|
|
11
|
+
k_EMsgGCVerifyCacheSubscription = 1005;
|
|
12
|
+
k_EMsgClientToGCNameItem = 1006;
|
|
13
|
+
k_EMsgGCPaintItem = 1009;
|
|
14
|
+
k_EMsgGCPaintItemResponse = 1010;
|
|
15
|
+
k_EMsgGCGoldenWrenchBroadcast = 1011;
|
|
16
|
+
k_EMsgGCMOTDRequest = 1012;
|
|
17
|
+
k_EMsgGCMOTDRequestResponse = 1013;
|
|
18
|
+
k_EMsgGCAddItemToSocket_DEPRECATED = 1014;
|
|
19
|
+
k_EMsgGCAddItemToSocketResponse_DEPRECATED = 1015;
|
|
20
|
+
k_EMsgGCAddSocketToBaseItem_DEPRECATED = 1016;
|
|
21
|
+
k_EMsgGCAddSocketToItem_DEPRECATED = 1017;
|
|
22
|
+
k_EMsgGCAddSocketToItemResponse_DEPRECATED = 1018;
|
|
23
|
+
k_EMsgGCNameBaseItem = 1019;
|
|
24
|
+
k_EMsgGCNameBaseItemResponse = 1020;
|
|
25
|
+
k_EMsgGCRemoveSocketItem_DEPRECATED = 1021;
|
|
26
|
+
k_EMsgGCRemoveSocketItemResponse_DEPRECATED = 1022;
|
|
27
|
+
k_EMsgGCCustomizeItemTexture = 1023;
|
|
28
|
+
k_EMsgGCCustomizeItemTextureResponse = 1024;
|
|
29
|
+
k_EMsgGCUseItemRequest = 1025;
|
|
30
|
+
k_EMsgGCUseItemResponse = 1026;
|
|
31
|
+
k_EMsgGCGiftedItems = 1027;
|
|
32
|
+
k_EMsgGCRemoveItemName = 1030;
|
|
33
|
+
k_EMsgGCRemoveItemPaint = 1031;
|
|
34
|
+
k_EMsgGCUnwrapGiftRequest = 1037;
|
|
35
|
+
k_EMsgGCUnwrapGiftResponse = 1038;
|
|
36
|
+
k_EMsgGCSetItemStyle_DEPRECATED = 1039;
|
|
37
|
+
k_EMsgGCUsedClaimCodeItem = 1040;
|
|
38
|
+
k_EMsgGCSortItems = 1041;
|
|
39
|
+
k_EMsgGC_RevolvingLootList_DEPRECATED = 1042;
|
|
40
|
+
k_EMsgGCUpdateItemSchema = 1049;
|
|
41
|
+
k_EMsgGCRemoveCustomTexture = 1051;
|
|
42
|
+
k_EMsgGCRemoveCustomTextureResponse = 1052;
|
|
43
|
+
k_EMsgGCRemoveMakersMark = 1053;
|
|
44
|
+
k_EMsgGCRemoveMakersMarkResponse = 1054;
|
|
45
|
+
k_EMsgGCRemoveUniqueCraftIndex = 1055;
|
|
46
|
+
k_EMsgGCRemoveUniqueCraftIndexResponse = 1056;
|
|
47
|
+
k_EMsgGCSaxxyBroadcast = 1057;
|
|
48
|
+
k_EMsgGCBackpackSortFinished = 1058;
|
|
49
|
+
k_EMsgGCAdjustItemEquippedState = 1059;
|
|
50
|
+
k_EMsgGCCollectItem = 1061;
|
|
51
|
+
k_EMsgGCItemAcknowledged = 1062;
|
|
52
|
+
k_EMsgGCPresets_SelectPresetForClass = 1063;
|
|
53
|
+
k_EMsgGCPresets_SetItemPosition = 1064;
|
|
54
|
+
k_EMsgGCPresets_SelectPresetForClassReply = 1067;
|
|
55
|
+
k_EMsgClientToGCNameItemResponse = 1068;
|
|
56
|
+
k_EMsgGCApplyConsumableEffects = 1069;
|
|
57
|
+
k_EMsgGCShowItemsPickedUp = 1071;
|
|
58
|
+
k_EMsgGCClientDisplayNotification = 1072;
|
|
59
|
+
k_EMsgGCApplyStrangePart = 1073;
|
|
60
|
+
k_EMsgGC_IncrementKillCountResponse = 1075;
|
|
61
|
+
k_EMsgGCApplyPennantUpgrade = 1076;
|
|
62
|
+
k_EMsgGCSetItemPositions = 1077;
|
|
63
|
+
k_EMsgGCSetItemPositions_RateLimited = 1096;
|
|
64
|
+
k_EMsgGCApplyEggEssence = 1078;
|
|
65
|
+
k_EMsgGCNameEggEssenceResponse = 1079;
|
|
66
|
+
k_EMsgGCFulfillDynamicRecipeComponent = 1082;
|
|
67
|
+
k_EMsgGCFulfillDynamicRecipeComponentResponse = 1083;
|
|
68
|
+
k_EMsgGCClientRequestMarketData = 1084;
|
|
69
|
+
k_EMsgGCClientRequestMarketDataResponse = 1085;
|
|
70
|
+
k_EMsgGCExtractGems = 1086;
|
|
71
|
+
k_EMsgGCAddSocket = 1087;
|
|
72
|
+
k_EMsgGCAddItemToSocket = 1088;
|
|
73
|
+
k_EMsgGCAddItemToSocketResponse = 1089;
|
|
74
|
+
k_EMsgGCAddSocketResponse = 1090;
|
|
75
|
+
k_EMsgGCResetStrangeGemCount = 1091;
|
|
76
|
+
k_EMsgGCRequestCrateItems = 1092;
|
|
77
|
+
k_EMsgGCRequestCrateItemsResponse = 1093;
|
|
78
|
+
k_EMsgGCExtractGemsResponse = 1094;
|
|
79
|
+
k_EMsgGCResetStrangeGemCountResponse = 1095;
|
|
80
|
+
k_EMsgGCServerUseItemRequest = 1103;
|
|
81
|
+
k_EMsgGCAddGiftItem = 1104;
|
|
82
|
+
k_EMsgGCRemoveItemGiftMessage = 1105;
|
|
83
|
+
k_EMsgGCRemoveItemGiftMessageResponse = 1106;
|
|
84
|
+
k_EMsgGCRemoveItemGifterAccountId = 1107;
|
|
85
|
+
k_EMsgGCRemoveItemGifterAccountIdResponse = 1108;
|
|
86
|
+
k_EMsgClientToGCRemoveItemGifterAttributes = 1109;
|
|
87
|
+
k_EMsgClientToGCRemoveItemName = 1110;
|
|
88
|
+
k_EMsgClientToGCRemoveItemDescription = 1111;
|
|
89
|
+
k_EMsgClientToGCRemoveItemAttributeResponse = 1112;
|
|
90
|
+
k_EMsgGCTradingBase = 1500;
|
|
91
|
+
k_EMsgGCTrading_InitiateTradeRequest = 1501;
|
|
92
|
+
k_EMsgGCTrading_InitiateTradeResponse = 1502;
|
|
93
|
+
k_EMsgGCTrading_StartSession = 1503;
|
|
94
|
+
k_EMsgGCTrading_SessionClosed = 1509;
|
|
95
|
+
k_EMsgGCTrading_InitiateTradeRequestResponse = 1514;
|
|
96
|
+
k_EMsgGCServerBrowser_FavoriteServer = 1601;
|
|
97
|
+
k_EMsgGCServerBrowser_BlacklistServer = 1602;
|
|
98
|
+
k_EMsgGCServerRentalsBase = 1700;
|
|
99
|
+
k_EMsgGCDev_NewItemRequest = 2001;
|
|
100
|
+
k_EMsgGCDev_NewItemRequestResponse = 2002;
|
|
101
|
+
k_EMsgGCDev_UnlockAllItemStylesRequest = 2003;
|
|
102
|
+
k_EMsgGCDev_UnlockAllItemStylesResponse = 2004;
|
|
103
|
+
k_EMsgGCStorePurchaseFinalize = 2504;
|
|
104
|
+
k_EMsgGCStorePurchaseFinalizeResponse = 2505;
|
|
105
|
+
k_EMsgGCStorePurchaseCancel = 2506;
|
|
106
|
+
k_EMsgGCStorePurchaseCancelResponse = 2507;
|
|
107
|
+
k_EMsgGCStorePurchaseInit = 2510;
|
|
108
|
+
k_EMsgGCStorePurchaseInitResponse = 2511;
|
|
109
|
+
k_EMsgGCToGCBannedWordListUpdated = 2515;
|
|
110
|
+
k_EMsgGCToGCDirtySDOCache = 2516;
|
|
111
|
+
k_EMsgGCToGCDirtyMultipleSDOCache = 2517;
|
|
112
|
+
k_EMsgGCToGCUpdateSQLKeyValue = 2518;
|
|
113
|
+
k_EMsgGCToGCBroadcastConsoleCommand = 2521;
|
|
114
|
+
k_EMsgGCServerVersionUpdated = 2522;
|
|
115
|
+
k_EMsgGCApplyAutograph = 2523;
|
|
116
|
+
k_EMsgGCToGCWebAPIAccountChanged = 2524;
|
|
117
|
+
k_EMsgGCClientVersionUpdated = 2528;
|
|
118
|
+
k_EMsgGCItemPurgatory_FinalizePurchase = 2531;
|
|
119
|
+
k_EMsgGCItemPurgatory_FinalizePurchaseResponse = 2532;
|
|
120
|
+
k_EMsgGCItemPurgatory_RefundPurchase = 2533;
|
|
121
|
+
k_EMsgGCItemPurgatory_RefundPurchaseResponse = 2534;
|
|
122
|
+
k_EMsgGCToGCPlayerStrangeCountAdjustments = 2535;
|
|
123
|
+
k_EMsgGCRequestStoreSalesData = 2536;
|
|
124
|
+
k_EMsgGCRequestStoreSalesDataResponse = 2537;
|
|
125
|
+
k_EMsgGCRequestStoreSalesDataUpToDateResponse = 2538;
|
|
126
|
+
k_EMsgGCToGCPingRequest = 2539;
|
|
127
|
+
k_EMsgGCToGCPingResponse = 2540;
|
|
128
|
+
k_EMsgGCToGCGetUserSessionServer = 2541;
|
|
129
|
+
k_EMsgGCToGCGetUserSessionServerResponse = 2542;
|
|
130
|
+
k_EMsgGCToGCGetUserServerMembers = 2543;
|
|
131
|
+
k_EMsgGCToGCGetUserServerMembersResponse = 2544;
|
|
132
|
+
k_EMsgGCToGCGetUserPCBangNo = 2545;
|
|
133
|
+
k_EMsgGCToGCGetUserPCBangNoResponse = 2546;
|
|
134
|
+
k_EMsgGCToGCCanUseDropRateBonus = 2547;
|
|
135
|
+
k_EMsgSQLAddDropRateBonus = 2548;
|
|
136
|
+
k_EMsgGCToGCRefreshSOCache = 2549;
|
|
137
|
+
k_EMsgGCToGCApplyLocalizationDiff = 2550;
|
|
138
|
+
k_EMsgGCToGCApplyLocalizationDiffResponse = 2551;
|
|
139
|
+
k_EMsgGCToGCCheckAccountTradeStatus = 2552;
|
|
140
|
+
k_EMsgGCToGCCheckAccountTradeStatusResponse = 2553;
|
|
141
|
+
k_EMsgGCToGCGrantAccountRolledItems = 2554;
|
|
142
|
+
k_EMsgGCToGCGrantSelfMadeItemToAccount = 2555;
|
|
143
|
+
k_EMsgGCPartnerBalanceRequest = 2557;
|
|
144
|
+
k_EMsgGCPartnerBalanceResponse = 2558;
|
|
145
|
+
k_EMsgGCPartnerRechargeRedirectURLRequest = 2559;
|
|
146
|
+
k_EMsgGCPartnerRechargeRedirectURLResponse = 2560;
|
|
147
|
+
k_EMsgGCStatueCraft = 2561;
|
|
148
|
+
k_EMsgGCRedeemCode = 2562;
|
|
149
|
+
k_EMsgGCRedeemCodeResponse = 2563;
|
|
150
|
+
k_EMsgGCToGCItemConsumptionRollback = 2564;
|
|
151
|
+
k_EMsgClientToGCWrapAndDeliverGift = 2565;
|
|
152
|
+
k_EMsgClientToGCWrapAndDeliverGiftResponse = 2566;
|
|
153
|
+
k_EMsgClientToGCUnpackBundleResponse = 2567;
|
|
154
|
+
k_EMsgGCToClientStoreTransactionCompleted = 2568;
|
|
155
|
+
k_EMsgClientToGCEquipItems = 2569;
|
|
156
|
+
k_EMsgClientToGCEquipItemsResponse = 2570;
|
|
157
|
+
k_EMsgClientToGCUnlockItemStyle = 2571;
|
|
158
|
+
k_EMsgClientToGCUnlockItemStyleResponse = 2572;
|
|
159
|
+
k_EMsgClientToGCSetItemInventoryCategory = 2573;
|
|
160
|
+
k_EMsgClientToGCUnlockCrate = 2574;
|
|
161
|
+
k_EMsgClientToGCUnlockCrateResponse = 2575;
|
|
162
|
+
k_EMsgClientToGCUnpackBundle = 2576;
|
|
163
|
+
k_EMsgClientToGCSetItemStyle = 2577;
|
|
164
|
+
k_EMsgClientToGCSetItemStyleResponse = 2578;
|
|
165
|
+
k_EMsgSQLGCToGCGrantBackpackSlots = 2580;
|
|
166
|
+
k_EMsgClientToGCLookupAccountName = 2581;
|
|
167
|
+
k_EMsgClientToGCLookupAccountNameResponse = 2582;
|
|
168
|
+
k_EMsgGCToGCDevRevokeUserItems = 2583;
|
|
169
|
+
k_EMsgClientToGCCreateStaticRecipe = 2584;
|
|
170
|
+
k_EMsgClientToGCCreateStaticRecipeResponse = 2585;
|
|
171
|
+
k_EMsgGCToGCStoreProcessCDKeyTransaction = 2586;
|
|
172
|
+
k_EMsgGCToGCStoreProcessCDKeyTransactionResponse = 2587;
|
|
173
|
+
k_EMsgGCToGCStoreProcessSettlement = 2588;
|
|
174
|
+
k_EMsgGCToGCStoreProcessSettlementResponse = 2589;
|
|
175
|
+
k_EMsgGCToGCConsoleOutput = 2590;
|
|
176
|
+
k_EMsgGCToClientItemAges = 2591;
|
|
177
|
+
k_EMsgGCToGCInternalTestMsg = 2592;
|
|
178
|
+
k_EMsgGCToGCClientServerVersionsUpdated = 2593;
|
|
179
|
+
k_EMsgGCUseMultipleItemsRequest = 2594;
|
|
180
|
+
k_EMsgGCGetAccountSubscriptionItem = 2595;
|
|
181
|
+
k_EMsgGCGetAccountSubscriptionItemResponse = 2596;
|
|
182
|
+
k_EMsgGCToGCBroadcastMessageFromSub = 2598;
|
|
183
|
+
k_EMsgGCToClientCurrencyPricePoints = 2599;
|
|
184
|
+
k_EMsgGCToGCAddSubscriptionTime = 2600;
|
|
185
|
+
k_EMsgGCToGCFlushSteamInventoryCache = 2601;
|
|
186
|
+
k_EMsgGCRequestCrateEscalationLevel = 2602;
|
|
187
|
+
k_EMsgGCRequestCrateEscalationLevelResponse = 2603;
|
|
188
|
+
k_EMsgGCToGCUpdateSubscriptionItems = 2604;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
enum EItemPurgatoryResponse_Finalize {
|
|
192
|
+
k_ItemPurgatoryResponse_Finalize_Succeeded = 0;
|
|
193
|
+
k_ItemPurgatoryResponse_Finalize_Failed_Incomplete = 1;
|
|
194
|
+
k_ItemPurgatoryResponse_Finalize_Failed_ItemsNotInPurgatory = 2;
|
|
195
|
+
k_ItemPurgatoryResponse_Finalize_Failed_CouldNotFindItems = 3;
|
|
196
|
+
k_ItemPurgatoryResponse_Finalize_Failed_NoSOCache = 4;
|
|
197
|
+
k_ItemPurgatoryResponse_Finalize_BackpackFull = 5;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
enum EItemPurgatoryResponse_Refund {
|
|
201
|
+
k_ItemPurgatoryResponse_Refund_Succeeded = 0;
|
|
202
|
+
k_ItemPurgatoryResponse_Refund_Failed_ItemNotInPurgatory = 1;
|
|
203
|
+
k_ItemPurgatoryResponse_Refund_Failed_CouldNotFindItem = 2;
|
|
204
|
+
k_ItemPurgatoryResponse_Refund_Failed_NoSOCache = 3;
|
|
205
|
+
k_ItemPurgatoryResponse_Refund_Failed_NoDetail = 4;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
enum EGCMsgInitiateTradeResponse {
|
|
209
|
+
k_EGCMsgInitiateTradeResponse_Accepted = 0;
|
|
210
|
+
k_EGCMsgInitiateTradeResponse_Declined = 1;
|
|
211
|
+
k_EGCMsgInitiateTradeResponse_VAC_Banned_Initiator = 2;
|
|
212
|
+
k_EGCMsgInitiateTradeResponse_VAC_Banned_Target = 3;
|
|
213
|
+
k_EGCMsgInitiateTradeResponse_Target_Already_Trading = 4;
|
|
214
|
+
k_EGCMsgInitiateTradeResponse_Disabled = 5;
|
|
215
|
+
k_EGCMsgInitiateTradeResponse_NotLoggedIn = 6;
|
|
216
|
+
k_EGCMsgInitiateTradeResponse_Cancel = 7;
|
|
217
|
+
k_EGCMsgInitiateTradeResponse_TooSoon = 8;
|
|
218
|
+
k_EGCMsgInitiateTradeResponse_TooSoonPenalty = 9;
|
|
219
|
+
k_EGCMsgInitiateTradeResponse_Trade_Banned_Initiator = 10;
|
|
220
|
+
k_EGCMsgInitiateTradeResponse_Trade_Banned_Target = 11;
|
|
221
|
+
k_EGCMsgInitiateTradeResponse_Free_Account_Initiator_DEPRECATED = 12;
|
|
222
|
+
k_EGCMsgInitiateTradeResponse_Shared_Account_Initiator = 13;
|
|
223
|
+
k_EGCMsgInitiateTradeResponse_Service_Unavailable = 14;
|
|
224
|
+
k_EGCMsgInitiateTradeResponse_Target_Blocked = 15;
|
|
225
|
+
k_EGCMsgInitiateTradeResponse_NeedVerifiedEmail = 16;
|
|
226
|
+
k_EGCMsgInitiateTradeResponse_NeedSteamGuard = 17;
|
|
227
|
+
k_EGCMsgInitiateTradeResponse_SteamGuardDuration = 18;
|
|
228
|
+
k_EGCMsgInitiateTradeResponse_TheyCannotTrade = 19;
|
|
229
|
+
k_EGCMsgInitiateTradeResponse_Recent_Password_Reset = 20;
|
|
230
|
+
k_EGCMsgInitiateTradeResponse_Using_New_Device = 21;
|
|
231
|
+
k_EGCMsgInitiateTradeResponse_Sent_Invalid_Cookie = 22;
|
|
232
|
+
k_EGCMsgInitiateTradeResponse_TooRecentFriend = 23;
|
|
233
|
+
k_EGCMsgInitiateTradeResponse_WalledFundsNotTrusted = 24;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
message CMsgApplyAutograph {
|
|
237
|
+
optional uint64 autograph_item_id = 1;
|
|
238
|
+
optional uint64 item_item_id = 2;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
message CMsgAdjustItemEquippedState {
|
|
242
|
+
optional uint64 item_id = 1;
|
|
243
|
+
optional uint32 new_class = 2;
|
|
244
|
+
optional uint32 new_slot = 3;
|
|
245
|
+
optional uint32 style_index = 4;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
message CMsgEconPlayerStrangeCountAdjustment {
|
|
249
|
+
message CStrangeCountAdjustment {
|
|
250
|
+
optional uint32 event_type = 1;
|
|
251
|
+
optional uint64 item_id = 2;
|
|
252
|
+
optional uint32 adjustment = 3;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
optional uint32 account_id = 1;
|
|
256
|
+
repeated .CMsgEconPlayerStrangeCountAdjustment.CStrangeCountAdjustment strange_count_adjustments = 2;
|
|
257
|
+
optional bool turbo_mode = 3;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
message CMsgRequestItemPurgatory_FinalizePurchase {
|
|
261
|
+
repeated uint64 item_ids = 1;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
message CMsgRequestItemPurgatory_FinalizePurchaseResponse {
|
|
265
|
+
optional uint32 result = 1;
|
|
266
|
+
repeated uint64 item_ids = 2;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
message CMsgRequestItemPurgatory_RefundPurchase {
|
|
270
|
+
repeated uint64 item_ids = 1;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
message CMsgRequestItemPurgatory_RefundPurchaseResponse {
|
|
274
|
+
optional uint32 result = 1;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
message CMsgCraftingResponse {
|
|
278
|
+
repeated uint64 item_ids = 1;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
message CMsgGCRequestStoreSalesData {
|
|
282
|
+
optional uint32 version = 1;
|
|
283
|
+
optional uint32 currency = 2;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
message CMsgGCRequestStoreSalesDataResponse {
|
|
287
|
+
message Price {
|
|
288
|
+
optional uint32 item_def = 1;
|
|
289
|
+
optional uint32 price = 2;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
repeated .CMsgGCRequestStoreSalesDataResponse.Price sale_price = 1;
|
|
293
|
+
optional uint32 version = 2;
|
|
294
|
+
optional uint32 expiration_time = 3;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
message CMsgGCRequestStoreSalesDataUpToDateResponse {
|
|
298
|
+
optional uint32 version = 1;
|
|
299
|
+
optional uint32 expiration_time = 2;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
message CMsgGCToGCPingRequest {
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
message CMsgGCToGCPingResponse {
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
message CMsgGCToGCGetUserSessionServer {
|
|
309
|
+
optional uint32 account_id = 1;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
message CMsgGCToGCGetUserSessionServerResponse {
|
|
313
|
+
optional fixed64 server_steam_id = 1;
|
|
314
|
+
optional bool is_online = 2;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
message CMsgGCToGCGetUserServerMembers {
|
|
318
|
+
optional uint32 account_id = 1;
|
|
319
|
+
optional uint32 max_spectators = 2;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
message CMsgGCToGCGetUserServerMembersResponse {
|
|
323
|
+
repeated uint32 member_account_id = 1;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
message CMsgLookupMultipleAccountNames {
|
|
327
|
+
repeated uint32 accountids = 1 [packed = true];
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
message CMsgLookupMultipleAccountNamesResponse {
|
|
331
|
+
message Account {
|
|
332
|
+
optional uint32 accountid = 1;
|
|
333
|
+
optional string persona = 2;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
repeated .CMsgLookupMultipleAccountNamesResponse.Account accounts = 1;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
message CMsgRequestCrateItems {
|
|
340
|
+
optional uint32 crate_item_def = 1;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
message CMsgRequestCrateItemsResponse {
|
|
344
|
+
enum EResult {
|
|
345
|
+
k_Succeeded = 0;
|
|
346
|
+
k_Failed = 1;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
optional uint32 response = 1;
|
|
350
|
+
repeated uint32 item_defs = 2;
|
|
351
|
+
repeated uint32 peek_item_defs = 3;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
message CMsgRequestCrateEscalationLevel {
|
|
355
|
+
optional uint32 crate_item_def = 1;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
message CMsgRequestCrateEscalationLevelResponse {
|
|
359
|
+
enum EResult {
|
|
360
|
+
k_Succeeded = 0;
|
|
361
|
+
k_Failed = 1;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
optional uint32 response = 1;
|
|
365
|
+
optional uint32 escalation_level0 = 2;
|
|
366
|
+
optional uint32 escalation_level1 = 3;
|
|
367
|
+
optional uint32 escalation_level2 = 4;
|
|
368
|
+
optional uint32 escalation_level3 = 5;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
message CMsgGCToGCCanUseDropRateBonus {
|
|
372
|
+
optional uint32 account_id = 1;
|
|
373
|
+
optional float drop_rate_bonus = 2;
|
|
374
|
+
optional uint32 booster_type = 3;
|
|
375
|
+
optional uint32 exclusive_item_def = 4;
|
|
376
|
+
optional bool allow_equal_rate = 5;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
message CMsgSQLAddDropRateBonus {
|
|
380
|
+
optional uint32 account_id = 1;
|
|
381
|
+
optional uint64 item_id = 2;
|
|
382
|
+
optional uint32 item_def = 3;
|
|
383
|
+
optional float drop_rate_bonus = 4;
|
|
384
|
+
optional uint32 booster_type = 5;
|
|
385
|
+
optional uint32 seconds_duration = 6;
|
|
386
|
+
optional uint32 end_time_stamp = 7;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
message CMsgSQLUpgradeBattleBooster {
|
|
390
|
+
optional uint32 account_id = 1;
|
|
391
|
+
optional uint32 item_def = 2;
|
|
392
|
+
optional float bonus_to_add = 3;
|
|
393
|
+
optional uint32 booster_type = 4;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
message CMsgGCToGCRefreshSOCache {
|
|
397
|
+
optional uint32 account_id = 1;
|
|
398
|
+
optional bool reload = 2;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
message CMsgGCToGCCheckAccountTradeStatus {
|
|
402
|
+
optional uint32 account_id = 1;
|
|
403
|
+
optional bool initiator = 2;
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
message CMsgGCToGCCheckAccountTradeStatusResponse {
|
|
407
|
+
optional bool can_trade = 1;
|
|
408
|
+
optional uint32 error_code = 2;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
message CMsgGCToGCAddSubscriptionTime {
|
|
412
|
+
optional uint32 account_id = 1;
|
|
413
|
+
repeated uint32 matching_subscription_def_indexes = 2;
|
|
414
|
+
optional uint32 additional_seconds = 3;
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
message CMsgGCToGCGrantAccountRolledItems {
|
|
418
|
+
message Item {
|
|
419
|
+
message DynamicAttribute {
|
|
420
|
+
optional string name = 1;
|
|
421
|
+
optional uint32 value_uint32 = 2;
|
|
422
|
+
optional float value_float = 3;
|
|
423
|
+
optional string value_string = 4;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
message AdditionalAuditEntry {
|
|
427
|
+
optional uint32 owner_account_id = 1;
|
|
428
|
+
optional uint32 audit_action = 2;
|
|
429
|
+
optional uint64 audit_data = 3;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
optional uint32 item_def = 1;
|
|
433
|
+
repeated string loot_lists = 2;
|
|
434
|
+
optional bool ignore_limit = 3;
|
|
435
|
+
optional uint32 origin = 4;
|
|
436
|
+
repeated .CMsgGCToGCGrantAccountRolledItems.Item.DynamicAttribute dynamic_attributes = 5;
|
|
437
|
+
repeated .CMsgGCToGCGrantAccountRolledItems.Item.AdditionalAuditEntry additional_audit_entries = 6;
|
|
438
|
+
optional uint32 inventory_token = 7;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
optional uint32 account_id = 1;
|
|
442
|
+
repeated .CMsgGCToGCGrantAccountRolledItems.Item items = 2;
|
|
443
|
+
optional uint32 audit_action = 3;
|
|
444
|
+
optional uint64 audit_data = 4;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
message CMsgGCToGCGrantSelfMadeItemToAccount {
|
|
448
|
+
optional uint32 item_def_index = 1;
|
|
449
|
+
optional uint32 accountid = 2;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
message CMsgUseItem {
|
|
453
|
+
optional uint64 item_id = 1;
|
|
454
|
+
optional fixed64 target_steam_id = 2;
|
|
455
|
+
repeated uint32 gift__potential_targets = 3;
|
|
456
|
+
optional uint32 duel__class_lock = 4;
|
|
457
|
+
optional uint64 initiator_steam_id = 5;
|
|
458
|
+
optional bool itempack__ack_immediately = 6;
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
message CMsgServerUseItem {
|
|
462
|
+
optional uint32 initiator_account_id = 1;
|
|
463
|
+
optional .CMsgUseItem use_item_msg = 2;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
message CMsgUseMultipleItems {
|
|
467
|
+
repeated uint64 item_ids = 1;
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
message CMsgGCPartnerBalanceRequest {
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
message CMsgGCPartnerBalanceResponse {
|
|
474
|
+
optional .EGCPartnerRequestResponse result = 1 [default = k_EPartnerRequestOK];
|
|
475
|
+
optional uint32 balance = 2;
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
message CGCStoreRechargeRedirect_LineItem {
|
|
479
|
+
optional uint32 item_def_id = 1;
|
|
480
|
+
optional uint32 quantity = 2;
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
message CMsgGCPartnerRechargeRedirectURLRequest {
|
|
484
|
+
repeated .CGCStoreRechargeRedirect_LineItem line_items = 1;
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
message CMsgGCPartnerRechargeRedirectURLResponse {
|
|
488
|
+
optional .EGCPartnerRequestResponse result = 1 [default = k_EPartnerRequestOK];
|
|
489
|
+
optional string url = 2;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
message CMsgGCEconSQLWorkItemEmbeddedRollbackData {
|
|
493
|
+
optional uint32 account_id = 1;
|
|
494
|
+
optional uint64 deleted_item_id = 2;
|
|
495
|
+
optional uint32 old_audit_action = 3;
|
|
496
|
+
optional uint32 new_audit_action = 4;
|
|
497
|
+
optional uint32 expected_audit_action = 5;
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
message CMsgCraftStatue {
|
|
501
|
+
optional uint32 heroid = 1;
|
|
502
|
+
optional string sequencename = 2;
|
|
503
|
+
optional float cycle = 3;
|
|
504
|
+
optional string description = 4;
|
|
505
|
+
optional uint32 pedestal_itemdef = 5;
|
|
506
|
+
optional uint64 toolid = 6;
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
message CMsgRedeemCode {
|
|
510
|
+
optional string code = 1;
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
message CMsgRedeemCodeResponse {
|
|
514
|
+
enum EResultCode {
|
|
515
|
+
k_Succeeded = 0;
|
|
516
|
+
k_Failed_CodeNotFound = 1;
|
|
517
|
+
k_Failed_CodeAlreadyUsed = 2;
|
|
518
|
+
k_Failed_OtherError = 3;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
optional uint32 response = 1;
|
|
522
|
+
optional uint64 item_id = 2;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
message CMsgDevNewItemRequest {
|
|
526
|
+
optional string item_def_name = 3;
|
|
527
|
+
optional string loot_list_name = 4;
|
|
528
|
+
repeated string attr_def_name = 5;
|
|
529
|
+
repeated string attr_value = 6;
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
message CMsgDevNewItemRequestResponse {
|
|
533
|
+
optional bool success = 1;
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
message CMsgDevUnlockAllItemStyles {
|
|
537
|
+
optional uint64 item_id = 1;
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
message CMsgDevUnlockAllItemStylesResponse {
|
|
541
|
+
optional bool success = 1;
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
message CMsgGCGetAccountSubscriptionItem {
|
|
545
|
+
optional uint32 account_id = 1;
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
message CMsgGCGetAccountSubscriptionItemResponse {
|
|
549
|
+
optional uint32 def_index = 1;
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
message CMsgGCAddGiftItem {
|
|
553
|
+
optional uint32 account_id = 1;
|
|
554
|
+
optional uint64 item_id = 2;
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
message CMsgClientToGCWrapAndDeliverGift {
|
|
558
|
+
optional uint64 item_id = 1;
|
|
559
|
+
optional uint32 give_to_account_id = 2;
|
|
560
|
+
optional string gift_message = 3;
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
message CMsgClientToGCWrapAndDeliverGiftResponse {
|
|
564
|
+
optional .EGCMsgResponse response = 1 [default = k_EGCMsgResponseOK];
|
|
565
|
+
optional uint32 gifting_charge_uses = 2;
|
|
566
|
+
optional int32 gifting_charge_max = 3;
|
|
567
|
+
optional uint32 gifting_uses = 4;
|
|
568
|
+
optional int32 gifting_max = 5;
|
|
569
|
+
optional uint32 gifting_window_hours = 6;
|
|
570
|
+
optional .EGCMsgInitiateTradeResponse trade_restriction = 7 [default = k_EGCMsgInitiateTradeResponse_Accepted];
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
message CMsgClientToGCUnwrapGift {
|
|
574
|
+
optional uint64 item_id = 1;
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
message CMsgClientToGCGetGiftPermissions {
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
message CMsgClientToGCGetGiftPermissionsResponse {
|
|
581
|
+
message FriendPermission {
|
|
582
|
+
optional uint32 account_id = 1;
|
|
583
|
+
optional .EGCMsgInitiateTradeResponse permission = 2 [default = k_EGCMsgInitiateTradeResponse_Accepted];
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
optional bool is_unlimited = 1;
|
|
587
|
+
optional bool has_two_factor = 3;
|
|
588
|
+
optional .EGCMsgInitiateTradeResponse sender_permission = 6 [default = k_EGCMsgInitiateTradeResponse_Accepted];
|
|
589
|
+
optional uint32 friendship_age_requirement = 7;
|
|
590
|
+
optional uint32 friendship_age_requirement_two_factor = 8;
|
|
591
|
+
repeated .CMsgClientToGCGetGiftPermissionsResponse.FriendPermission friend_permissions = 9;
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
message CMsgClientToGCUnpackBundle {
|
|
595
|
+
optional uint64 item_id = 1;
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
message CMsgClientToGCUnpackBundleResponse {
|
|
599
|
+
enum EUnpackBundle {
|
|
600
|
+
k_UnpackBundle_Succeeded = 0;
|
|
601
|
+
k_UnpackBundle_Failed_ItemIsNotBundle = 1;
|
|
602
|
+
k_UnpackBundle_Failed_UnableToCreateContainedItem = 2;
|
|
603
|
+
k_UnpackBundle_Failed_SOCacheError = 3;
|
|
604
|
+
k_UnpackBundle_Failed_ItemIsInvalid = 4;
|
|
605
|
+
k_UnpackBundle_Failed_BadItemQuantity = 5;
|
|
606
|
+
k_UnpackBundle_Failed_UnableToDeleteItem = 6;
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
repeated uint64 unpacked_item_ids = 1;
|
|
610
|
+
optional .CMsgClientToGCUnpackBundleResponse.EUnpackBundle response = 2 [default = k_UnpackBundle_Succeeded];
|
|
611
|
+
repeated uint32 unpacked_item_def_indexes = 3;
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
message CMsgGCToClientStoreTransactionCompleted {
|
|
615
|
+
optional uint64 txn_id = 1;
|
|
616
|
+
repeated uint64 item_ids = 2;
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
message CMsgClientToGCEquipItems {
|
|
620
|
+
repeated .CMsgAdjustItemEquippedState equips = 1;
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
message CMsgClientToGCEquipItemsResponse {
|
|
624
|
+
optional fixed64 so_cache_version_id = 1;
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
message CMsgClientToGCSetItemStyle {
|
|
628
|
+
optional uint64 item_id = 1;
|
|
629
|
+
optional uint32 style_index = 2;
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
message CMsgClientToGCSetItemStyleResponse {
|
|
633
|
+
enum ESetStyle {
|
|
634
|
+
k_SetStyle_Succeeded = 0;
|
|
635
|
+
k_SetStyle_Failed = 1;
|
|
636
|
+
k_SetStyle_Failed_StyleIsLocked = 2;
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
optional .CMsgClientToGCSetItemStyleResponse.ESetStyle response = 1 [default = k_SetStyle_Succeeded];
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
message CMsgClientToGCUnlockItemStyle {
|
|
643
|
+
optional uint64 item_to_unlock = 1;
|
|
644
|
+
optional uint32 style_index = 2;
|
|
645
|
+
repeated uint64 consumable_item_ids = 3;
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
message CMsgClientToGCUnlockItemStyleResponse {
|
|
649
|
+
enum EUnlockStyle {
|
|
650
|
+
k_UnlockStyle_Succeeded = 0;
|
|
651
|
+
k_UnlockStyle_Failed_PreReq = 1;
|
|
652
|
+
k_UnlockStyle_Failed_CantAfford = 2;
|
|
653
|
+
k_UnlockStyle_Failed_CantCommit = 3;
|
|
654
|
+
k_UnlockStyle_Failed_CantLockCache = 4;
|
|
655
|
+
k_UnlockStyle_Failed_CantAffordAttrib = 5;
|
|
656
|
+
k_UnlockStyle_Failed_CantAffordGem = 6;
|
|
657
|
+
k_UnlockStyle_Failed_NoCompendiumLevel = 7;
|
|
658
|
+
k_UnlockStyle_Failed_AlreadyUnlocked = 8;
|
|
659
|
+
k_UnlockStyle_Failed_OtherError = 9;
|
|
660
|
+
k_UnlockStyle_Failed_ItemIsInvalid = 10;
|
|
661
|
+
k_UnlockStyle_Failed_ToolIsInvalid = 11;
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
optional .CMsgClientToGCUnlockItemStyleResponse.EUnlockStyle response = 1 [default = k_UnlockStyle_Succeeded];
|
|
665
|
+
optional uint64 item_id = 2;
|
|
666
|
+
optional uint32 style_index = 3;
|
|
667
|
+
optional uint32 style_prereq = 4;
|
|
668
|
+
}
|
|
669
|
+
|
|
670
|
+
message CMsgClientToGCSetItemInventoryCategory {
|
|
671
|
+
repeated uint64 item_ids = 1;
|
|
672
|
+
optional uint32 set_to_value = 2;
|
|
673
|
+
optional uint32 remove_categories = 3;
|
|
674
|
+
optional uint32 add_categories = 4;
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
message CMsgClientToGCUnlockCrate {
|
|
678
|
+
optional uint64 crate_item_id = 1;
|
|
679
|
+
optional uint64 key_item_id = 2;
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
message CMsgClientToGCUnlockCrateResponse {
|
|
683
|
+
message Item {
|
|
684
|
+
optional uint64 item_id = 1;
|
|
685
|
+
optional uint32 def_index = 2;
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
optional .EGCMsgResponse result = 1 [default = k_EGCMsgResponseOK];
|
|
689
|
+
repeated .CMsgClientToGCUnlockCrateResponse.Item granted_items = 2;
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
message CMsgClientToGCRemoveItemAttribute {
|
|
693
|
+
optional uint64 item_id = 1;
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
message CMsgClientToGCRemoveItemAttributeResponse {
|
|
697
|
+
enum ERemoveItemAttribute {
|
|
698
|
+
k_RemoveItemAttribute_Succeeded = 0;
|
|
699
|
+
k_RemoveItemAttribute_Failed = 1;
|
|
700
|
+
k_RemoveItemAttribute_Failed_ItemIsInvalid = 2;
|
|
701
|
+
k_RemoveItemAttribute_Failed_AttributeCannotBeRemoved = 3;
|
|
702
|
+
k_RemoveItemAttribute_Failed_AttributeDoesntExist = 4;
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
optional .CMsgClientToGCRemoveItemAttributeResponse.ERemoveItemAttribute response = 1 [default = k_RemoveItemAttribute_Succeeded];
|
|
706
|
+
optional uint64 item_id = 2;
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
message CMsgClientToGCNameItem {
|
|
710
|
+
optional uint64 subject_item_id = 1;
|
|
711
|
+
optional uint64 tool_item_id = 2;
|
|
712
|
+
optional string name = 3;
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
message CMsgClientToGCNameItemResponse {
|
|
716
|
+
enum ENameItem {
|
|
717
|
+
k_NameItem_Succeeded = 0;
|
|
718
|
+
k_NameItem_Failed = 1;
|
|
719
|
+
k_NameItem_Failed_ToolIsInvalid = 2;
|
|
720
|
+
k_NameItem_Failed_ItemIsInvalid = 3;
|
|
721
|
+
k_NameItem_Failed_NameIsInvalid = 4;
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
optional .CMsgClientToGCNameItemResponse.ENameItem response = 1 [default = k_NameItem_Succeeded];
|
|
725
|
+
optional uint64 item_id = 2;
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
message CMsgGCSetItemPosition {
|
|
729
|
+
optional uint64 item_id = 1;
|
|
730
|
+
optional uint32 new_position = 2;
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
message CAttribute_ItemDynamicRecipeComponent {
|
|
734
|
+
optional uint32 item_def = 1;
|
|
735
|
+
optional uint32 item_quality = 2;
|
|
736
|
+
optional uint32 item_flags = 3;
|
|
737
|
+
optional string attributes_string = 4;
|
|
738
|
+
optional uint32 item_count = 5;
|
|
739
|
+
optional uint32 items_fulfilled = 6;
|
|
740
|
+
optional uint32 item_rarity = 7;
|
|
741
|
+
optional string lootlist = 8;
|
|
742
|
+
optional uint64 fulfilled_item_id = 9;
|
|
743
|
+
}
|
|
744
|
+
|
|
745
|
+
message CProtoItemSocket {
|
|
746
|
+
optional uint64 item_id = 1;
|
|
747
|
+
optional uint32 attr_def_index = 2;
|
|
748
|
+
optional uint32 required_type = 3;
|
|
749
|
+
optional string required_hero = 4;
|
|
750
|
+
optional uint32 gem_def_index = 5;
|
|
751
|
+
optional bool not_tradable = 6;
|
|
752
|
+
optional string required_item_slot = 7;
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
message CProtoItemSocket_Empty {
|
|
756
|
+
optional .CProtoItemSocket socket = 1;
|
|
757
|
+
}
|
|
758
|
+
|
|
759
|
+
message CProtoItemSocket_Effect {
|
|
760
|
+
optional .CProtoItemSocket socket = 1;
|
|
761
|
+
optional uint32 effect = 2;
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
message CProtoItemSocket_Color {
|
|
765
|
+
optional .CProtoItemSocket socket = 1;
|
|
766
|
+
optional uint32 red = 2;
|
|
767
|
+
optional uint32 green = 3;
|
|
768
|
+
optional uint32 blue = 4;
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
message CProtoItemSocket_Strange {
|
|
772
|
+
optional .CProtoItemSocket socket = 1;
|
|
773
|
+
optional uint32 strange_type = 2;
|
|
774
|
+
optional uint32 strange_value = 3;
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
message CProtoItemSocket_Spectator {
|
|
778
|
+
optional .CProtoItemSocket socket = 1;
|
|
779
|
+
optional uint32 games_viewed = 2;
|
|
780
|
+
optional uint32 corporation_id = 3;
|
|
781
|
+
optional uint32 league_id = 4;
|
|
782
|
+
optional uint32 team_id = 5;
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
message CProtoItemSocket_AssetModifier {
|
|
786
|
+
optional .CProtoItemSocket socket = 1;
|
|
787
|
+
optional uint32 asset_modifier = 2;
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
message CProtoItemSocket_AssetModifier_DESERIALIZE_FROM_STRING_ONLY {
|
|
791
|
+
optional .CProtoItemSocket socket = 1;
|
|
792
|
+
optional uint32 asset_modifier = 2;
|
|
793
|
+
optional uint32 anim_modifier = 3;
|
|
794
|
+
optional uint32 ability_effect = 4;
|
|
795
|
+
}
|
|
796
|
+
|
|
797
|
+
message CProtoItemSocket_Autograph {
|
|
798
|
+
optional .CProtoItemSocket socket = 1;
|
|
799
|
+
optional string autograph = 2;
|
|
800
|
+
optional uint32 autograph_id = 3;
|
|
801
|
+
optional uint32 autograph_score = 4;
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
message CProtoItemSocket_StaticVisuals {
|
|
805
|
+
optional .CProtoItemSocket socket = 1;
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
message CAttribute_String {
|
|
809
|
+
optional string value = 1;
|
|
810
|
+
}
|
|
811
|
+
|
|
812
|
+
message CWorkshop_GetItemDailyRevenue_Request {
|
|
813
|
+
optional uint32 appid = 1;
|
|
814
|
+
optional uint32 item_id = 2;
|
|
815
|
+
optional uint32 date_start = 3;
|
|
816
|
+
optional uint32 date_end = 4;
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
message CWorkshop_GetItemDailyRevenue_Response {
|
|
820
|
+
message CountryDailyRevenue {
|
|
821
|
+
optional string country_code = 1;
|
|
822
|
+
optional uint32 date = 2;
|
|
823
|
+
optional int64 revenue_usd = 3;
|
|
824
|
+
optional int32 units = 4;
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
repeated .CWorkshop_GetItemDailyRevenue_Response.CountryDailyRevenue country_revenue = 1;
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
message CWorkshop_GetPackageDailyRevenue_Request {
|
|
831
|
+
optional uint32 packageid = 1;
|
|
832
|
+
optional uint32 date_start = 2;
|
|
833
|
+
optional uint32 date_end = 3;
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
message CWorkshop_GetPackageDailyRevenue_Response {
|
|
837
|
+
message CountryDailyRevenue {
|
|
838
|
+
optional string country_code = 1;
|
|
839
|
+
optional uint32 date = 2;
|
|
840
|
+
optional int64 revenue_usd = 3;
|
|
841
|
+
optional int32 units = 4;
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
repeated .CWorkshop_GetPackageDailyRevenue_Response.CountryDailyRevenue country_revenue = 1;
|
|
845
|
+
}
|
|
846
|
+
|
|
847
|
+
message CMsgSQLGCToGCGrantBackpackSlots {
|
|
848
|
+
optional uint32 account_id = 1;
|
|
849
|
+
optional uint32 add_slots = 2;
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
message CMsgClientToGCLookupAccountName {
|
|
853
|
+
optional uint32 account_id = 1;
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
message CMsgClientToGCLookupAccountNameResponse {
|
|
857
|
+
optional uint32 account_id = 1;
|
|
858
|
+
optional string account_name = 2;
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
message CMsgClientToGCCreateStaticRecipe {
|
|
862
|
+
message Item {
|
|
863
|
+
optional uint64 item_id = 1;
|
|
864
|
+
optional uint32 slot_id = 2;
|
|
865
|
+
}
|
|
866
|
+
|
|
867
|
+
repeated .CMsgClientToGCCreateStaticRecipe.Item items = 1;
|
|
868
|
+
optional uint32 recipe_def_index = 2;
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
message CMsgClientToGCCreateStaticRecipeResponse {
|
|
872
|
+
message OutputItem {
|
|
873
|
+
optional uint32 def_index = 1;
|
|
874
|
+
optional uint64 item_id = 2;
|
|
875
|
+
optional uint32 slot_id = 3;
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
message InputError {
|
|
879
|
+
optional uint32 slot_id = 1;
|
|
880
|
+
optional .CMsgClientToGCCreateStaticRecipeResponse.EResponse error = 2 [default = eResponse_Success];
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
message AdditionalOutput {
|
|
884
|
+
optional uint32 slot_id = 1;
|
|
885
|
+
optional uint64 value = 2;
|
|
886
|
+
}
|
|
887
|
+
|
|
888
|
+
enum EResponse {
|
|
889
|
+
eResponse_Success = 0;
|
|
890
|
+
eResponse_OfferingDisabled = 1;
|
|
891
|
+
eResponse_InvalidItems = 2;
|
|
892
|
+
eResponse_InternalError = 3;
|
|
893
|
+
eResponse_MissingLeague = 4;
|
|
894
|
+
eResponse_MissingEvent = 5;
|
|
895
|
+
}
|
|
896
|
+
|
|
897
|
+
optional .CMsgClientToGCCreateStaticRecipeResponse.EResponse response = 1 [default = eResponse_Success];
|
|
898
|
+
repeated .CMsgClientToGCCreateStaticRecipeResponse.OutputItem output_items = 2;
|
|
899
|
+
repeated .CMsgClientToGCCreateStaticRecipeResponse.InputError input_errors = 3;
|
|
900
|
+
repeated .CMsgClientToGCCreateStaticRecipeResponse.AdditionalOutput additional_outputs = 4;
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
message CMsgProcessTransactionOrder {
|
|
904
|
+
message Item {
|
|
905
|
+
optional uint32 item_def_index = 1;
|
|
906
|
+
optional uint32 item_price = 2;
|
|
907
|
+
optional uint32 quantity = 3;
|
|
908
|
+
optional string category_desc = 4;
|
|
909
|
+
optional uint32 store_purchase_type = 5;
|
|
910
|
+
optional uint64 source_reference_id = 6;
|
|
911
|
+
optional int32 parent_stack_index = 7;
|
|
912
|
+
optional bool default_price = 8;
|
|
913
|
+
optional bool is_user_facing = 9;
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
optional uint64 txn_id = 1;
|
|
917
|
+
optional uint64 steam_txn_id = 2;
|
|
918
|
+
optional uint64 partner_txn_id = 3;
|
|
919
|
+
optional fixed64 steam_id = 4;
|
|
920
|
+
optional uint32 time_stamp = 5;
|
|
921
|
+
optional uint64 watermark = 6;
|
|
922
|
+
optional int32 purchase_report_status = 7;
|
|
923
|
+
optional uint32 currency = 8;
|
|
924
|
+
repeated .CMsgProcessTransactionOrder.Item items = 9;
|
|
925
|
+
}
|
|
926
|
+
|
|
927
|
+
message CMsgGCToGCStoreProcessCDKeyTransaction {
|
|
928
|
+
optional .CMsgProcessTransactionOrder order = 1;
|
|
929
|
+
optional uint32 reason_code = 2;
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
message CMsgGCToGCStoreProcessCDKeyTransactionResponse {
|
|
933
|
+
optional bool success = 1;
|
|
934
|
+
}
|
|
935
|
+
|
|
936
|
+
message CMsgGCToGCStoreProcessSettlement {
|
|
937
|
+
optional .CMsgProcessTransactionOrder order = 1;
|
|
938
|
+
optional uint32 partner = 2;
|
|
939
|
+
}
|
|
940
|
+
|
|
941
|
+
message CMsgGCToGCStoreProcessSettlementResponse {
|
|
942
|
+
optional bool success = 1;
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
message CMsgGCToGCBroadcastConsoleCommand {
|
|
946
|
+
optional string con_command = 1;
|
|
947
|
+
optional bool report_output = 2;
|
|
948
|
+
optional uint32 sending_gc = 3;
|
|
949
|
+
optional string output_initiator = 4;
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
message CMsgGCToGCConsoleOutput {
|
|
953
|
+
message OutputLine {
|
|
954
|
+
optional string text = 1;
|
|
955
|
+
optional uint32 spew_level = 2;
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
optional string initiator = 1;
|
|
959
|
+
optional uint32 sending_gc = 2;
|
|
960
|
+
repeated .CMsgGCToGCConsoleOutput.OutputLine msgs = 3;
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
message CMsgItemAges {
|
|
964
|
+
message MaxItemIDTimestamp {
|
|
965
|
+
optional uint32 timestamp = 1;
|
|
966
|
+
optional uint64 max_item_id = 2;
|
|
967
|
+
}
|
|
968
|
+
|
|
969
|
+
repeated .CMsgItemAges.MaxItemIDTimestamp max_item_id_timestamps = 1;
|
|
970
|
+
}
|
|
971
|
+
|
|
972
|
+
message CMsgGCToGCInternalTestMsg {
|
|
973
|
+
optional uint32 sending_gc = 1;
|
|
974
|
+
optional fixed64 sender_id = 2;
|
|
975
|
+
optional uint32 context = 3;
|
|
976
|
+
optional uint32 message_id = 4;
|
|
977
|
+
optional bytes message_body = 5;
|
|
978
|
+
optional fixed64 job_id_source = 6;
|
|
979
|
+
optional fixed64 job_id_target = 7;
|
|
980
|
+
}
|
|
981
|
+
|
|
982
|
+
message CMsgGCToGCClientServerVersionsUpdated {
|
|
983
|
+
optional uint32 client_min_allowed_version = 1;
|
|
984
|
+
optional uint32 client_active_version = 2;
|
|
985
|
+
optional uint32 server_active_version = 3;
|
|
986
|
+
optional uint32 server_deployed_version = 4;
|
|
987
|
+
}
|
|
988
|
+
|
|
989
|
+
message CMsgGCToGCBroadcastMessageFromSub {
|
|
990
|
+
optional uint32 msg_id = 1;
|
|
991
|
+
optional bytes serialized_msg = 2;
|
|
992
|
+
repeated uint32 account_id_list = 3 [packed = true];
|
|
993
|
+
repeated fixed64 steam_id_list = 4 [packed = true];
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
message CMsgGCToClientCurrencyPricePoints {
|
|
997
|
+
message Currency {
|
|
998
|
+
optional uint32 currency_id = 1;
|
|
999
|
+
repeated uint64 currency_price = 2 [packed = true];
|
|
1000
|
+
}
|
|
1001
|
+
|
|
1002
|
+
repeated uint64 price_key = 1 [packed = true];
|
|
1003
|
+
repeated .CMsgGCToClientCurrencyPricePoints.Currency currencies = 2;
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
message CMsgBannedWordList {
|
|
1007
|
+
optional uint32 version = 1;
|
|
1008
|
+
repeated string banned_words = 2;
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
message CEcon_FlushInventoryCache_Request {
|
|
1012
|
+
optional uint64 steamid = 1;
|
|
1013
|
+
optional uint32 appid = 2;
|
|
1014
|
+
optional uint64 contextid = 3;
|
|
1015
|
+
}
|
|
1016
|
+
|
|
1017
|
+
message CEcon_FlushInventoryCache_Response {
|
|
1018
|
+
optional bool success = 1;
|
|
1019
|
+
}
|
|
1020
|
+
|
|
1021
|
+
message CMsgGCToGCFlushSteamInventoryCache {
|
|
1022
|
+
message Key {
|
|
1023
|
+
optional uint64 steamid = 1;
|
|
1024
|
+
optional uint64 contextid = 2;
|
|
1025
|
+
}
|
|
1026
|
+
|
|
1027
|
+
repeated .CMsgGCToGCFlushSteamInventoryCache.Key keys = 1;
|
|
1028
|
+
}
|
|
1029
|
+
|
|
1030
|
+
message CMsgGCToGCUpdateSubscriptionItems {
|
|
1031
|
+
optional uint32 account_id = 1;
|
|
1032
|
+
optional bool always_notify = 2;
|
|
1033
|
+
}
|