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,561 @@
|
|
|
1
|
+
import "steammessages.proto";
|
|
2
|
+
|
|
3
|
+
option optimize_for = SPEED;
|
|
4
|
+
option cc_generic_services = false;
|
|
5
|
+
|
|
6
|
+
enum EGCBaseMsg {
|
|
7
|
+
k_EMsgGCSystemMessage = 4001;
|
|
8
|
+
k_EMsgGCReplicateConVars = 4002;
|
|
9
|
+
k_EMsgGCConVarUpdated = 4003;
|
|
10
|
+
k_EMsgGCServerAvailable = 4506;
|
|
11
|
+
k_EMsgGCClientConnectToServer = 4507;
|
|
12
|
+
k_EMsgGCGameServerInfo = 4508;
|
|
13
|
+
k_EMsgGCError = 4509;
|
|
14
|
+
k_EMsgGCReplay_UploadedToYouTube = 4510;
|
|
15
|
+
k_EMsgGCLANServerAvailable = 4511;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
enum EGCBaseProtoObjectTypes {
|
|
19
|
+
k_EProtoObjectPartyInvite = 1001;
|
|
20
|
+
k_EProtoObjectLobbyInvite = 1002;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
enum GCGoodbyeReason {
|
|
24
|
+
GCGoodbyeReason_GC_GOING_DOWN = 1;
|
|
25
|
+
GCGoodbyeReason_NO_SESSION = 2;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
message CGCStorePurchaseInit_LineItem {
|
|
29
|
+
optional uint32 item_def_id = 1;
|
|
30
|
+
optional uint32 quantity = 2;
|
|
31
|
+
optional uint32 cost_in_local_currency = 3;
|
|
32
|
+
optional uint32 purchase_type = 4;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
message CMsgGCStorePurchaseInit {
|
|
36
|
+
optional string country = 1;
|
|
37
|
+
optional int32 language = 2;
|
|
38
|
+
optional int32 currency = 3;
|
|
39
|
+
repeated .CGCStorePurchaseInit_LineItem line_items = 4;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
message CMsgGCStorePurchaseInitResponse {
|
|
43
|
+
optional int32 result = 1;
|
|
44
|
+
optional uint64 txn_id = 2;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
message CMsgSystemBroadcast {
|
|
48
|
+
optional string message = 1;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
message CMsgClientHello {
|
|
52
|
+
optional uint32 version = 1;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
message CMsgServerHello {
|
|
56
|
+
optional uint32 version = 1;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
message CMsgClientWelcome {
|
|
60
|
+
optional uint32 version = 1;
|
|
61
|
+
optional bytes game_data = 2;
|
|
62
|
+
optional string txn_country_code = 3;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
message CMsgServerWelcome {
|
|
66
|
+
optional uint32 min_allowed_version = 1;
|
|
67
|
+
optional uint32 active_version = 2;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
message CMsgClientGoodbye {
|
|
71
|
+
optional .GCGoodbyeReason reason = 1 [default = GCGoodbyeReason_GC_GOING_DOWN];
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
message CMsgServerGoodbye {
|
|
75
|
+
optional .GCGoodbyeReason reason = 1 [default = GCGoodbyeReason_GC_GOING_DOWN];
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
message CMsgServerAvailable {
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
message CMsgLANServerAvailable {
|
|
82
|
+
optional fixed64 lobby_id = 1;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
message CSOEconGameAccountClient {
|
|
86
|
+
optional uint32 additional_backpack_slots = 1 [default = 0];
|
|
87
|
+
optional bool trial_account = 2 [default = false];
|
|
88
|
+
optional bool need_to_choose_most_helpful_friend = 4;
|
|
89
|
+
optional bool in_coaches_list = 5;
|
|
90
|
+
optional fixed32 trade_ban_expiration = 6;
|
|
91
|
+
optional fixed32 duel_ban_expiration = 7;
|
|
92
|
+
optional uint32 preview_item_def = 8 [default = 0];
|
|
93
|
+
optional bool phone_verified = 19 [default = false];
|
|
94
|
+
optional uint32 skill_rating_6v6 = 20;
|
|
95
|
+
optional uint32 skill_rating_9v9 = 21;
|
|
96
|
+
optional bool competitive_access = 23 [default = false];
|
|
97
|
+
optional uint32 matchmaking_ranked_ban_expiration = 18;
|
|
98
|
+
optional uint32 matchmaking_ranked_low_priority_expiration = 24;
|
|
99
|
+
optional uint32 matchmaking_ranked_ban_last_duration = 25;
|
|
100
|
+
optional uint32 matchmaking_ranked_low_priority_last_duration = 26;
|
|
101
|
+
optional uint32 matchmaking_casual_ban_expiration = 27;
|
|
102
|
+
optional uint32 matchmaking_casual_low_priority_expiration = 28;
|
|
103
|
+
optional uint32 matchmaking_casual_ban_last_duration = 29;
|
|
104
|
+
optional uint32 matchmaking_casual_low_priority_last_duration = 30;
|
|
105
|
+
optional bool phone_identifying = 31 [default = false];
|
|
106
|
+
optional bool disable_party_quest_progress = 32 [default = false];
|
|
107
|
+
optional uint32 quest_reward_credits = 33;
|
|
108
|
+
optional uint32 matchmaking_last_casual_excessive_reports_auto_ban_time = 34;
|
|
109
|
+
optional uint32 matchmaking_last_comp_excessive_reports_auto_ban_time = 35;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
message CSOItemCriteriaCondition {
|
|
113
|
+
optional int32 op = 1;
|
|
114
|
+
optional string field = 2;
|
|
115
|
+
optional bool required = 3;
|
|
116
|
+
optional float float_value = 4;
|
|
117
|
+
optional string string_value = 5;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
message CSOItemCriteria {
|
|
121
|
+
optional uint32 item_level = 1;
|
|
122
|
+
optional int32 item_quality = 2;
|
|
123
|
+
optional bool item_level_set = 3;
|
|
124
|
+
optional bool item_quality_set = 4;
|
|
125
|
+
optional uint32 initial_inventory = 5;
|
|
126
|
+
optional uint32 initial_quantity = 6;
|
|
127
|
+
optional bool ignore_enabled_flag = 8;
|
|
128
|
+
repeated .CSOItemCriteriaCondition conditions = 9;
|
|
129
|
+
optional bool recent_only = 10;
|
|
130
|
+
optional string tags = 11;
|
|
131
|
+
optional string equip_regions = 12;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
message CSOItemRecipe {
|
|
135
|
+
optional uint32 def_index = 1;
|
|
136
|
+
optional string name = 2;
|
|
137
|
+
optional string n_a = 3;
|
|
138
|
+
optional string desc_inputs = 4;
|
|
139
|
+
optional string desc_outputs = 5;
|
|
140
|
+
optional string di_a = 6;
|
|
141
|
+
optional string di_b = 7;
|
|
142
|
+
optional string di_c = 8;
|
|
143
|
+
optional string do_a = 9;
|
|
144
|
+
optional string do_b = 10;
|
|
145
|
+
optional string do_c = 11;
|
|
146
|
+
optional bool requires_all_same_class = 12;
|
|
147
|
+
optional bool requires_all_same_slot = 13;
|
|
148
|
+
optional int32 class_usage_for_output = 14;
|
|
149
|
+
optional int32 slot_usage_for_output = 15;
|
|
150
|
+
optional int32 set_for_output = 16;
|
|
151
|
+
repeated .CSOItemCriteria input_items_criteria = 20;
|
|
152
|
+
repeated .CSOItemCriteria output_items_criteria = 21;
|
|
153
|
+
repeated uint32 input_item_dupe_counts = 22;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
message CMsgDevNewItemRequest {
|
|
157
|
+
optional fixed64 receiver = 1;
|
|
158
|
+
optional .CSOItemCriteria criteria = 2;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
message CMsgDevDebugRollLootRequest {
|
|
162
|
+
optional fixed64 receiver = 1;
|
|
163
|
+
optional string loot_list_name = 2;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
message CMsgIncrementKillCountAttribute {
|
|
167
|
+
optional uint64 killer_steam_id = 1;
|
|
168
|
+
optional uint64 victim_steam_id = 2;
|
|
169
|
+
optional uint64 item_id = 3;
|
|
170
|
+
optional uint32 event_type = 4;
|
|
171
|
+
optional uint32 increment_value = 5;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
message CMsgIncrementKillCountAttribute_Multiple {
|
|
175
|
+
repeated .CMsgIncrementKillCountAttribute msgs = 1;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
message CMsgTrackUniquePlayerPairEvent {
|
|
179
|
+
optional uint64 killer_steam_id = 1;
|
|
180
|
+
optional uint64 victim_steam_id = 2;
|
|
181
|
+
optional uint64 item_id = 3;
|
|
182
|
+
optional uint32 event_type = 4;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
message CMsgApplyStrangeCountTransfer {
|
|
186
|
+
optional uint64 tool_item_id = 1;
|
|
187
|
+
optional uint64 item_src_item_id = 2;
|
|
188
|
+
optional uint64 item_dest_item_id = 3;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
message CMsgApplyStrangePart {
|
|
192
|
+
optional uint64 strange_part_item_id = 1;
|
|
193
|
+
optional uint64 item_item_id = 2;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
message CMsgApplyStrangeRestriction {
|
|
197
|
+
optional uint64 strange_part_item_id = 1;
|
|
198
|
+
optional uint64 item_item_id = 2;
|
|
199
|
+
optional uint32 strange_attr_index = 3;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
message CMsgApplyUpgradeCard {
|
|
203
|
+
optional uint64 upgrade_card_item_id = 1;
|
|
204
|
+
optional uint64 subject_item_id = 2;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
message CSOEconItemAttribute {
|
|
208
|
+
optional uint32 def_index = 1;
|
|
209
|
+
optional uint32 value = 2;
|
|
210
|
+
optional bytes value_bytes = 3;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
message CSOEconItemEquipped {
|
|
214
|
+
optional uint32 new_class = 1;
|
|
215
|
+
optional uint32 new_slot = 2;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
message CSOEconItem {
|
|
219
|
+
optional uint64 id = 1;
|
|
220
|
+
optional uint32 account_id = 2;
|
|
221
|
+
optional uint32 inventory = 3;
|
|
222
|
+
optional uint32 def_index = 4;
|
|
223
|
+
optional uint32 quantity = 5;
|
|
224
|
+
optional uint32 level = 6;
|
|
225
|
+
optional uint32 quality = 7;
|
|
226
|
+
optional uint32 flags = 8 [default = 0];
|
|
227
|
+
optional uint32 origin = 9;
|
|
228
|
+
optional string custom_name = 10;
|
|
229
|
+
optional string custom_desc = 11;
|
|
230
|
+
repeated .CSOEconItemAttribute attribute = 12;
|
|
231
|
+
optional .CSOEconItem interior_item = 13;
|
|
232
|
+
optional bool in_use = 14 [default = false];
|
|
233
|
+
optional uint32 style = 15 [default = 0];
|
|
234
|
+
optional uint64 original_id = 16 [default = 0];
|
|
235
|
+
optional bool contains_equipped_state = 17;
|
|
236
|
+
repeated .CSOEconItemEquipped equipped_state = 18;
|
|
237
|
+
optional bool contains_equipped_state_v2 = 19;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
message CMsgAdjustItemEquippedState {
|
|
241
|
+
optional uint64 item_id = 1;
|
|
242
|
+
optional uint32 new_class = 2;
|
|
243
|
+
optional uint32 new_slot = 3;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
message CMsgSortItems {
|
|
247
|
+
optional uint32 sort_type = 1;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
message CSOEconClaimCode {
|
|
251
|
+
optional uint32 account_id = 1;
|
|
252
|
+
optional uint32 code_type = 2;
|
|
253
|
+
optional uint32 time_acquired = 3;
|
|
254
|
+
optional string code = 4;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
message CMsgStoreGetUserData {
|
|
258
|
+
optional fixed32 price_sheet_version = 1;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
message CMsgStoreGetUserDataResponse {
|
|
262
|
+
optional int32 result = 1;
|
|
263
|
+
optional int32 currency = 2;
|
|
264
|
+
optional string country = 3;
|
|
265
|
+
optional fixed32 price_sheet_version = 4;
|
|
266
|
+
optional uint64 experiment_data = 5 [default = 0];
|
|
267
|
+
optional int32 featured_item_idx = 6;
|
|
268
|
+
optional bool show_hat_descriptions = 7 [default = true];
|
|
269
|
+
optional bytes price_sheet = 8;
|
|
270
|
+
optional int32 default_item_sort = 9 [default = 0];
|
|
271
|
+
repeated uint32 popular_items = 10;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
message CMsgUpdateItemSchema {
|
|
275
|
+
optional bytes items_game = 1;
|
|
276
|
+
optional fixed32 item_schema_version = 2;
|
|
277
|
+
optional string items_game_url = 3;
|
|
278
|
+
optional bytes signature = 4;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
message CMsgGCError {
|
|
282
|
+
optional string error_text = 1;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
message CMsgRequestInventoryRefresh {
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
message CMsgConVarValue {
|
|
289
|
+
optional string name = 1;
|
|
290
|
+
optional string value = 2;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
message CMsgReplicateConVars {
|
|
294
|
+
repeated .CMsgConVarValue convars = 1;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
message CMsgUseItem {
|
|
298
|
+
optional uint64 item_id = 1;
|
|
299
|
+
optional fixed64 target_steam_id = 2;
|
|
300
|
+
repeated uint32 gift__potential_targets = 3;
|
|
301
|
+
optional uint32 duel__class_lock = 4;
|
|
302
|
+
optional fixed64 initiator_steam_id = 5;
|
|
303
|
+
optional bool itempack__ack_immediately = 6;
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
message CMsgReplayUploadedToYouTube {
|
|
307
|
+
optional string youtube_url = 1;
|
|
308
|
+
optional string youtube_account_name = 2;
|
|
309
|
+
optional uint64 session_id = 3;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
message CMsgConsumableExhausted {
|
|
313
|
+
optional int32 item_def_id = 1;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
message CMsgItemAcknowledged {
|
|
317
|
+
optional uint32 account_id = 1;
|
|
318
|
+
optional uint32 inventory = 2;
|
|
319
|
+
optional uint32 def_index = 3;
|
|
320
|
+
optional uint32 quality = 4;
|
|
321
|
+
optional uint32 rarity = 5;
|
|
322
|
+
optional uint32 origin = 6;
|
|
323
|
+
optional uint32 is_strange = 7;
|
|
324
|
+
optional uint32 is_unusual = 8;
|
|
325
|
+
optional float wear = 9;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
message CMsgSetPresetItemPosition {
|
|
329
|
+
optional uint32 class_id = 1;
|
|
330
|
+
optional uint32 preset_id = 2;
|
|
331
|
+
optional uint32 slot_id = 3;
|
|
332
|
+
optional uint64 item_id = 4;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
message CMsgSetItemPositions {
|
|
336
|
+
message ItemPosition {
|
|
337
|
+
optional uint64 item_id = 1;
|
|
338
|
+
optional uint32 position = 2;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
repeated .CMsgSetItemPositions.ItemPosition item_positions = 1;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
message CSOEconItemPresetInstance {
|
|
345
|
+
optional uint32 class_id = 2 [(key_field) = true];
|
|
346
|
+
optional uint32 preset_id = 3 [(key_field) = true];
|
|
347
|
+
optional uint32 slot_id = 4 [(key_field) = true];
|
|
348
|
+
optional uint64 item_id = 5;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
message CMsgSelectPresetForClass {
|
|
352
|
+
optional uint32 class_id = 1;
|
|
353
|
+
optional uint32 preset_id = 2;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
message CSOClassPresetClientData {
|
|
357
|
+
optional uint32 account_id = 1;
|
|
358
|
+
optional uint32 class_id = 2;
|
|
359
|
+
optional uint32 active_preset_id = 3;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
message CMsgGCReportAbuse {
|
|
363
|
+
optional fixed64 target_steam_id = 1;
|
|
364
|
+
optional string description = 4;
|
|
365
|
+
optional uint64 gid = 5;
|
|
366
|
+
optional uint32 abuse_type = 2;
|
|
367
|
+
optional uint32 content_type = 3;
|
|
368
|
+
optional fixed32 target_game_server_ip = 6;
|
|
369
|
+
optional uint32 target_game_server_port = 7;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
message CMsgGCReportAbuseResponse {
|
|
373
|
+
optional fixed64 target_steam_id = 1;
|
|
374
|
+
optional uint32 result = 2;
|
|
375
|
+
optional string error_message = 3;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
message CMsgGCNameItemNotification {
|
|
379
|
+
optional fixed64 player_steamid = 1;
|
|
380
|
+
optional uint32 item_def_index = 2;
|
|
381
|
+
optional string item_name_custom = 3;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
message CMsgGCClientDisplayNotification {
|
|
385
|
+
optional string notification_title_localization_key = 1;
|
|
386
|
+
optional string notification_body_localization_key = 2;
|
|
387
|
+
repeated string body_substring_keys = 3;
|
|
388
|
+
repeated string body_substring_values = 4;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
message CMsgGCShowItemsPickedUp {
|
|
392
|
+
optional fixed64 player_steamid = 1;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
message CMsgUpdatePeriodicEvent {
|
|
396
|
+
optional uint32 account_id = 1;
|
|
397
|
+
optional uint32 event_type = 2;
|
|
398
|
+
optional uint32 amount = 3;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
message CMsgGCIncrementKillCountResponse {
|
|
402
|
+
optional uint32 killer_account_id = 1 [(key_field) = true];
|
|
403
|
+
optional uint32 num_kills = 2;
|
|
404
|
+
optional uint32 item_def = 3;
|
|
405
|
+
optional uint32 level_type = 4;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
message CMsgGCRemoveStrangePart {
|
|
409
|
+
optional uint64 item_id = 1;
|
|
410
|
+
optional uint32 strange_part_score_type = 2;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
message CMsgGCRemoveUpgradeCard {
|
|
414
|
+
optional uint64 item_id = 1;
|
|
415
|
+
optional uint32 attribute_index = 2;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
message CMsgGCRemoveCustomizationAttributeSimple {
|
|
419
|
+
optional uint64 item_id = 1;
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
message CMsgGCResetStrangeScores {
|
|
423
|
+
optional uint64 item_id = 1;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
message CMsgGCItemPreviewItemBoughtNotification {
|
|
427
|
+
optional uint32 item_def_index = 1;
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
message CMsgGCStorePurchaseCancel {
|
|
431
|
+
optional uint64 txn_id = 1;
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
message CMsgGCStorePurchaseCancelResponse {
|
|
435
|
+
optional uint32 result = 1;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
message CMsgGCStorePurchaseFinalize {
|
|
439
|
+
optional uint64 txn_id = 1;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
message CMsgGCStorePurchaseFinalizeResponse {
|
|
443
|
+
optional uint32 result = 1;
|
|
444
|
+
repeated uint64 item_ids = 2;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
message CMsgGCBannedWordListRequest {
|
|
448
|
+
optional uint32 ban_list_group_id = 1;
|
|
449
|
+
optional uint32 word_id = 2;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
message CMsgGCGiftedItems {
|
|
453
|
+
optional uint64 gifter_steam_id = 1;
|
|
454
|
+
optional bool was_random_person = 2;
|
|
455
|
+
repeated uint32 recipient_account_ids = 3;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
message CMsgGCCollectItem {
|
|
459
|
+
optional uint64 collection_item_id = 1;
|
|
460
|
+
optional uint64 subject_item_id = 2;
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
message CMsgGCClientMarketDataRequest {
|
|
464
|
+
optional uint32 user_currency = 1;
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
message CMsgGCClientMarketDataEntry {
|
|
468
|
+
optional uint32 item_def_index = 1;
|
|
469
|
+
optional uint32 item_quality = 2;
|
|
470
|
+
optional uint32 item_sell_listings = 3;
|
|
471
|
+
optional uint32 price_in_local_currency = 4;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
message CMsgGCClientMarketData {
|
|
475
|
+
repeated .CMsgGCClientMarketDataEntry entries = 1;
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
message CMsgApplyToolToItem {
|
|
479
|
+
optional uint64 tool_item_id = 1;
|
|
480
|
+
optional uint64 subject_item_id = 2;
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
message CMsgApplyToolToBaseItem {
|
|
484
|
+
optional uint64 tool_item_id = 1;
|
|
485
|
+
optional uint32 baseitem_def_index = 2;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
message CMsgRecipeComponent {
|
|
489
|
+
optional uint64 subject_item_id = 1;
|
|
490
|
+
optional uint64 attribute_index = 2;
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
message CMsgFulfillDynamicRecipeComponent {
|
|
494
|
+
optional uint64 tool_item_id = 1;
|
|
495
|
+
repeated .CMsgRecipeComponent consumption_components = 2;
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
message CMsgSetItemEffectVerticalOffset {
|
|
499
|
+
optional uint64 item_id = 1;
|
|
500
|
+
optional float offset = 2;
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
message CMsgSetHatEffectUseHeadOrigin {
|
|
504
|
+
optional uint64 item_id = 1;
|
|
505
|
+
optional bool use_head = 2;
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
message CMsgDeliverGiftResponseGiver {
|
|
509
|
+
optional uint32 response_code = 1;
|
|
510
|
+
optional string receiver_account_name = 2;
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
message CSOEconGameAccountForGameServers {
|
|
514
|
+
optional bool disable_party_quest_progress = 6 [default = false];
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
message CWorkshop_PopulateItemDescriptions_Request {
|
|
518
|
+
message SingleItemDescription {
|
|
519
|
+
optional uint32 gameitemid = 1;
|
|
520
|
+
optional string item_description = 2;
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
message ItemDescriptionsLanguageBlock {
|
|
524
|
+
optional string language = 1;
|
|
525
|
+
repeated .CWorkshop_PopulateItemDescriptions_Request.SingleItemDescription descriptions = 2;
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
optional uint32 appid = 1;
|
|
529
|
+
repeated .CWorkshop_PopulateItemDescriptions_Request.ItemDescriptionsLanguageBlock languages = 2;
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
message CWorkshop_GetContributors_Request {
|
|
533
|
+
optional uint32 appid = 1;
|
|
534
|
+
optional uint32 gameitemid = 2;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
message CWorkshop_GetContributors_Response {
|
|
538
|
+
repeated fixed64 contributors = 1;
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
message CWorkshop_SetItemPaymentRules_Request {
|
|
542
|
+
message WorkshopItemPaymentRule {
|
|
543
|
+
optional uint64 workshop_file_id = 1;
|
|
544
|
+
optional float revenue_percentage = 2;
|
|
545
|
+
optional string rule_description = 3;
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
message PartnerItemPaymentRule {
|
|
549
|
+
optional uint32 account_id = 1;
|
|
550
|
+
optional float revenue_percentage = 2;
|
|
551
|
+
optional string rule_description = 3;
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
optional uint32 appid = 1;
|
|
555
|
+
optional uint32 gameitemid = 2;
|
|
556
|
+
repeated .CWorkshop_SetItemPaymentRules_Request.WorkshopItemPaymentRule associated_workshop_files = 3;
|
|
557
|
+
repeated .CWorkshop_SetItemPaymentRules_Request.PartnerItemPaymentRule partner_accounts = 4;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
message CWorkshop_SetItemPaymentRules_Response {
|
|
561
|
+
}
|