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
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "cs2-exploit",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Crash any Windows user you want",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/imhunterand/cs2-exploit.git"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [],
|
|
14
|
+
"author": "BeepFelix",
|
|
15
|
+
"license": "GPL-3.0",
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"bytebuffer": "^5.0.1",
|
|
18
|
+
"inquirer": "^6.5.1",
|
|
19
|
+
"protobufjs": "^6.8.8",
|
|
20
|
+
"request": "^2.88.0",
|
|
21
|
+
"steam-user": "^4.12.2",
|
|
22
|
+
"steamid": "^1.1.3",
|
|
23
|
+
"unzipper": "^0.10.3"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
* text eol=lf
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
This is free and unencumbered software released into the public domain.
|
|
2
|
+
|
|
3
|
+
Anyone is free to copy, modify, publish, use, compile, sell, or
|
|
4
|
+
distribute this software, either in source code form or as a compiled
|
|
5
|
+
binary, for any purpose, commercial or non-commercial, and by any
|
|
6
|
+
means.
|
|
7
|
+
|
|
8
|
+
In jurisdictions that recognize copyright laws, the author or authors
|
|
9
|
+
of this software dedicate any and all copyright interest in the
|
|
10
|
+
software to the public domain. We make this dedication for the benefit
|
|
11
|
+
of the public at large and to the detriment of our heirs and
|
|
12
|
+
successors. We intend this dedication to be an overt act of
|
|
13
|
+
relinquishment in perpetuity of all present and future rights to this
|
|
14
|
+
software under copyright law.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19
|
+
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
20
|
+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
21
|
+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
22
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
|
23
|
+
|
|
24
|
+
For more information, please refer to <http://unlicense.org/>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
### Automatically tracked protobufs for Steam and Valve's games.
|
|
2
|
+
|
|
3
|
+
These protobufs are being dumped as updates come in the [SteamTracking](https://github.com/SteamDatabase/SteamTracking) repository.
|
|
4
|
+
|
|
5
|
+
Protobufs are dumped using [SteamKit's protobuf dumper](https://github.com/SteamRE/SteamKit/tree/master/Resources/ProtobufDumper).
|
|
6
|
+
|
|
7
|
+
For protobufs dumped from javascript files (in webui folder), we have a [separate dumper](https://github.com/SteamDatabase/SteamTracking/blob/master/dump_javascript_protobufs.mjs) which parses javascript files into abstract syntax tree and tries to find all the messages and services. As such, these dumps are not as complete as dumps from binary files because minified javascript files lack some information.
|
|
@@ -0,0 +1,532 @@
|
|
|
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_EMsgGCInviteToParty = 4501;
|
|
11
|
+
k_EMsgGCInvitationCreated = 4502;
|
|
12
|
+
k_EMsgGCPartyInviteResponse = 4503;
|
|
13
|
+
k_EMsgGCKickFromParty = 4504;
|
|
14
|
+
k_EMsgGCLeaveParty = 4505;
|
|
15
|
+
k_EMsgGCServerAvailable = 4506;
|
|
16
|
+
k_EMsgGCClientConnectToServer = 4507;
|
|
17
|
+
k_EMsgGCGameServerInfo = 4508;
|
|
18
|
+
k_EMsgGCError = 4509;
|
|
19
|
+
k_EMsgGCLANServerAvailable = 4511;
|
|
20
|
+
k_EMsgGCInviteToLobby = 4512;
|
|
21
|
+
k_EMsgGCLobbyInviteResponse = 4513;
|
|
22
|
+
k_EMsgGCToClientPollFileRequest = 4514;
|
|
23
|
+
k_EMsgGCToClientPollFileResponse = 4515;
|
|
24
|
+
k_EMsgGCToGCPerformManualOp = 4516;
|
|
25
|
+
k_EMsgGCToGCPerformManualOpCompleted = 4517;
|
|
26
|
+
k_EMsgGCToGCReloadServerRegionSettings = 4518;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
enum EGCBaseProtoObjectTypes {
|
|
30
|
+
k_EProtoObjectPartyInvite = 1001;
|
|
31
|
+
k_EProtoObjectLobbyInvite = 1002;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
enum ECustomGameInstallStatus {
|
|
35
|
+
k_ECustomGameInstallStatus_Unknown = 0;
|
|
36
|
+
k_ECustomGameInstallStatus_Ready = 1;
|
|
37
|
+
k_ECustomGameInstallStatus_Busy = 2;
|
|
38
|
+
k_ECustomGameInstallStatus_FailedGeneric = 101;
|
|
39
|
+
k_ECustomGameInstallStatus_FailedInternalError = 102;
|
|
40
|
+
k_ECustomGameInstallStatus_RequestedTimestampTooOld = 103;
|
|
41
|
+
k_ECustomGameInstallStatus_RequestedTimestampTooNew = 104;
|
|
42
|
+
k_ECustomGameInstallStatus_CRCMismatch = 105;
|
|
43
|
+
k_ECustomGameInstallStatus_FailedSteam = 106;
|
|
44
|
+
k_ECustomGameInstallStatus_FailedCanceled = 107;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
message CGCStorePurchaseInit_LineItem {
|
|
48
|
+
optional uint32 item_def_id = 1;
|
|
49
|
+
optional uint32 quantity = 2;
|
|
50
|
+
optional uint32 cost_in_local_currency = 3;
|
|
51
|
+
optional uint32 purchase_type = 4;
|
|
52
|
+
optional uint64 source_reference_id = 5;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
message CMsgGCStorePurchaseInit {
|
|
56
|
+
optional string country = 1;
|
|
57
|
+
optional int32 language = 2;
|
|
58
|
+
optional int32 currency = 3;
|
|
59
|
+
repeated .CGCStorePurchaseInit_LineItem line_items = 4;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
message CMsgGCStorePurchaseInitResponse {
|
|
63
|
+
optional int32 result = 1;
|
|
64
|
+
optional uint64 txn_id = 2;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
message CMsgSystemBroadcast {
|
|
68
|
+
optional string message = 1;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
message CMsgClientPingData {
|
|
72
|
+
repeated fixed32 relay_codes = 4 [packed = true];
|
|
73
|
+
repeated uint32 relay_pings = 5 [packed = true];
|
|
74
|
+
repeated uint32 region_codes = 8 [packed = true];
|
|
75
|
+
repeated uint32 region_pings = 9 [packed = true];
|
|
76
|
+
optional uint32 region_ping_failed_bitmask = 10;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
message CMsgInviteToParty {
|
|
80
|
+
optional fixed64 steam_id = 1;
|
|
81
|
+
optional uint32 client_version = 2;
|
|
82
|
+
optional uint32 team_id = 3;
|
|
83
|
+
optional bool as_coach = 4;
|
|
84
|
+
optional .CMsgClientPingData ping_data = 5;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
message CMsgInviteToLobby {
|
|
88
|
+
optional fixed64 steam_id = 1;
|
|
89
|
+
optional uint32 client_version = 2;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
message CMsgInvitationCreated {
|
|
93
|
+
optional uint64 group_id = 1;
|
|
94
|
+
optional fixed64 steam_id = 2;
|
|
95
|
+
optional bool user_offline = 3;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
message CMsgPartyInviteResponse {
|
|
99
|
+
optional uint64 party_id = 1;
|
|
100
|
+
optional bool accept = 2;
|
|
101
|
+
optional uint32 client_version = 3;
|
|
102
|
+
optional .CMsgClientPingData ping_data = 8;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
message CMsgLobbyInviteResponse {
|
|
106
|
+
optional fixed64 lobby_id = 1;
|
|
107
|
+
optional bool accept = 2;
|
|
108
|
+
optional uint32 client_version = 3;
|
|
109
|
+
optional fixed64 custom_game_crc = 6;
|
|
110
|
+
optional fixed32 custom_game_timestamp = 7;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
message CMsgKickFromParty {
|
|
114
|
+
optional fixed64 steam_id = 1;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
message CMsgLeaveParty {
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
message CMsgCustomGameInstallStatus {
|
|
121
|
+
optional .ECustomGameInstallStatus status = 1 [default = k_ECustomGameInstallStatus_Unknown];
|
|
122
|
+
optional string message = 2;
|
|
123
|
+
optional fixed32 latest_timestamp_from_steam = 3;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
message CMsgServerAvailable {
|
|
127
|
+
optional .CMsgCustomGameInstallStatus custom_game_install_status = 1;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
message CMsgLANServerAvailable {
|
|
131
|
+
optional fixed64 lobby_id = 1;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
message CSOEconGameAccountClient {
|
|
135
|
+
optional uint32 additional_backpack_slots = 1 [default = 0];
|
|
136
|
+
optional bool trial_account = 2 [default = false];
|
|
137
|
+
optional bool eligible_for_online_play = 3 [default = true];
|
|
138
|
+
optional bool need_to_choose_most_helpful_friend = 4;
|
|
139
|
+
optional bool in_coaches_list = 5;
|
|
140
|
+
optional fixed32 trade_ban_expiration = 6;
|
|
141
|
+
optional fixed32 duel_ban_expiration = 7;
|
|
142
|
+
optional bool made_first_purchase = 9 [default = false];
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
message CSOItemCriteriaCondition {
|
|
146
|
+
optional int32 op = 1;
|
|
147
|
+
optional string field = 2;
|
|
148
|
+
optional bool required = 3;
|
|
149
|
+
optional float float_value = 4;
|
|
150
|
+
optional string string_value = 5;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
message CSOItemCriteria {
|
|
154
|
+
optional uint32 item_level = 1;
|
|
155
|
+
optional int32 item_quality = 2;
|
|
156
|
+
optional bool item_level_set = 3;
|
|
157
|
+
optional bool item_quality_set = 4;
|
|
158
|
+
optional uint32 initial_inventory = 5;
|
|
159
|
+
optional uint32 initial_quantity = 6;
|
|
160
|
+
optional bool ignore_enabled_flag = 8;
|
|
161
|
+
repeated .CSOItemCriteriaCondition conditions = 9;
|
|
162
|
+
optional bool recent_only = 10;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
message CSOItemRecipe {
|
|
166
|
+
optional uint32 def_index = 1;
|
|
167
|
+
optional string name = 2;
|
|
168
|
+
optional string n_a = 3;
|
|
169
|
+
optional string desc_inputs = 4;
|
|
170
|
+
optional string desc_outputs = 5;
|
|
171
|
+
optional string di_a = 6;
|
|
172
|
+
optional string di_b = 7;
|
|
173
|
+
optional string di_c = 8;
|
|
174
|
+
optional string do_a = 9;
|
|
175
|
+
optional string do_b = 10;
|
|
176
|
+
optional string do_c = 11;
|
|
177
|
+
optional bool requires_all_same_class = 12;
|
|
178
|
+
optional bool requires_all_same_slot = 13;
|
|
179
|
+
optional int32 class_usage_for_output = 14;
|
|
180
|
+
optional int32 slot_usage_for_output = 15;
|
|
181
|
+
optional int32 set_for_output = 16;
|
|
182
|
+
repeated .CSOItemCriteria input_items_criteria = 20;
|
|
183
|
+
repeated .CSOItemCriteria output_items_criteria = 21;
|
|
184
|
+
repeated uint32 input_item_dupe_counts = 22;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
message CMsgApplyStrangePart {
|
|
188
|
+
optional uint64 strange_part_item_id = 1;
|
|
189
|
+
optional uint64 item_item_id = 2;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
message CMsgApplyPennantUpgrade {
|
|
193
|
+
optional uint64 upgrade_item_id = 1;
|
|
194
|
+
optional uint64 pennant_item_id = 2;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
message CMsgApplyEggEssence {
|
|
198
|
+
optional uint64 essence_item_id = 1;
|
|
199
|
+
optional uint64 egg_item_id = 2;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
message CSOEconItemAttribute {
|
|
203
|
+
optional uint32 def_index = 1;
|
|
204
|
+
optional uint32 value = 2;
|
|
205
|
+
optional bytes value_bytes = 3;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
message CSOEconItemEquipped {
|
|
209
|
+
optional uint32 new_class = 1;
|
|
210
|
+
optional uint32 new_slot = 2;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
message CSOEconItem {
|
|
214
|
+
optional uint64 id = 1;
|
|
215
|
+
optional uint32 account_id = 2;
|
|
216
|
+
optional uint32 inventory = 3;
|
|
217
|
+
optional uint32 def_index = 4;
|
|
218
|
+
optional uint32 quantity = 5 [default = 1];
|
|
219
|
+
optional uint32 level = 6 [default = 1];
|
|
220
|
+
optional uint32 quality = 7 [default = 4];
|
|
221
|
+
optional uint32 flags = 8 [default = 0];
|
|
222
|
+
optional uint32 origin = 9 [default = 0];
|
|
223
|
+
repeated .CSOEconItemAttribute attribute = 12;
|
|
224
|
+
optional .CSOEconItem interior_item = 13;
|
|
225
|
+
optional uint32 style = 15 [default = 0];
|
|
226
|
+
optional uint64 original_id = 16 [default = 0];
|
|
227
|
+
repeated .CSOEconItemEquipped equipped_state = 18;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
message CMsgSortItems {
|
|
231
|
+
optional uint32 sort_type = 1;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
message CSOEconClaimCode {
|
|
235
|
+
optional uint32 account_id = 1;
|
|
236
|
+
optional uint32 code_type = 2;
|
|
237
|
+
optional uint32 time_acquired = 3;
|
|
238
|
+
optional string code = 4;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
message CMsgUpdateItemSchema {
|
|
242
|
+
optional bytes items_game = 1;
|
|
243
|
+
optional fixed32 item_schema_version = 2;
|
|
244
|
+
optional string items_game_url = 3;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
message CMsgGCError {
|
|
248
|
+
optional string error_text = 1;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
message CMsgRequestInventoryRefresh {
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
message CMsgConVarValue {
|
|
255
|
+
optional string name = 1;
|
|
256
|
+
optional string value = 2;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
message CMsgReplicateConVars {
|
|
260
|
+
repeated .CMsgConVarValue convars = 1;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
message CMsgItemAcknowledged {
|
|
264
|
+
optional uint32 account_id = 1;
|
|
265
|
+
optional uint32 inventory = 2;
|
|
266
|
+
optional uint32 def_index = 3;
|
|
267
|
+
optional uint32 quality = 4;
|
|
268
|
+
optional uint32 rarity = 5;
|
|
269
|
+
optional uint32 origin = 6;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
message CMsgSetItemPositions {
|
|
273
|
+
message ItemPosition {
|
|
274
|
+
optional uint64 item_id = 1;
|
|
275
|
+
optional uint32 position = 2;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
repeated .CMsgSetItemPositions.ItemPosition item_positions = 1;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
message CMsgGCNameItemNotification {
|
|
282
|
+
optional fixed64 player_steamid = 1;
|
|
283
|
+
optional uint32 item_def_index = 2;
|
|
284
|
+
optional string item_name_custom = 3;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
message CMsgGCClientDisplayNotification {
|
|
288
|
+
optional string notification_title_localization_key = 1;
|
|
289
|
+
optional string notification_body_localization_key = 2;
|
|
290
|
+
repeated string body_substring_keys = 3;
|
|
291
|
+
repeated string body_substring_values = 4;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
message CMsgGCShowItemsPickedUp {
|
|
295
|
+
optional fixed64 player_steamid = 1;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
message CMsgGCIncrementKillCountResponse {
|
|
299
|
+
optional uint32 killer_account_id = 1 [(key_field) = true];
|
|
300
|
+
optional uint32 num_kills = 2;
|
|
301
|
+
optional uint32 item_def = 3;
|
|
302
|
+
optional uint32 level_type = 4;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
message CSOEconItemDropRateBonus {
|
|
306
|
+
optional uint32 account_id = 1 [(key_field) = true];
|
|
307
|
+
optional fixed32 expiration_date = 2;
|
|
308
|
+
optional float bonus = 3 [(key_field) = true];
|
|
309
|
+
optional uint32 bonus_count = 4;
|
|
310
|
+
optional uint64 item_id = 5;
|
|
311
|
+
optional uint32 def_index = 6;
|
|
312
|
+
optional uint32 seconds_left = 7;
|
|
313
|
+
optional uint32 booster_type = 8 [(key_field) = true];
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
message CSOEconItemLeagueViewPass {
|
|
317
|
+
optional uint32 account_id = 1 [(key_field) = true];
|
|
318
|
+
optional uint32 league_id = 2 [(key_field) = true];
|
|
319
|
+
optional uint32 itemindex = 4;
|
|
320
|
+
optional uint32 grant_reason = 5;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
message CSOEconItemEventTicket {
|
|
324
|
+
optional uint32 account_id = 1;
|
|
325
|
+
optional uint32 event_id = 2;
|
|
326
|
+
optional uint64 item_id = 3;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
message CSOEconItemTournamentPassport {
|
|
330
|
+
optional uint32 account_id = 1;
|
|
331
|
+
optional uint32 league_id = 2;
|
|
332
|
+
optional uint64 item_id = 3;
|
|
333
|
+
optional uint32 original_purchaser_id = 4;
|
|
334
|
+
optional uint32 passports_bought = 5;
|
|
335
|
+
optional uint32 version = 6;
|
|
336
|
+
optional uint32 def_index = 7;
|
|
337
|
+
optional uint32 reward_flags = 8;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
message CMsgGCStorePurchaseCancel {
|
|
341
|
+
optional uint64 txn_id = 1;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
message CMsgGCStorePurchaseCancelResponse {
|
|
345
|
+
optional uint32 result = 1;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
message CMsgGCStorePurchaseFinalize {
|
|
349
|
+
optional uint64 txn_id = 1;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
message CMsgGCStorePurchaseFinalizeResponse {
|
|
353
|
+
optional uint32 result = 1;
|
|
354
|
+
repeated uint64 item_ids = 2;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
message CMsgGCToGCBannedWordListUpdated {
|
|
358
|
+
optional uint32 group_id = 1;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
message CMsgGCToGCDirtySDOCache {
|
|
362
|
+
optional uint32 sdo_type = 1;
|
|
363
|
+
optional uint64 key_uint64 = 2;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
message CMsgGCToGCDirtyMultipleSDOCache {
|
|
367
|
+
optional uint32 sdo_type = 1;
|
|
368
|
+
repeated uint64 key_uint64 = 2;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
message CMsgGCToGCApplyLocalizationDiff {
|
|
372
|
+
optional uint32 language = 1;
|
|
373
|
+
optional string packed_diff = 2;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
message CMsgGCToGCApplyLocalizationDiffResponse {
|
|
377
|
+
optional bool success = 1;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
message CMsgGCCollectItem {
|
|
381
|
+
optional uint64 collection_item_id = 1;
|
|
382
|
+
optional uint64 subject_item_id = 2;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
message CMsgSDONoMemcached {
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
message CMsgGCToGCUpdateSQLKeyValue {
|
|
389
|
+
optional string key_name = 1;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
message CMsgGCServerVersionUpdated {
|
|
393
|
+
optional uint32 server_version = 1;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
message CMsgGCClientVersionUpdated {
|
|
397
|
+
optional uint32 client_version = 1;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
message CMsgGCToGCWebAPIAccountChanged {
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
message CMsgRecipeComponent {
|
|
404
|
+
optional uint64 subject_item_id = 1;
|
|
405
|
+
optional uint64 attribute_index = 2;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
message CMsgFulfillDynamicRecipeComponent {
|
|
409
|
+
optional uint64 tool_item_id = 1;
|
|
410
|
+
repeated .CMsgRecipeComponent consumption_components = 2;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
message CMsgGCClientMarketDataRequest {
|
|
414
|
+
optional uint32 user_currency = 1;
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
message CMsgGCClientMarketDataEntry {
|
|
418
|
+
optional uint32 item_def_index = 1;
|
|
419
|
+
optional uint32 item_quality = 2;
|
|
420
|
+
optional uint32 item_sell_listings = 3;
|
|
421
|
+
optional uint32 price_in_local_currency = 4;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
message CMsgGCClientMarketData {
|
|
425
|
+
repeated .CMsgGCClientMarketDataEntry entries = 1;
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
message CMsgExtractGems {
|
|
429
|
+
optional uint64 tool_item_id = 1;
|
|
430
|
+
optional uint64 item_item_id = 2;
|
|
431
|
+
optional uint32 item_socket_id = 3 [default = 65535];
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
message CMsgExtractGemsResponse {
|
|
435
|
+
enum EExtractGems {
|
|
436
|
+
k_ExtractGems_Succeeded = 0;
|
|
437
|
+
k_ExtractGems_Failed_ToolIsInvalid = 1;
|
|
438
|
+
k_ExtractGems_Failed_ItemIsInvalid = 2;
|
|
439
|
+
k_ExtractGems_Failed_ToolCannotRemoveGem = 3;
|
|
440
|
+
k_ExtractGems_Failed_FailedToRemoveGem = 4;
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
optional uint64 item_id = 1;
|
|
444
|
+
optional .CMsgExtractGemsResponse.EExtractGems response = 2 [default = k_ExtractGems_Succeeded];
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
message CMsgAddSocket {
|
|
448
|
+
optional uint64 tool_item_id = 1;
|
|
449
|
+
optional uint64 item_item_id = 2;
|
|
450
|
+
optional bool unusual = 3;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
message CMsgAddSocketResponse {
|
|
454
|
+
enum EAddSocket {
|
|
455
|
+
k_AddSocket_Succeeded = 0;
|
|
456
|
+
k_AddSocket_Failed_ToolIsInvalid = 1;
|
|
457
|
+
k_AddSocket_Failed_ItemCannotBeSocketed = 2;
|
|
458
|
+
k_AddSocket_Failed_FailedToAddSocket = 3;
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
optional uint64 item_id = 1;
|
|
462
|
+
repeated uint32 updated_socket_index = 2;
|
|
463
|
+
optional .CMsgAddSocketResponse.EAddSocket response = 3 [default = k_AddSocket_Succeeded];
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
message CMsgAddItemToSocketData {
|
|
467
|
+
optional uint64 gem_item_id = 1;
|
|
468
|
+
optional uint32 socket_index = 2;
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
message CMsgAddItemToSocket {
|
|
472
|
+
optional uint64 item_item_id = 1;
|
|
473
|
+
repeated .CMsgAddItemToSocketData gems_to_socket = 2;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
message CMsgAddItemToSocketResponse {
|
|
477
|
+
enum EAddGem {
|
|
478
|
+
k_AddGem_Succeeded = 0;
|
|
479
|
+
k_AddGem_Failed_GemIsInvalid = 1;
|
|
480
|
+
k_AddGem_Failed_ItemIsInvalid = 2;
|
|
481
|
+
k_AddGem_Failed_FailedToAddGem = 3;
|
|
482
|
+
k_AddGem_Failed_InvalidGemTypeForSocket = 4;
|
|
483
|
+
k_AddGem_Failed_InvalidGemTypeForHero = 5;
|
|
484
|
+
k_AddGem_Failed_InvalidGemTypeForSlot = 6;
|
|
485
|
+
k_AddGem_Failed_SocketContainsUnremovableGem = 7;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
optional uint64 item_item_id = 1;
|
|
489
|
+
repeated uint32 updated_socket_index = 2;
|
|
490
|
+
optional .CMsgAddItemToSocketResponse.EAddGem response = 3 [default = k_AddGem_Succeeded];
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
message CMsgResetStrangeGemCount {
|
|
494
|
+
optional uint64 item_item_id = 1;
|
|
495
|
+
optional uint32 socket_index = 2;
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
message CMsgResetStrangeGemCountResponse {
|
|
499
|
+
enum EResetGem {
|
|
500
|
+
k_ResetGem_Succeeded = 0;
|
|
501
|
+
k_ResetGem_Failed_FailedToResetGem = 1;
|
|
502
|
+
k_ResetGem_Failed_ItemIsInvalid = 2;
|
|
503
|
+
k_ResetGem_Failed_InvalidSocketId = 3;
|
|
504
|
+
k_ResetGem_Failed_SocketCannotBeReset = 4;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
optional .CMsgResetStrangeGemCountResponse.EResetGem response = 1 [default = k_ResetGem_Succeeded];
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
message CMsgGCToClientPollFileRequest {
|
|
511
|
+
optional string file_name = 1;
|
|
512
|
+
optional uint32 client_version = 2;
|
|
513
|
+
optional uint32 poll_id = 3;
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
message CMsgGCToClientPollFileResponse {
|
|
517
|
+
optional uint32 poll_id = 1;
|
|
518
|
+
optional uint32 file_size = 2;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
message CMsgGCToGCPerformManualOp {
|
|
522
|
+
optional uint64 op_id = 1;
|
|
523
|
+
optional uint32 group_code = 2;
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
message CMsgGCToGCPerformManualOpCompleted {
|
|
527
|
+
optional bool success = 1;
|
|
528
|
+
optional uint32 source_gc = 2;
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
message CMsgGCToGCReloadServerRegionSettings {
|
|
532
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import "netmessages.proto";
|
|
2
|
+
import "networkbasetypes.proto";
|
|
3
|
+
|
|
4
|
+
option cc_generic_services = false;
|
|
5
|
+
|
|
6
|
+
enum P2P_Messages {
|
|
7
|
+
p2p_TextMessage = 256;
|
|
8
|
+
p2p_Voice = 257;
|
|
9
|
+
p2p_Ping = 258;
|
|
10
|
+
p2p_VRAvatarPosition = 259;
|
|
11
|
+
p2p_WatchSynchronization = 260;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
message CP2P_TextMessage {
|
|
15
|
+
optional bytes text = 1;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
message CSteam_Voice_Encoding {
|
|
19
|
+
optional bytes voice_data = 1;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
message CP2P_Voice {
|
|
23
|
+
enum Handler_Flags {
|
|
24
|
+
Played_Audio = 1;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
optional .CMsgVoiceAudio audio = 1;
|
|
28
|
+
optional uint32 broadcast_group = 2;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
message CP2P_Ping {
|
|
32
|
+
required uint64 send_time = 1;
|
|
33
|
+
required bool is_reply = 2;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
message CP2P_VRAvatarPosition {
|
|
37
|
+
message COrientation {
|
|
38
|
+
optional .CMsgVector pos = 1;
|
|
39
|
+
optional .CMsgQAngle ang = 2;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
repeated .CP2P_VRAvatarPosition.COrientation body_parts = 1;
|
|
43
|
+
optional int32 hat_id = 2;
|
|
44
|
+
optional int32 scene_id = 3;
|
|
45
|
+
optional int32 world_scale = 4;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
message CP2P_WatchSynchronization {
|
|
49
|
+
optional int32 demo_tick = 1;
|
|
50
|
+
optional bool paused = 2;
|
|
51
|
+
optional int32 tv_listen_voice_indices = 3;
|
|
52
|
+
optional int32 dota_spectator_mode = 4;
|
|
53
|
+
optional int32 dota_spectator_watching_broadcaster = 5;
|
|
54
|
+
optional int32 dota_spectator_hero_index = 6;
|
|
55
|
+
optional int32 dota_spectator_autospeed = 7;
|
|
56
|
+
optional int32 dota_replay_speed = 8;
|
|
57
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
option optimize_for = SPEED;
|
|
2
|
+
option cc_generic_services = false;
|
|
3
|
+
|
|
4
|
+
enum EBaseClientMessages {
|
|
5
|
+
CM_CustomGameEvent = 280;
|
|
6
|
+
CM_CustomGameEventBounce = 281;
|
|
7
|
+
CM_ClientUIEvent = 282;
|
|
8
|
+
CM_DevPaletteVisibilityChanged = 283;
|
|
9
|
+
CM_WorldUIControllerHasPanelChanged = 284;
|
|
10
|
+
CM_RotateAnchor = 285;
|
|
11
|
+
CM_MAX_BASE = 300;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
enum EClientUIEvent {
|
|
15
|
+
EClientUIEvent_Invalid = 0;
|
|
16
|
+
EClientUIEvent_DialogFinished = 1;
|
|
17
|
+
EClientUIEvent_FireOutput = 2;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
message CClientMsg_CustomGameEvent {
|
|
21
|
+
optional string event_name = 1;
|
|
22
|
+
optional bytes data = 2;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
message CClientMsg_CustomGameEventBounce {
|
|
26
|
+
optional string event_name = 1;
|
|
27
|
+
optional bytes data = 2;
|
|
28
|
+
optional int32 player_index = 3;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
message CClientMsg_ClientUIEvent {
|
|
32
|
+
optional .EClientUIEvent event = 1 [default = EClientUIEvent_Invalid];
|
|
33
|
+
optional uint32 ent_ehandle = 2;
|
|
34
|
+
optional uint32 client_ehandle = 3;
|
|
35
|
+
optional string data1 = 4;
|
|
36
|
+
optional string data2 = 5;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
message CClientMsg_DevPaletteVisibilityChangedEvent {
|
|
40
|
+
optional bool visible = 1;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
message CClientMsg_WorldUIControllerHasPanelChangedEvent {
|
|
44
|
+
optional bool has_panel = 1;
|
|
45
|
+
optional uint32 client_ehandle = 2;
|
|
46
|
+
optional uint32 literal_hand_type = 3;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
message CClientMsg_RotateAnchor {
|
|
50
|
+
optional float angle = 1;
|
|
51
|
+
}
|