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.

Files changed (396) hide show
  1. package/.github/workflows/npm-publish-github-packages.yml +36 -0
  2. package/README.md +25 -0
  3. package/config.json +6 -0
  4. package/helpers/Coordinator.js +157 -0
  5. package/helpers/Helper.js +171 -0
  6. package/helpers/Lobby.js +396 -0
  7. package/helpers/Protos.js +47 -0
  8. package/helpers/VDF.js +140 -0
  9. package/index.js +137 -0
  10. package/package.json +25 -0
  11. package/protobufs/.gitattributes +1 -0
  12. package/protobufs/LICENSE +24 -0
  13. package/protobufs/README.md +7 -0
  14. package/protobufs/artifact/base_gcmessages.proto +532 -0
  15. package/protobufs/artifact/c_peer2peer_netmessages.proto +57 -0
  16. package/protobufs/artifact/clientmessages.proto +51 -0
  17. package/protobufs/artifact/connectionless_netmessages.proto +21 -0
  18. package/protobufs/artifact/dcg_gamemessages.proto +638 -0
  19. package/protobufs/artifact/dcg_gcmessages_client.proto +1590 -0
  20. package/protobufs/artifact/dcg_gcmessages_common.proto +617 -0
  21. package/protobufs/artifact/dcg_gcmessages_server.proto +395 -0
  22. package/protobufs/artifact/demo.proto +149 -0
  23. package/protobufs/artifact/econ_gcmessages.proto +1033 -0
  24. package/protobufs/artifact/econ_shared_enums.proto +47 -0
  25. package/protobufs/artifact/gameevents.proto +121 -0
  26. package/protobufs/artifact/gametoolevents.proto +78 -0
  27. package/protobufs/artifact/gcsdk_gcmessages.proto +391 -0
  28. package/protobufs/artifact/gcsystemmsgs.proto +28 -0
  29. package/protobufs/artifact/netmessages.proto +551 -0
  30. package/protobufs/artifact/network_connection.proto +117 -0
  31. package/protobufs/artifact/networkbasetypes.proto +206 -0
  32. package/protobufs/artifact/networksystem_protomessages.proto +19 -0
  33. package/protobufs/artifact/steamdatagram_messages_auth.proto +38 -0
  34. package/protobufs/artifact/steamdatagram_messages_sdr.proto +441 -0
  35. package/protobufs/artifact/steammessages.proto +636 -0
  36. package/protobufs/artifact/steammessages_base.proto +83 -0
  37. package/protobufs/artifact/steammessages_cloud.steamworkssdk.proto +68 -0
  38. package/protobufs/artifact/steammessages_oauth.steamworkssdk.proto +18 -0
  39. package/protobufs/artifact/steammessages_publishedfile.steamworkssdk.proto +233 -0
  40. package/protobufs/artifact/steammessages_unified_base.steamworkssdk.proto +30 -0
  41. package/protobufs/artifact/steamnetworkingsockets_messages.proto +113 -0
  42. package/protobufs/artifact/steamnetworkingsockets_messages_certs.proto +32 -0
  43. package/protobufs/artifact/steamnetworkingsockets_messages_udp.proto +76 -0
  44. package/protobufs/artifact/te.proto +257 -0
  45. package/protobufs/artifact/uifontfile_format.proto +16 -0
  46. package/protobufs/artifact/usermessages.proto +473 -0
  47. package/protobufs/csgo/base_gcmessages_csgo.proto +547 -0
  48. package/protobufs/csgo/c_peer2peer_netmessages.proto +55 -0
  49. package/protobufs/csgo/clientmessages.proto +48 -0
  50. package/protobufs/csgo/connectionless_netmessages.proto +17 -0
  51. package/protobufs/csgo/cs_gameevents.proto +35 -0
  52. package/protobufs/csgo/cs_usercmd.proto +54 -0
  53. package/protobufs/csgo/cstrike15_gcmessages.proto +1415 -0
  54. package/protobufs/csgo/cstrike15_usermessages.proto +596 -0
  55. package/protobufs/csgo/demo.proto +160 -0
  56. package/protobufs/csgo/econ_gcmessages.proto +228 -0
  57. package/protobufs/csgo/engine_gcmessages.proto +14 -0
  58. package/protobufs/csgo/enums_clientserver.proto +1529 -0
  59. package/protobufs/csgo/fatdemo.proto +125 -0
  60. package/protobufs/csgo/gameevents.proto +120 -0
  61. package/protobufs/csgo/gcsdk_gcmessages.proto +323 -0
  62. package/protobufs/csgo/gcsystemmsgs.proto +242 -0
  63. package/protobufs/csgo/netmessages.proto +607 -0
  64. package/protobufs/csgo/network_connection.proto +126 -0
  65. package/protobufs/csgo/networkbasetypes.proto +244 -0
  66. package/protobufs/csgo/networksystem_protomessages.proto +17 -0
  67. package/protobufs/csgo/steamdatagram_messages_auth.proto +65 -0
  68. package/protobufs/csgo/steamdatagram_messages_sdr.proto +534 -0
  69. package/protobufs/csgo/steammessages.proto +597 -0
  70. package/protobufs/csgo/steammessages_base.proto +301 -0
  71. package/protobufs/csgo/steammessages_cloud.steamworkssdk.proto +68 -0
  72. package/protobufs/csgo/steammessages_gamenetworkingui.proto +61 -0
  73. package/protobufs/csgo/steammessages_helprequest.steamworkssdk.proto +22 -0
  74. package/protobufs/csgo/steammessages_oauth.steamworkssdk.proto +18 -0
  75. package/protobufs/csgo/steammessages_player.steamworkssdk.proto +254 -0
  76. package/protobufs/csgo/steammessages_publishedfile.steamworkssdk.proto +233 -0
  77. package/protobufs/csgo/steammessages_unified_base.steamworkssdk.proto +30 -0
  78. package/protobufs/csgo/steamnetworkingsockets_messages.proto +205 -0
  79. package/protobufs/csgo/steamnetworkingsockets_messages_certs.proto +39 -0
  80. package/protobufs/csgo/steamnetworkingsockets_messages_udp.proto +75 -0
  81. package/protobufs/csgo/te.proto +259 -0
  82. package/protobufs/csgo/uifontfile_format.proto +13 -0
  83. package/protobufs/csgo/usercmd.proto +37 -0
  84. package/protobufs/csgo/usermessages.proto +742 -0
  85. package/protobufs/csgo/valveextensions.proto +17 -0
  86. package/protobufs/dota2/base_gcmessages.proto +400 -0
  87. package/protobufs/dota2/c_peer2peer_netmessages.proto +55 -0
  88. package/protobufs/dota2/clientmessages.proto +48 -0
  89. package/protobufs/dota2/connectionless_netmessages.proto +19 -0
  90. package/protobufs/dota2/demo.proto +160 -0
  91. package/protobufs/dota2/dota_broadcastmessages.proto +29 -0
  92. package/protobufs/dota2/dota_client_enums.proto +93 -0
  93. package/protobufs/dota2/dota_clientmessages.proto +573 -0
  94. package/protobufs/dota2/dota_commonmessages.proto +146 -0
  95. package/protobufs/dota2/dota_gcmessages_client.proto +3336 -0
  96. package/protobufs/dota2/dota_gcmessages_client_battle_report.proto +393 -0
  97. package/protobufs/dota2/dota_gcmessages_client_bingo.proto +108 -0
  98. package/protobufs/dota2/dota_gcmessages_client_candy_shop.proto +302 -0
  99. package/protobufs/dota2/dota_gcmessages_client_chat.proto +239 -0
  100. package/protobufs/dota2/dota_gcmessages_client_coaching.proto +376 -0
  101. package/protobufs/dota2/dota_gcmessages_client_fantasy.proto +564 -0
  102. package/protobufs/dota2/dota_gcmessages_client_guild.proto +651 -0
  103. package/protobufs/dota2/dota_gcmessages_client_guild_events.proto +231 -0
  104. package/protobufs/dota2/dota_gcmessages_client_match_management.proto +468 -0
  105. package/protobufs/dota2/dota_gcmessages_client_showcase.proto +528 -0
  106. package/protobufs/dota2/dota_gcmessages_client_team.proto +275 -0
  107. package/protobufs/dota2/dota_gcmessages_client_tournament.proto +173 -0
  108. package/protobufs/dota2/dota_gcmessages_client_watch.proto +205 -0
  109. package/protobufs/dota2/dota_gcmessages_common.proto +1667 -0
  110. package/protobufs/dota2/dota_gcmessages_common_bot_script.proto +294 -0
  111. package/protobufs/dota2/dota_gcmessages_common_league.proto +351 -0
  112. package/protobufs/dota2/dota_gcmessages_common_lobby.proto +391 -0
  113. package/protobufs/dota2/dota_gcmessages_common_match_management.proto +488 -0
  114. package/protobufs/dota2/dota_gcmessages_msgid.proto +890 -0
  115. package/protobufs/dota2/dota_gcmessages_server.proto +1495 -0
  116. package/protobufs/dota2/dota_gcmessages_webapi.proto +376 -0
  117. package/protobufs/dota2/dota_hud_types.proto +33 -0
  118. package/protobufs/dota2/dota_match_metadata.proto +346 -0
  119. package/protobufs/dota2/dota_messages_mlbot.proto +62 -0
  120. package/protobufs/dota2/dota_modifiers.proto +53 -0
  121. package/protobufs/dota2/dota_scenariomessages.proto +226 -0
  122. package/protobufs/dota2/dota_shared_enums.proto +820 -0
  123. package/protobufs/dota2/dota_usercmd.proto +15 -0
  124. package/protobufs/dota2/dota_usermessages.proto +1655 -0
  125. package/protobufs/dota2/econ_gcmessages.proto +997 -0
  126. package/protobufs/dota2/econ_shared_enums.proto +37 -0
  127. package/protobufs/dota2/engine_gcmessages.proto +14 -0
  128. package/protobufs/dota2/enums_clientserver.proto +1547 -0
  129. package/protobufs/dota2/gameevents.proto +120 -0
  130. package/protobufs/dota2/gametoolevents.proto +78 -0
  131. package/protobufs/dota2/gcsdk_gcmessages.proto +488 -0
  132. package/protobufs/dota2/gcsystemmsgs.proto +26 -0
  133. package/protobufs/dota2/netmessages.proto +604 -0
  134. package/protobufs/dota2/network_connection.proto +126 -0
  135. package/protobufs/dota2/networkbasetypes.proto +244 -0
  136. package/protobufs/dota2/networksystem_protomessages.proto +17 -0
  137. package/protobufs/dota2/steamdatagram_messages_auth.proto +65 -0
  138. package/protobufs/dota2/steamdatagram_messages_sdr.proto +533 -0
  139. package/protobufs/dota2/steammessages.proto +108 -0
  140. package/protobufs/dota2/steammessages_base.proto +332 -0
  141. package/protobufs/dota2/steammessages_clientserver_login.proto +155 -0
  142. package/protobufs/dota2/steammessages_cloud.steamworkssdk.proto +68 -0
  143. package/protobufs/dota2/steammessages_gamenetworkingui.proto +42 -0
  144. package/protobufs/dota2/steammessages_helprequest.steamworkssdk.proto +22 -0
  145. package/protobufs/dota2/steammessages_int.proto +628 -0
  146. package/protobufs/dota2/steammessages_oauth.steamworkssdk.proto +18 -0
  147. package/protobufs/dota2/steammessages_player.steamworkssdk.proto +254 -0
  148. package/protobufs/dota2/steammessages_publishedfile.steamworkssdk.proto +233 -0
  149. package/protobufs/dota2/steammessages_steamlearn.steamworkssdk.proto +360 -0
  150. package/protobufs/dota2/steammessages_unified_base.steamworkssdk.proto +30 -0
  151. package/protobufs/dota2/steamnetworkingsockets_messages.proto +205 -0
  152. package/protobufs/dota2/steamnetworkingsockets_messages_certs.proto +39 -0
  153. package/protobufs/dota2/steamnetworkingsockets_messages_udp.proto +75 -0
  154. package/protobufs/dota2/te.proto +259 -0
  155. package/protobufs/dota2/uifontfile_format.proto +13 -0
  156. package/protobufs/dota2/usercmd.proto +38 -0
  157. package/protobufs/dota2/usermessages.proto +721 -0
  158. package/protobufs/dota2/valveextensions.proto +17 -0
  159. package/protobufs/google/protobuf/descriptor.proto +281 -0
  160. package/protobufs/steam/clientmetrics.proto +45 -0
  161. package/protobufs/steam/content_manifest.proto +62 -0
  162. package/protobufs/steam/contenthubs.proto +41 -0
  163. package/protobufs/steam/encrypted_app_ticket.proto +10 -0
  164. package/protobufs/steam/enums.proto +482 -0
  165. package/protobufs/steam/enums_clientserver.proto +1525 -0
  166. package/protobufs/steam/enums_productinfo.proto +13 -0
  167. package/protobufs/steam/htmlmessages.proto +1031 -0
  168. package/protobufs/steam/offline_ticket.proto +8 -0
  169. package/protobufs/steam/steamdatagram_messages_auth.proto +65 -0
  170. package/protobufs/steam/steamdatagram_messages_sdr.proto +534 -0
  171. package/protobufs/steam/steammessages_accounthardware.steamclient.proto +167 -0
  172. package/protobufs/steam/steammessages_appoverview.proto +202 -0
  173. package/protobufs/steam/steammessages_auth.steamclient.proto +375 -0
  174. package/protobufs/steam/steammessages_base.proto +335 -0
  175. package/protobufs/steam/steammessages_broadcast.steamclient.proto +619 -0
  176. package/protobufs/steam/steammessages_chat.steamclient.proto +1070 -0
  177. package/protobufs/steam/steammessages_client_objects.proto +648 -0
  178. package/protobufs/steam/steammessages_clientlanp2p.proto +43 -0
  179. package/protobufs/steam/steammessages_clientmetrics.steamclient.proto +192 -0
  180. package/protobufs/steam/steammessages_clientnotificationtypes.proto +242 -0
  181. package/protobufs/steam/steammessages_clientserver.proto +392 -0
  182. package/protobufs/steam/steammessages_clientserver_2.proto +771 -0
  183. package/protobufs/steam/steammessages_clientserver_appinfo.proto +131 -0
  184. package/protobufs/steam/steammessages_clientserver_friends.proto +260 -0
  185. package/protobufs/steam/steammessages_clientserver_gameservers.proto +159 -0
  186. package/protobufs/steam/steammessages_clientserver_lbs.proto +70 -0
  187. package/protobufs/steam/steammessages_clientserver_login.proto +167 -0
  188. package/protobufs/steam/steammessages_clientserver_mms.proto +228 -0
  189. package/protobufs/steam/steammessages_clientserver_ucm.proto +206 -0
  190. package/protobufs/steam/steammessages_clientserver_uds.proto +125 -0
  191. package/protobufs/steam/steammessages_clientserver_ufs.proto +172 -0
  192. package/protobufs/steam/steammessages_clientserver_userstats.proto +80 -0
  193. package/protobufs/steam/steammessages_clientsettings.proto +184 -0
  194. package/protobufs/steam/steammessages_cloud.steamclient.proto +422 -0
  195. package/protobufs/steam/steammessages_contentsystem.steamclient.proto +123 -0
  196. package/protobufs/steam/steammessages_credentials.steamclient.proto +96 -0
  197. package/protobufs/steam/steammessages_datapublisher.steamclient.proto +102 -0
  198. package/protobufs/steam/steammessages_depotbuilder.steamclient.proto +99 -0
  199. package/protobufs/steam/steammessages_deviceauth.steamclient.proto +169 -0
  200. package/protobufs/steam/steammessages_econ.steamclient.proto +137 -0
  201. package/protobufs/steam/steammessages_familygroups.steamclient.proto +389 -0
  202. package/protobufs/steam/steammessages_friendmessages.steamclient.proto +141 -0
  203. package/protobufs/steam/steammessages_gamenetworking.steamclient.proto +25 -0
  204. package/protobufs/steam/steammessages_gamenetworkingui.proto +61 -0
  205. package/protobufs/steam/steammessages_gamenotifications.steamclient.proto +131 -0
  206. package/protobufs/steam/steammessages_gameservers.steamclient.proto +136 -0
  207. package/protobufs/steam/steammessages_hiddevices.proto +157 -0
  208. package/protobufs/steam/steammessages_inventory.steamclient.proto +172 -0
  209. package/protobufs/steam/steammessages_linkfilter.steamclient.proto +39 -0
  210. package/protobufs/steam/steammessages_lobbymatchmaking.steamclient.proto +29 -0
  211. package/protobufs/steam/steammessages_market.steamclient.proto +22 -0
  212. package/protobufs/steam/steammessages_marketingmessages.steamclient.proto +264 -0
  213. package/protobufs/steam/steammessages_offline.steamclient.proto +33 -0
  214. package/protobufs/steam/steammessages_parental.steamclient.proto +260 -0
  215. package/protobufs/steam/steammessages_parties.steamclient.proto +75 -0
  216. package/protobufs/steam/steammessages_partnerapps.steamclient.proto +106 -0
  217. package/protobufs/steam/steammessages_player.steamclient.proto +897 -0
  218. package/protobufs/steam/steammessages_publishedfile.steamclient.proto +734 -0
  219. package/protobufs/steam/steammessages_qms.steamclient.proto +111 -0
  220. package/protobufs/steam/steammessages_remoteclient.proto +99 -0
  221. package/protobufs/steam/steammessages_remoteclient_discovery.proto +243 -0
  222. package/protobufs/steam/steammessages_remoteclient_service.steamclient.proto +31 -0
  223. package/protobufs/steam/steammessages_remoteclient_service_messages.proto +217 -0
  224. package/protobufs/steam/steammessages_remoteplay.proto +976 -0
  225. package/protobufs/steam/steammessages_secrets.steamclient.proto +35 -0
  226. package/protobufs/steam/steammessages_shader.steamclient.proto +89 -0
  227. package/protobufs/steam/steammessages_site_license.steamclient.proto +103 -0
  228. package/protobufs/steam/steammessages_sitelicenseclient.proto +38 -0
  229. package/protobufs/steam/steammessages_siteserverui.proto +130 -0
  230. package/protobufs/steam/steammessages_star.steamclient.proto +60 -0
  231. package/protobufs/steam/steammessages_steamtv.steamclient.proto +533 -0
  232. package/protobufs/steam/steammessages_store.steamclient.proto +404 -0
  233. package/protobufs/steam/steammessages_storebrowse.steamclient.proto +430 -0
  234. package/protobufs/steam/steammessages_timedtrial.steamclient.proto +40 -0
  235. package/protobufs/steam/steammessages_twofactor.steamclient.proto +157 -0
  236. package/protobufs/steam/steammessages_unified_base.steamclient.proto +33 -0
  237. package/protobufs/steam/steammessages_unified_test.steamclient.proto +51 -0
  238. package/protobufs/steam/steammessages_useraccount.steamclient.proto +207 -0
  239. package/protobufs/steam/steammessages_vac.steamclient.proto +37 -0
  240. package/protobufs/steam/steammessages_video.steamclient.proto +68 -0
  241. package/protobufs/steam/steammessages_virtualcontroller.proto +138 -0
  242. package/protobufs/steam/steammessages_workshop.steamclient.proto +19 -0
  243. package/protobufs/steam/steamnetworkingsockets_messages.proto +205 -0
  244. package/protobufs/steam/steamnetworkingsockets_messages_certs.proto +39 -0
  245. package/protobufs/steam/steamnetworkingsockets_messages_udp.proto +75 -0
  246. package/protobufs/steam/webuimessages_achievements.proto +29 -0
  247. package/protobufs/steam/webuimessages_base.proto +24 -0
  248. package/protobufs/steam/webuimessages_gamenotes.proto +21 -0
  249. package/protobufs/steam/webuimessages_gamescope.proto +54 -0
  250. package/protobufs/steam/webuimessages_steamengine.proto +41 -0
  251. package/protobufs/steam/webuimessages_steamos.proto +114 -0
  252. package/protobufs/steam/webuimessages_storagedevicemanager.proto +110 -0
  253. package/protobufs/steam/webuimessages_systemmanager.proto +17 -0
  254. package/protobufs/steam/webuimessages_transport.proto +18 -0
  255. package/protobufs/steam/webuimessages_transportvalidation.proto +111 -0
  256. package/protobufs/tf2/base_gcmessages.proto +561 -0
  257. package/protobufs/tf2/econ_gcmessages.proto +368 -0
  258. package/protobufs/tf2/gcsdk_gcmessages.proto +186 -0
  259. package/protobufs/tf2/gcsystemmsgs.proto +178 -0
  260. package/protobufs/tf2/steamdatagram_auth_messages.proto +50 -0
  261. package/protobufs/tf2/steamdatagram_messages.proto +598 -0
  262. package/protobufs/tf2/steamdatagram_messages_auth.proto +65 -0
  263. package/protobufs/tf2/steamdatagram_messages_sdr.proto +518 -0
  264. package/protobufs/tf2/steammessages.proto +577 -0
  265. package/protobufs/tf2/steammessages_gamenetworkingui.proto +42 -0
  266. package/protobufs/tf2/steamnetworkingsockets_messages.proto +204 -0
  267. package/protobufs/tf2/steamnetworkingsockets_messages_certs.proto +38 -0
  268. package/protobufs/tf2/steamnetworkingsockets_messages_udp.proto +75 -0
  269. package/protobufs/tf2/tf_gcmessages.proto +1624 -0
  270. package/protobufs/tf2/tf_proto_def_messages.proto +598 -0
  271. package/protobufs/underlords/base_gcmessages.proto +532 -0
  272. package/protobufs/underlords/c_peer2peer_netmessages.proto +57 -0
  273. package/protobufs/underlords/clientmessages.proto +51 -0
  274. package/protobufs/underlords/connectionless_netmessages.proto +21 -0
  275. package/protobufs/underlords/dac_gamemessages.proto +1376 -0
  276. package/protobufs/underlords/dac_gcmessages_client.proto +1518 -0
  277. package/protobufs/underlords/dac_gcmessages_common.proto +377 -0
  278. package/protobufs/underlords/dac_gcmessages_server.proto +417 -0
  279. package/protobufs/underlords/demo.proto +149 -0
  280. package/protobufs/underlords/econ_gcmessages.proto +1063 -0
  281. package/protobufs/underlords/econ_shared_enums.proto +47 -0
  282. package/protobufs/underlords/enums_clientserver.proto +1538 -0
  283. package/protobufs/underlords/gameevents.proto +121 -0
  284. package/protobufs/underlords/gametoolevents.proto +78 -0
  285. package/protobufs/underlords/gcsdk_gcmessages.proto +448 -0
  286. package/protobufs/underlords/gcsystemmsgs.proto +29 -0
  287. package/protobufs/underlords/netmessages.proto +553 -0
  288. package/protobufs/underlords/network_connection.proto +117 -0
  289. package/protobufs/underlords/networkbasetypes.proto +219 -0
  290. package/protobufs/underlords/networksystem_protomessages.proto +19 -0
  291. package/protobufs/underlords/steamdatagram_messages_auth.proto +64 -0
  292. package/protobufs/underlords/steamdatagram_messages_sdr.proto +482 -0
  293. package/protobufs/underlords/steammessages.proto +701 -0
  294. package/protobufs/underlords/steammessages_base.proto +243 -0
  295. package/protobufs/underlords/steammessages_clientserver_login.proto +155 -0
  296. package/protobufs/underlords/steammessages_cloud.steamworkssdk.proto +68 -0
  297. package/protobufs/underlords/steammessages_helprequest.steamworkssdk.proto +22 -0
  298. package/protobufs/underlords/steammessages_oauth.steamworkssdk.proto +18 -0
  299. package/protobufs/underlords/steammessages_player.steamworkssdk.proto +254 -0
  300. package/protobufs/underlords/steammessages_publishedfile.steamworkssdk.proto +233 -0
  301. package/protobufs/underlords/steammessages_unified_base.steamworkssdk.proto +30 -0
  302. package/protobufs/underlords/steamnetworkingsockets_messages.proto +165 -0
  303. package/protobufs/underlords/steamnetworkingsockets_messages_certs.proto +38 -0
  304. package/protobufs/underlords/steamnetworkingsockets_messages_udp.proto +74 -0
  305. package/protobufs/underlords/te.proto +259 -0
  306. package/protobufs/underlords/uifontfile_format.proto +16 -0
  307. package/protobufs/underlords/usermessages.proto +511 -0
  308. package/protobufs/underlords/valveextensions.proto +11 -0
  309. package/protobufs/update.sh +13 -0
  310. package/protobufs/webui/common.proto +3998 -0
  311. package/protobufs/webui/common_base.proto +27 -0
  312. package/protobufs/webui/service_accountcart.proto +153 -0
  313. package/protobufs/webui/service_accountlinking.proto +27 -0
  314. package/protobufs/webui/service_accountprivacy.proto +42 -0
  315. package/protobufs/webui/service_accountprivateapps.proto +34 -0
  316. package/protobufs/webui/service_auction.proto +97 -0
  317. package/protobufs/webui/service_authentication.proto +222 -0
  318. package/protobufs/webui/service_authenticationsupport.proto +74 -0
  319. package/protobufs/webui/service_broadcast.proto +562 -0
  320. package/protobufs/webui/service_chat.proto +11 -0
  321. package/protobufs/webui/service_chatroom.proto +810 -0
  322. package/protobufs/webui/service_chatusability.proto +107 -0
  323. package/protobufs/webui/service_checkout.proto +83 -0
  324. package/protobufs/webui/service_clan.proto +41 -0
  325. package/protobufs/webui/service_clanchatrooms.proto +25 -0
  326. package/protobufs/webui/service_clanfaqs.proto +202 -0
  327. package/protobufs/webui/service_clientcomm.proto +151 -0
  328. package/protobufs/webui/service_clientmetrics.proto +22 -0
  329. package/protobufs/webui/service_cloud.proto +222 -0
  330. package/protobufs/webui/service_cloudconfigstore.proto +51 -0
  331. package/protobufs/webui/service_cloudgaming.proto +30 -0
  332. package/protobufs/webui/service_community.proto +365 -0
  333. package/protobufs/webui/service_dailydeal.proto +66 -0
  334. package/protobufs/webui/service_econ.proto +134 -0
  335. package/protobufs/webui/service_embedded.proto +24 -0
  336. package/protobufs/webui/service_experimentservice.proto +6 -0
  337. package/protobufs/webui/service_familygroups.proto +329 -0
  338. package/protobufs/webui/service_fovasvideo.proto +15 -0
  339. package/protobufs/webui/service_friendmessages.proto +133 -0
  340. package/protobufs/webui/service_friendslist.proto +70 -0
  341. package/protobufs/webui/service_gamenotes.proto +15 -0
  342. package/protobufs/webui/service_gamerecording.proto +259 -0
  343. package/protobufs/webui/service_gamerecordingclip.proto +83 -0
  344. package/protobufs/webui/service_gamerecordingdebug.proto +52 -0
  345. package/protobufs/webui/service_helprequestlogs.proto +16 -0
  346. package/protobufs/webui/service_loyaltyrewards.proto +252 -0
  347. package/protobufs/webui/service_marketingmessages.proto +215 -0
  348. package/protobufs/webui/service_mobileapp.proto +18 -0
  349. package/protobufs/webui/service_mobileauth.proto +24 -0
  350. package/protobufs/webui/service_mobiledevice.proto +26 -0
  351. package/protobufs/webui/service_mobileperaccount.proto +31 -0
  352. package/protobufs/webui/service_news.proto +110 -0
  353. package/protobufs/webui/service_parental.proto +256 -0
  354. package/protobufs/webui/service_partnermembershipinvite.proto +34 -0
  355. package/protobufs/webui/service_partnerstorebrowse.proto +28 -0
  356. package/protobufs/webui/service_phone.proto +51 -0
  357. package/protobufs/webui/service_physicalgoods.proto +15 -0
  358. package/protobufs/webui/service_player.proto +917 -0
  359. package/protobufs/webui/service_promotioneventinvites.proto +109 -0
  360. package/protobufs/webui/service_promotionplanning.proto +172 -0
  361. package/protobufs/webui/service_publishedfile.proto +711 -0
  362. package/protobufs/webui/service_publishing.proto +183 -0
  363. package/protobufs/webui/service_quest.proto +127 -0
  364. package/protobufs/webui/service_salefeature.proto +357 -0
  365. package/protobufs/webui/service_saleitemrewards.proto +54 -0
  366. package/protobufs/webui/service_shoppingcart.proto +152 -0
  367. package/protobufs/webui/service_steamawards.proto +76 -0
  368. package/protobufs/webui/service_steamcharts.proto +75 -0
  369. package/protobufs/webui/service_steamengine.proto +36 -0
  370. package/protobufs/webui/service_steamlearn.proto +780 -0
  371. package/protobufs/webui/service_steamnotification.proto +73 -0
  372. package/protobufs/webui/service_steamtv.proto +495 -0
  373. package/protobufs/webui/service_steamvrvoicechat.proto +67 -0
  374. package/protobufs/webui/service_steamvrwebrtc.proto +48 -0
  375. package/protobufs/webui/service_storagedevicemanager.proto +104 -0
  376. package/protobufs/webui/service_store.proto +359 -0
  377. package/protobufs/webui/service_storeappsimilarity.proto +76 -0
  378. package/protobufs/webui/service_storebrowse.proto +102 -0
  379. package/protobufs/webui/service_storemarketing.proto +41 -0
  380. package/protobufs/webui/service_storequery.proto +103 -0
  381. package/protobufs/webui/service_storesales.proto +87 -0
  382. package/protobufs/webui/service_storetopsellers.proto +44 -0
  383. package/protobufs/webui/service_systemmanager.proto +11 -0
  384. package/protobufs/webui/service_test_transporterror.proto +6 -0
  385. package/protobufs/webui/service_transportauth.proto +12 -0
  386. package/protobufs/webui/service_transportvalidation.proto +69 -0
  387. package/protobufs/webui/service_twofactor.proto +170 -0
  388. package/protobufs/webui/service_useraccount.proto +138 -0
  389. package/protobufs/webui/service_usergameactivity.proto +34 -0
  390. package/protobufs/webui/service_usergamenotes.proto +70 -0
  391. package/protobufs/webui/service_usernews.proto +68 -0
  392. package/protobufs/webui/service_userreviews.proto +96 -0
  393. package/protobufs/webui/service_video.proto +50 -0
  394. package/protobufs/webui/service_videoclip.proto +48 -0
  395. package/protobufs/webui/service_voicechat.proto +139 -0
  396. package/protobufs/webui/service_webrtc.proto +52 -0
@@ -0,0 +1,1518 @@
1
+ import "steammessages.proto";
2
+ import "dac_gamemessages.proto";
3
+ import "dac_gcmessages_common.proto";
4
+ import "econ_gcmessages.proto";
5
+
6
+ option optimize_for = SPEED;
7
+ option cc_generic_services = false;
8
+
9
+ enum EGCDACClientMessages {
10
+ k_EMsgClientToGCStartMatchmaking = 9010;
11
+ k_EMsgClientToGCStartMatchmakingResponse = 9011;
12
+ k_EMsgClientToGCStopMatchmaking = 9012;
13
+ k_EMsgClientToGCStopMatchmakingResponse = 9013;
14
+ k_EMsgGCToClientMatchmakingStopped = 9014;
15
+ k_EMsgClientToGCLeaveLobby = 9015;
16
+ k_EMsgClientToGCLeaveLobbyResponse = 9016;
17
+ k_EMsgClientToGCIsInMatchmaking = 9017;
18
+ k_EMsgClientToGCIsInMatchmakingResponse = 9018;
19
+ k_EMsgGCToClientSDRTicket = 9120;
20
+ k_EMsgClientToGCReplacementSDRTicket = 9121;
21
+ k_EMsgClientToGCReplacementSDRTicketResponse = 9122;
22
+ k_EMsgClientToGCPartyCreate = 9123;
23
+ k_EMsgClientToGCPartyCreateResponse = 9124;
24
+ k_EMsgClientToGCPartyLeave = 9125;
25
+ k_EMsgClientToGCPartyLeaveResponse = 9126;
26
+ k_EMsgClientToGCPartyJoin = 9127;
27
+ k_EMsgClientToGCPartyJoinResponse = 9128;
28
+ k_EMsgClientToGCPartyAction = 9129;
29
+ k_EMsgClientToGCPartyActionResponse = 9130;
30
+ k_EMsgClientToGCPartyStartMatch = 9131;
31
+ k_EMsgClientToGCPartyStartMatchResponse = 9132;
32
+ k_EMsgClientToGCPartyInviteUser = 9133;
33
+ k_EMsgClientToGCPartyInviteUserResponse = 9134;
34
+ k_EMsgGCToClientPartyEvent = 9135;
35
+ k_EMsgClientToGCPartyClientVersion = 9136;
36
+ k_EMsgGCToClientCanRejoinParty = 9137;
37
+ k_EMsgClientToGCPartyJoinViaCode = 9138;
38
+ k_EMsgClientToGCPartyJoinViaCodeResponse = 9139;
39
+ k_EMsgGCToClientDevMMStatus = 9140;
40
+ k_EMsgClientToGCDevForceMatchFormation = 9141;
41
+ k_EMsgClientToGCEventRequestInfo = 9142;
42
+ k_EMsgGCToClientEventInfo = 9143;
43
+ k_EMsgClientToGCEventClaim = 9144;
44
+ k_EMsgClientToGCEventClaimResponse = 9145;
45
+ k_EMsgClientToGCEquipLoadout = 9146;
46
+ k_EMsgClientToGCEquipLoadoutResponse = 9147;
47
+ k_EMsgClientToGCSpectateUser = 9148;
48
+ k_EMsgClientToGCSpectateUserResponse = 9149;
49
+ k_EMsgClientToGCRecordLocalBotMatch = 9150;
50
+ k_EMsgClientToGCRerollChallenge = 9151;
51
+ k_EMsgClientToGCRerollChallengeResponse = 9152;
52
+ k_EMsgClientToGCClaimChallengeReward = 9153;
53
+ k_EMsgClientToGCClaimChallengeRewardResponse = 9154;
54
+ k_EMsgClientToGCCreateFriendCode = 9155;
55
+ k_EMsgClientToGCCreateFriendCodeResponse = 9156;
56
+ k_EMsgClientToGCGetFriendCodes = 9157;
57
+ k_EMsgClientToGCGetFriendCodesResponse = 9158;
58
+ k_EMsgClientToGCCheckFriendCode = 9159;
59
+ k_EMsgClientToGCCheckFriendCodeResponse = 9160;
60
+ k_EMsgClientToGCRedeemFriendCode = 9161;
61
+ k_EMsgClientToGCRedeemFriendCodeResponse = 9162;
62
+ k_EMsgClientToGCRevokeFriendCode = 9163;
63
+ k_EMsgClientToGCRevokeFriendCodeResponse = 9164;
64
+ k_EMsgClientToGCEventRequestInfoSync = 9165;
65
+ k_EMsgClientToGCEventRequestInfoSyncResponse = 9166;
66
+ k_EMsgClientToGCDevEventOperation = 9169;
67
+ k_EMsgClientToGCDevEventOperationResponse = 9170;
68
+ k_EMsgGCToClientUpdateConsoleCommands = 9171;
69
+ k_EMsgClientToGCPerformAutoActions = 9172;
70
+ k_EMsgClientToGCPerformAutoActionsResponse = 9173;
71
+ k_EMsgClientToGCCanPurchaseItem = 9176;
72
+ k_EMsgClientToGCCanPurchaseItemResponse = 9177;
73
+ k_EMsgClientToGCHandleItemPurchase = 9178;
74
+ k_EMsgClientToGCHandleItemPurchaseResponse = 9179;
75
+ k_EMsgClientToGCEventEquipVirtualItems = 9188;
76
+ k_EMsgClientToGCEventEquipVirtualItemsResponse = 9189;
77
+ k_EMsgClientToGCClearPurchaseReserve = 9190;
78
+ k_EMsgClientToGCClearPurchaseReserveResponse = 9191;
79
+ k_EMsgGCToClientAcquireRegionModeInfo = 9192;
80
+ k_EMsgGCToClientDurationControlWarning = 9193;
81
+ k_EMsgClientToGCGetRegionModeInfo = 9194;
82
+ k_EMsgClientToGCGetRegionModeInfoResponse = 9195;
83
+ k_EMsgGCToClientGameModifiersUpdated = 9196;
84
+ k_EMsgClientToGCEventChallengeProgress = 9197;
85
+ k_EMsgClientToGCEventChallengeProgressResponse = 9198;
86
+ k_EMsgClientToGCAssociateDevice = 9199;
87
+ k_EMsgClientToGCAssociateDeviceResponse = 9200;
88
+ k_EMsgClientToGCEventPurchase = 9201;
89
+ k_EMsgClientToGCEventPurchaseResponse = 9202;
90
+ k_EMsgClientToGCPartySetGameModifier = 9203;
91
+ k_EMsgClientToGCPartySetGameModifierResponse = 9204;
92
+ k_EMsgClientToGCAckSupportCredits = 9205;
93
+ k_EMsgClientToGCAckSupportCreditsResponse = 9206;
94
+ k_EMsgClientToGCSetTeamName = 9207;
95
+ k_EMsgClientToGCSetTeamNameResponse = 9208;
96
+ k_EMsgClientToGCDevOperation = 9212;
97
+ k_EMsgClientToGCDevOperationResponse = 9213;
98
+ k_EMsgClientToGCUpdateAccountSync = 9214;
99
+ k_EMsgClientToGCUpdateAccountSyncResponse = 9215;
100
+ k_EMsgClientToGCGetDuosRanks = 9216;
101
+ k_EMsgClientToGCGetDuosRanksResponse = 9217;
102
+ k_EMsgClientToGCGetProfile = 9218;
103
+ k_EMsgClientToGCGetProfileResponse = 9219;
104
+ k_EMsgClientToGCGetMatchHistory = 9220;
105
+ k_EMsgClientToGCGetMatchHistoryResponse = 9221;
106
+ k_EMsgClientToGCEventPurchaseCurrency = 9222;
107
+ k_EMsgClientToGCEventPurchaseCurrencyResponse = 9223;
108
+ k_EMsgClientToGCGetFriendRanks = 9224;
109
+ k_EMsgClientToGCGetFriendRanksResponse = 9225;
110
+ k_EMsgClientToGCGetPuzzleLeaderboards = 9226;
111
+ k_EMsgClientToGCGetPuzzleLeaderboardsResponse = 9227;
112
+ k_EMsgClientToGCGetPostMatchStats = 9228;
113
+ k_EMsgClientToGCGetPostMatchStatsResponse = 9229;
114
+ k_EMsgClientToGCEventChallengeProgressWithCurrency = 9230;
115
+ k_EMsgClientToGCEventChallengeProgressWithCurrencyResponse = 9231;
116
+ }
117
+
118
+ enum EItemEditorReservationResult {
119
+ k_EItemEditorReservationResult_OK = 1;
120
+ k_EItemEditorReservationResult_AlreadyExists = 2;
121
+ k_EItemEditorReservationResult_Reserved = 3;
122
+ k_EItemEditorReservationResult_TimedOut = 4;
123
+ }
124
+
125
+ enum EClientStatsEvent {
126
+ k_EClientStatsEvent_Boot = 1;
127
+ k_EClientStatsEvent_StartMatch = 2;
128
+ k_EClientStatsEvent_AbandonMatch = 3;
129
+ k_EClientStatsEvent_FinishMatch = 4;
130
+ k_EClientStatsEvent_StartSteamSignon = 5;
131
+ k_EClientStatsEvent_FinishSteamSignon = 6;
132
+ }
133
+
134
+ message CMsgWebAPIClientDeviceInfo {
135
+ enum EFlags {
136
+ k_eFlags_StartedTutorial = 1;
137
+ k_eFlags_FinishedTutorial = 2;
138
+ k_eFlags_SideLoaded = 4;
139
+ k_eFlags_China = 8;
140
+ k_eFlags_RegisteredAccount = 16;
141
+ k_eFlags_StartedTutorialBot = 32;
142
+ }
143
+
144
+ optional fixed64 device_id = 1;
145
+ optional .EDACPlatform platform = 2 [default = k_eDACPlatform_None];
146
+ optional fixed32 salt = 3;
147
+ optional uint32 time_stamp = 4;
148
+ optional fixed64 access_key = 5;
149
+ optional uint32 client_version = 6;
150
+ optional uint32 flags = 7;
151
+ optional uint32 bot_matches_started = 8;
152
+ optional uint32 bot_matches_completed = 9;
153
+ optional string country = 10;
154
+ optional uint32 times_launched = 11;
155
+ }
156
+
157
+ message CMsgPartyMMInfo {
158
+ optional .EDACPlatform platform = 1 [default = k_eDACPlatform_None];
159
+ optional .CMsgRegionPingTimesClient ping_times = 2;
160
+ optional uint32 client_version = 3;
161
+ optional .EDACRegionMode region_mode = 5 [default = k_EDACRegionMode_ROW];
162
+ optional uint32 active_challenge_slot_id = 6;
163
+ }
164
+
165
+ message CMsgDACClientHello {
166
+ optional bool side_loaded = 1;
167
+ optional .EDACRegionMode region_mode = 2 [default = k_EDACRegionMode_ROW];
168
+ }
169
+
170
+ message CMsgClientToGCStartMatchmaking {
171
+ optional .CMsgStartFindingMatchInfo match_info = 1;
172
+ optional .CMsgRegionPingTimesClient ping_times = 2;
173
+ }
174
+
175
+ message CMsgClientToGCStartMatchmakingResponse {
176
+ enum EResultCode {
177
+ k_EResult_OK = 0;
178
+ k_EResult_AlreadyFindingMatch = 1;
179
+ k_EResult_PartyMemberInLobby = 2;
180
+ k_EResult_InvalidClientVersion = 3;
181
+ k_EResult_MatchmakingDisabled = 4;
182
+ k_EResult_MatchmakingTooBusy = 5;
183
+ k_EResult_InternalError = 6;
184
+ k_EResult_NoRegionPings = 7;
185
+ k_EResult_InParty = 8;
186
+ k_EResult_ModeLocked = 9;
187
+ k_EResult_ModeBanned = 10;
188
+ k_EResult_RegionInfoNotProvided = 11;
189
+ k_EResult_DurationControlBlocked = 12;
190
+ }
191
+
192
+ optional .CMsgClientToGCStartMatchmakingResponse.EResultCode result = 1 [default = k_EResult_OK];
193
+ optional string debug_message = 2;
194
+ }
195
+
196
+ message CMsgClientToGCStopMatchmaking {
197
+ }
198
+
199
+ message CMsgClientToGCStopMatchmakingResponse {
200
+ optional bool success = 1;
201
+ }
202
+
203
+ message CMsgGCToClientMatchmakingStopped {
204
+ enum EReason {
205
+ k_EResult_Unspecified = 0;
206
+ k_EResult_VersionUpdated = 1;
207
+ }
208
+
209
+ optional .CMsgGCToClientMatchmakingStopped.EReason reason = 1 [default = k_EResult_Unspecified];
210
+ }
211
+
212
+ message CMsgClientToGCLeaveLobby {
213
+ optional uint64 lobby_id = 1;
214
+ }
215
+
216
+ message CMsgClientToGCLeaveLobbyResponse {
217
+ }
218
+
219
+ message CMsgClientWelcomeDAC {
220
+ optional uint32 currency = 1;
221
+ repeated .CExtraMsgBlock extra_messages = 2;
222
+ optional uint32 compatibility_version = 3;
223
+ optional uint64 steam_announcement_gid = 5;
224
+ repeated string console_commands = 6;
225
+ optional string patch_notes_preview_password = 7;
226
+ optional uint32 latest_compat_version = 8;
227
+ optional uint32 latest_client_version = 9;
228
+ }
229
+
230
+ message CMsgClientToGCIsInMatchmaking {
231
+ }
232
+
233
+ message CMsgClientToGCIsInMatchmakingResponse {
234
+ optional bool in_matchmaking = 1;
235
+ }
236
+
237
+ message CMsgGCToClientSDRTicket {
238
+ optional string ticket = 1;
239
+ }
240
+
241
+ message CMsgClientToGCReplacementSDRTicket {
242
+ optional fixed64 lobby_id = 1;
243
+ }
244
+
245
+ message CMsgClientToGCReplacementSDRTicketResponse {
246
+ optional string ticket = 1;
247
+ optional string error_message = 2;
248
+ }
249
+
250
+ message CMsgClientToGCPartyCreate {
251
+ optional .CMsgPartyMMInfo party_mm_info = 1;
252
+ optional bool start_ready = 2;
253
+ optional uint32 invite_account_id = 3;
254
+ optional bool disable_party_code = 4;
255
+ }
256
+
257
+ message CMsgClientToGCPartyCreateResponse {
258
+ enum EResponse {
259
+ k_eInternalError = 0;
260
+ k_eSuccess = 1;
261
+ k_eAlreadyInParty = 2;
262
+ k_eDisabled = 3;
263
+ k_eInvalidVersion = 4;
264
+ k_eNoRegionPings = 5;
265
+ k_eTooBusy = 6;
266
+ k_eRateLimited = 7;
267
+ k_eNotFriends = 8;
268
+ k_eRegionInfoNotProvided = 9;
269
+ k_eDurationControlBlocked = 10;
270
+ }
271
+
272
+ optional .CMsgClientToGCPartyCreateResponse.EResponse result = 1 [default = k_eInternalError];
273
+ optional fixed64 party_id = 2;
274
+ }
275
+
276
+ message CMsgClientToGCPartyLeave {
277
+ optional fixed64 party_id = 1;
278
+ }
279
+
280
+ message CMsgClientToGCPartyLeaveResponse {
281
+ enum EResponse {
282
+ k_eInternalError = 0;
283
+ k_eSuccess = 1;
284
+ k_eNotInParty = 2;
285
+ k_eInMatchMaking = 3;
286
+ }
287
+
288
+ optional .CMsgClientToGCPartyLeaveResponse.EResponse result = 1 [default = k_eInternalError];
289
+ }
290
+
291
+ message CMsgClientToGCPartyJoin {
292
+ optional fixed64 party_id = 1;
293
+ optional bool is_rejoin = 2;
294
+ optional .CMsgPartyMMInfo party_mm_info = 3;
295
+ optional bool start_ready = 4;
296
+ }
297
+
298
+ message CMsgClientToGCPartyJoinResponse {
299
+ enum EResponse {
300
+ k_eInternalError = 0;
301
+ k_eSuccess = 1;
302
+ k_eAlreadyInParty = 2;
303
+ k_eDisabled = 3;
304
+ k_eInvalidPartyID = 4;
305
+ k_eInvalidPermissions = 5;
306
+ k_eInvalidVersion = 6;
307
+ k_eNoRegionPings = 7;
308
+ k_eTooBusy = 8;
309
+ k_eInvalidCode = 9;
310
+ k_eRateLimited = 10;
311
+ k_eRegionInfoNotProvided = 11;
312
+ k_eDurationControlBlocked = 12;
313
+ }
314
+
315
+ optional .CMsgClientToGCPartyJoinResponse.EResponse result = 1 [default = k_eInternalError];
316
+ }
317
+
318
+ message CMsgClientToGCPartyAction {
319
+ enum EAction {
320
+ k_eKickUser = 1;
321
+ k_eCancelInvite = 2;
322
+ k_eCancelFindMatch = 3;
323
+ k_eSetReady = 4;
324
+ k_eSetPlayerType = 5;
325
+ k_eSetBotDifficulty = 6;
326
+ k_eEnablePartyCode = 7;
327
+ k_eSetMemberTeam = 8;
328
+ }
329
+
330
+ optional fixed64 party_id = 1;
331
+ optional uint32 target_account_id = 2;
332
+ optional .CMsgClientToGCPartyAction.EAction action_id = 3 [default = k_eKickUser];
333
+ optional uint64 uint_value = 4;
334
+ optional bool bool_value = 5;
335
+ }
336
+
337
+ message CMsgClientToGCPartyActionResponse {
338
+ enum EResponse {
339
+ k_eInternalError = 0;
340
+ k_eSuccess = 1;
341
+ k_eInvalidPartyID = 2;
342
+ k_eInvalidPermissions = 3;
343
+ k_eInvalidTarget = 4;
344
+ k_eInvalidValue = 5;
345
+ k_eInMatchMaking = 6;
346
+ k_eInMatch = 7;
347
+ k_eDisabled = 8;
348
+ k_eTooBusy = 9;
349
+ k_eRateLimited = 10;
350
+ }
351
+
352
+ optional .CMsgClientToGCPartyActionResponse.EResponse result = 1 [default = k_eInternalError];
353
+ }
354
+
355
+ message CMsgClientToGCPartyStartMatch {
356
+ optional fixed64 party_id = 1;
357
+ optional string server_search_key = 3;
358
+ optional .EDACMatchMode match_mode = 4 [default = k_EDACMatchMode_Invalid];
359
+ optional bool dev_ignore_staging_files = 5;
360
+ optional .EDACGameMode game_mode = 6 [default = k_EDACGameMode_Invalid];
361
+ optional .EDACBotDifficulty bot_difficulty = 7 [default = k_EDACBotDifficulty_None];
362
+ optional .CMsgGameModeSettings game_mode_settings = 8;
363
+ }
364
+
365
+ message CMsgClientToGCPartyStartMatchResponse {
366
+ enum EResponse {
367
+ k_eInternalError = 0;
368
+ k_eSuccess = 1;
369
+ k_eDisabled = 2;
370
+ k_eInvalidPartyID = 3;
371
+ k_eInvalidPermissions = 4;
372
+ k_eTooBusy = 5;
373
+ k_eInMatchmaking = 6;
374
+ k_eInMatch = 7;
375
+ k_eInvalidVersion = 10;
376
+ k_ePlayersNotReady = 11;
377
+ k_eCannotSelectRegion = 12;
378
+ k_eNotAllPlayersAvailable = 13;
379
+ k_eTooManyPlayersForMM = 14;
380
+ k_eTooManyPlayersForPrivate = 15;
381
+ k_eTooManySpectatorsForMM = 16;
382
+ k_eTooManySpectatorsForPrivate = 17;
383
+ k_eTooFewPlayersForMM = 18;
384
+ k_eTooFewPlayersForPrivate = 19;
385
+ k_eMismatchedVersions = 20;
386
+ k_eInvalidPartyMatchMode = 21;
387
+ k_eNotAllPlayersCanPlayRanked = 22;
388
+ k_ePlayerBannedFromMode = 23;
389
+ k_eTooManyPlayersOnTeam = 24;
390
+ k_eUnableToFillTeam = 25;
391
+ k_eInvalidTeam = 26;
392
+ }
393
+
394
+ optional .CMsgClientToGCPartyStartMatchResponse.EResponse result = 1 [default = k_eInternalError];
395
+ optional uint32 account_id = 2;
396
+ }
397
+
398
+ message CMsgClientToGCPartyInviteUser {
399
+ optional fixed64 party_id = 1;
400
+ optional uint32 invite_account_id = 2;
401
+ }
402
+
403
+ message CMsgClientToGCPartyInviteUserResponse {
404
+ enum EResponse {
405
+ k_eInternalError = 0;
406
+ k_eSuccess = 1;
407
+ k_eAlreadyInvited = 2;
408
+ k_eInvalidPermissions = 3;
409
+ k_eInvalidPartyID = 4;
410
+ k_eDisabled = 5;
411
+ k_eTooManyInvites = 6;
412
+ k_eNotFriends = 7;
413
+ k_eTooBusy = 8;
414
+ k_eRateLimited = 9;
415
+ }
416
+
417
+ optional .CMsgClientToGCPartyInviteUserResponse.EResponse result = 1 [default = k_eInternalError];
418
+ optional bool user_online = 2;
419
+ }
420
+
421
+ message CMsgGCToClientPartyEvent {
422
+ enum EEvent {
423
+ k_ePlayerKicked = 1;
424
+ k_eJoinedParty = 3;
425
+ k_eMatchCompleted = 4;
426
+ k_eMatchMakingStopped_User = 5;
427
+ k_eMatchMakingStopped_Version = 6;
428
+ k_eMatchMakingStopped_NoServerRegion = 7;
429
+ k_eLeftParty = 8;
430
+ k_eDeclinedInvite = 9;
431
+ k_eMatchMakingStopped_FailedOther = 10;
432
+ }
433
+
434
+ optional fixed64 party_id = 1;
435
+ optional .CMsgGCToClientPartyEvent.EEvent event = 2 [default = k_ePlayerKicked];
436
+ optional uint32 initiator_account_id = 3;
437
+ optional uint32 target_account_id = 4;
438
+ optional bytes bytes_data = 5;
439
+ optional string str_data = 6;
440
+ optional uint64 uint_data = 7;
441
+ }
442
+
443
+ message CMsgClientToGCPartyClientVersion {
444
+ optional fixed64 party_id = 1;
445
+ optional .CMsgPartyMMInfo party_mm_info = 2;
446
+ }
447
+
448
+ message CMsgGCToClientCanRejoinParty {
449
+ optional fixed64 party_id = 1;
450
+ }
451
+
452
+ message CMsgClientToGCPartyJoinViaCode {
453
+ optional uint64 join_code = 1;
454
+ optional .CMsgPartyMMInfo party_mm_info = 2;
455
+ optional bool start_ready = 3;
456
+ }
457
+
458
+ message CMsgClientToGCPartyJoinViaCodeResponse {
459
+ optional .CMsgClientToGCPartyJoinResponse.EResponse result = 1 [default = k_eInternalError];
460
+ optional fixed64 party_id = 2;
461
+ }
462
+
463
+ message CMsgGCToClientDevMMStatus {
464
+ message Party {
465
+ optional uint32 party_size = 1;
466
+ optional uint32 compat_version = 2;
467
+ optional .EDACGameMode game_mode = 3 [default = k_EDACGameMode_Invalid];
468
+ optional .EDACMatchMode match_mode = 4 [default = k_EDACMatchMode_Invalid];
469
+ }
470
+
471
+ repeated .CMsgGCToClientDevMMStatus.Party parties = 2;
472
+ }
473
+
474
+ message CMsgGCItemEditorReservationsRequest {
475
+ }
476
+
477
+ message CMsgGCItemEditorReservation {
478
+ optional uint32 def_index = 1;
479
+ optional string name = 2;
480
+ }
481
+
482
+ message CMsgGCItemEditorReservationsResponse {
483
+ repeated .CMsgGCItemEditorReservation reservations = 1;
484
+ }
485
+
486
+ message CMsgGCItemEditorReserveItemDef {
487
+ optional uint32 def_index = 1;
488
+ optional string username = 2;
489
+ }
490
+
491
+ message CMsgGCItemEditorReserveItemDefResponse {
492
+ optional uint32 def_index = 1;
493
+ optional string username = 2;
494
+ optional uint32 result = 3;
495
+ }
496
+
497
+ message CMsgGCItemEditorReleaseReservation {
498
+ optional uint32 def_index = 1;
499
+ optional string username = 2;
500
+ }
501
+
502
+ message CMsgGCItemEditorReleaseReservationResponse {
503
+ optional uint32 def_index = 1;
504
+ optional bool released = 2;
505
+ }
506
+
507
+ message CMsgClientToGCDevForceMatchFormation {
508
+ }
509
+
510
+ message CMsgClientToGCEventRequestInfo {
511
+ optional uint32 account_id = 1;
512
+ optional uint32 event_id = 2;
513
+ }
514
+
515
+ message CMsgGCToClientEventInfo {
516
+ message EventState {
517
+ optional bool event_owned = 1;
518
+ }
519
+
520
+ message Currency {
521
+ optional uint32 currency_id = 1;
522
+ optional uint32 balance = 2;
523
+ }
524
+
525
+ message Claim {
526
+ optional uint32 claim_id = 1;
527
+ optional uint32 num_claims = 2;
528
+ }
529
+
530
+ message Challenge {
531
+ optional uint32 slot_id = 1;
532
+ optional uint32 sequence_id = 2;
533
+ optional uint32 challenge_id = 3;
534
+ optional uint32 created_time = 4;
535
+ optional uint32 claimed = 5;
536
+ optional uint32 progress = 6;
537
+ optional uint32 config_id = 7;
538
+ optional bool active = 8;
539
+ }
540
+
541
+ message VirtualItem {
542
+ optional uint32 def_index = 1;
543
+ }
544
+
545
+ message VirtualItemEquip {
546
+ optional uint32 equip_slot = 1;
547
+ optional uint32 equip_sub_slot = 2;
548
+ optional uint32 def_index = 3;
549
+ }
550
+
551
+ optional uint32 account_id = 1;
552
+ optional uint32 event_id = 2;
553
+ optional .CMsgGCToClientEventInfo.EventState event_state = 3;
554
+ repeated .CMsgGCToClientEventInfo.Currency currencies = 5;
555
+ repeated .CMsgGCToClientEventInfo.Claim claims = 6;
556
+ repeated .CMsgGCToClientEventInfo.Challenge challenges = 7;
557
+ repeated .CMsgGCToClientEventInfo.VirtualItem virtual_items = 8;
558
+ repeated .CMsgGCToClientEventInfo.VirtualItemEquip virtual_item_equips = 9;
559
+ repeated .CMsgGCToClientEventInfo.VirtualItem virtual_item_revokes = 11;
560
+ optional bool merge_contents = 10;
561
+ }
562
+
563
+ message CMsgClientToGCEventRequestInfoSync {
564
+ optional uint32 account_id = 1;
565
+ optional uint32 event_id = 2;
566
+ }
567
+
568
+ message CMsgClientToGCEventRequestInfoSyncResponse {
569
+ enum EResponse {
570
+ k_eInternalError = 0;
571
+ k_eSuccess = 1;
572
+ k_eInvalidEventID = 3;
573
+ k_eInvalidPermissions = 4;
574
+ k_eRateLimited = 5;
575
+ k_eDisabled = 6;
576
+ k_eTooBusy = 7;
577
+ }
578
+
579
+ optional .CMsgClientToGCEventRequestInfoSyncResponse.EResponse result = 1 [default = k_eInternalError];
580
+ optional .CMsgGCToClientEventInfo event_info = 2;
581
+ }
582
+
583
+ message CMsgGCToClientEventInfoSerialize {
584
+ optional .CMsgGCToClientEventInfo event_info = 1;
585
+ optional uint32 time_stamp = 2;
586
+ optional uint32 version = 3;
587
+ optional uint32 account_id = 4;
588
+ }
589
+
590
+ message CMsgClientToGCEventClaim {
591
+ optional uint32 event_id = 1;
592
+ optional uint32 claim_id = 2;
593
+ optional uint32 starting_value = 3;
594
+ }
595
+
596
+ message CMsgEventClaimRewards {
597
+ message Item {
598
+ optional uint32 def_index = 1;
599
+ optional uint64 item_id = 2;
600
+ }
601
+
602
+ message Achievement {
603
+ optional uint32 achievement_id = 1;
604
+ optional uint32 progress = 2;
605
+ }
606
+
607
+ message Currency {
608
+ optional uint32 currency_id = 1;
609
+ optional uint32 grant = 2;
610
+ }
611
+
612
+ message Challenge {
613
+ optional uint32 challenge_slot = 1;
614
+ optional uint32 progress = 2;
615
+ optional bool activated = 3;
616
+ optional bool rolled = 4;
617
+ }
618
+
619
+ repeated .CMsgEventClaimRewards.Item items = 1;
620
+ repeated .CMsgEventClaimRewards.Achievement achievements = 2;
621
+ repeated .CMsgEventClaimRewards.Currency currencies = 3;
622
+ repeated .CMsgEventClaimRewards.Challenge challenges = 4;
623
+ }
624
+
625
+ message CMsgClientToGCEventClaimResponse {
626
+ enum EResponse {
627
+ k_eInternalError = 0;
628
+ k_eSuccess = 1;
629
+ k_eStartingValueMismatch = 2;
630
+ k_eInvalidEventID = 3;
631
+ k_eInvalidClaimID = 4;
632
+ k_eRequirementsNotMet = 5;
633
+ k_eDisabled = 6;
634
+ k_eTooBusy = 7;
635
+ }
636
+
637
+ optional .CMsgClientToGCEventClaimResponse.EResponse result = 1 [default = k_eInternalError];
638
+ optional .CMsgEventClaimRewards rewards = 2;
639
+ }
640
+
641
+ message CMsgClientToGCEquipLoadout {
642
+ repeated uint32 loadout_slot = 1;
643
+ repeated uint64 item_id = 2;
644
+ repeated uint32 loadout_sub_slot = 3;
645
+ }
646
+
647
+ message CMsgClientToGCEquipLoadoutResponse {
648
+ enum EResponse {
649
+ k_eInternalError = 0;
650
+ k_eSuccess = 1;
651
+ k_eDisabled = 2;
652
+ k_eTooBusy = 3;
653
+ k_eInvalidLoadoutSlot = 4;
654
+ k_eInvalidItem = 5;
655
+ k_eInvalidItemType = 6;
656
+ k_eItemExpired = 7;
657
+ k_eRateLimited = 8;
658
+ k_eTooManyChanges = 9;
659
+ }
660
+
661
+ optional .CMsgClientToGCEquipLoadoutResponse.EResponse result = 1 [default = k_eInternalError];
662
+ }
663
+
664
+ message CMsgClientToGCSpectateUser {
665
+ optional uint32 spectate_account_id = 1;
666
+ optional .EDACRegionMode region_mode = 2 [default = k_EDACRegionMode_ROW];
667
+ }
668
+
669
+ message CMsgClientToGCSpectateUserResponse {
670
+ enum EResponse {
671
+ k_eInternalError = 0;
672
+ k_eSuccess = 1;
673
+ k_eDisabled = 2;
674
+ k_eTooBusy = 3;
675
+ k_eRateLimited = 4;
676
+ k_eNotInGame = 5;
677
+ k_eDisabledForGame = 6;
678
+ k_eServerFull = 7;
679
+ k_eNotFriends = 8;
680
+ k_eRegionInfoNotProvided = 9;
681
+ k_eDurationControlBlocked = 10;
682
+ }
683
+
684
+ optional .CMsgClientToGCSpectateUserResponse.EResponse result = 1 [default = k_eInternalError];
685
+ optional fixed64 server_steam_id = 3;
686
+ optional bytes sdr_key = 4;
687
+ optional uint32 udp_connect_ip = 5;
688
+ optional uint32 udp_connect_port = 6;
689
+ }
690
+
691
+ message CMsgClientToGCRecordLocalBotMatch {
692
+ optional uint32 time_stamp = 1;
693
+ optional uint32 version = 2;
694
+ optional uint32 duration_s = 3;
695
+ optional uint32 final_place = 4;
696
+ optional uint32 difficulty = 5;
697
+ optional uint32 rounds = 6;
698
+ optional uint32 remaining_players = 7;
699
+ optional .EDACPlatform platform = 8 [default = k_eDACPlatform_None];
700
+ optional bool is_tutorial = 9;
701
+ optional .EDACGameMode game_mode = 10 [default = k_EDACGameMode_Invalid];
702
+ }
703
+
704
+ message CMsgClientToGCRerollChallenge {
705
+ optional uint32 event_id = 1;
706
+ optional uint32 slot_id = 2;
707
+ optional uint32 sequence_id = 3;
708
+ }
709
+
710
+ message CMsgClientToGCRerollChallengeResponse {
711
+ enum EResponse {
712
+ k_eInternalError = 0;
713
+ k_eSuccess = 1;
714
+ k_eDisabled = 2;
715
+ k_eTooBusy = 3;
716
+ k_eRateLimited = 4;
717
+ k_eRerollCooldown = 5;
718
+ k_eNotComplete = 6;
719
+ k_eCannotReroll = 7;
720
+ k_eSequenceMismatch = 8;
721
+ k_eRewardsNotClaimed = 9;
722
+ k_eEventInactive = 10;
723
+ k_eRequiresOwningEvent = 11;
724
+ }
725
+
726
+ optional .CMsgClientToGCRerollChallengeResponse.EResponse result = 1 [default = k_eInternalError];
727
+ }
728
+
729
+ message CMsgClientToGCClaimChallengeReward {
730
+ optional uint32 event_id = 1;
731
+ optional uint32 slot_id = 2;
732
+ optional uint32 sequence_id = 3;
733
+ optional uint32 starting_claimed = 4;
734
+ }
735
+
736
+ message CMsgClientToGCClaimChallengeRewardResponse {
737
+ enum EResponse {
738
+ k_eInternalError = 0;
739
+ k_eSuccess = 1;
740
+ k_eDisabled = 2;
741
+ k_eTooBusy = 3;
742
+ k_eRateLimited = 4;
743
+ k_eNotComplete = 5;
744
+ k_eAlreadyClaimed = 6;
745
+ k_eSequenceMismatch = 7;
746
+ k_eEventInactive = 8;
747
+ k_eNoRewards = 9;
748
+ }
749
+
750
+ optional .CMsgClientToGCClaimChallengeRewardResponse.EResponse result = 1 [default = k_eInternalError];
751
+ optional .CMsgEventClaimRewards rewards = 2;
752
+ }
753
+
754
+ message CMsgClientToGCGetFriendCodes {
755
+ }
756
+
757
+ message CMsgClientToGCGetFriendCodesResponse {
758
+ message Code {
759
+ optional uint64 friend_code = 1;
760
+ optional uint32 remaining_uses = 2;
761
+ optional uint32 expiry_time = 3;
762
+ }
763
+
764
+ enum EResponse {
765
+ k_eInternalError = 0;
766
+ k_eSuccess = 1;
767
+ k_eDisabled = 2;
768
+ k_eTooBusy = 3;
769
+ k_eRateLimited = 4;
770
+ }
771
+
772
+ optional .CMsgClientToGCGetFriendCodesResponse.EResponse result = 1 [default = k_eInternalError];
773
+ repeated .CMsgClientToGCGetFriendCodesResponse.Code code_list = 2;
774
+ }
775
+
776
+ message CMsgClientToGCCreateFriendCode {
777
+ }
778
+
779
+ message CMsgClientToGCCreateFriendCodeResponse {
780
+ enum EResponse {
781
+ k_eInternalError = 0;
782
+ k_eSuccess = 1;
783
+ k_eDisabled = 2;
784
+ k_eTooBusy = 3;
785
+ k_eRateLimited = 4;
786
+ k_eTooManyCodes = 5;
787
+ }
788
+
789
+ optional .CMsgClientToGCCreateFriendCodeResponse.EResponse result = 1 [default = k_eInternalError];
790
+ optional .CMsgClientToGCGetFriendCodesResponse.Code code = 2;
791
+ }
792
+
793
+ message CMsgClientToGCCheckFriendCode {
794
+ optional uint64 friend_code = 1;
795
+ }
796
+
797
+ message CMsgClientToGCCheckFriendCodeResponse {
798
+ enum EResponse {
799
+ k_eInternalError = 0;
800
+ k_eSuccess = 1;
801
+ k_eDisabled = 2;
802
+ k_eTooBusy = 3;
803
+ k_eRateLimited = 4;
804
+ k_eInvalidKey = 5;
805
+ k_eKeyExpired = 6;
806
+ k_eKeyConsumed = 7;
807
+ k_eAlreadyFriends = 8;
808
+ k_eTargetHasTooManyFriends = 9;
809
+ k_eHaveTooManyFriends = 10;
810
+ k_eBlocked = 11;
811
+ k_eIgnored = 12;
812
+ }
813
+
814
+ optional .CMsgClientToGCCheckFriendCodeResponse.EResponse result = 1 [default = k_eInternalError];
815
+ optional uint32 account_id = 2;
816
+ }
817
+
818
+ message CMsgClientToGCRedeemFriendCode {
819
+ optional uint64 friend_code = 1;
820
+ optional uint32 target_account_id = 2;
821
+ }
822
+
823
+ message CMsgClientToGCRedeemFriendCodeResponse {
824
+ optional .CMsgClientToGCCheckFriendCodeResponse.EResponse result = 1 [default = k_eInternalError];
825
+ }
826
+
827
+ message CMsgClientToGCRevokeFriendCode {
828
+ optional uint64 friend_code = 1;
829
+ }
830
+
831
+ message CMsgClientToGCRevokeFriendCodeResponse {
832
+ enum EResponse {
833
+ k_eInternalError = 0;
834
+ k_eSuccess = 1;
835
+ k_eDisabled = 2;
836
+ k_eTooBusy = 3;
837
+ k_eRateLimited = 4;
838
+ k_eInvalidKey = 5;
839
+ }
840
+
841
+ optional .CMsgClientToGCRevokeFriendCodeResponse.EResponse result = 1 [default = k_eInternalError];
842
+ }
843
+
844
+ message CMsgClientToGCDevEventOperation {
845
+ enum EOperation {
846
+ k_eOp_Reset = 0;
847
+ k_eOp_GrantCurrency = 1;
848
+ k_eOp_GrantChallenge = 2;
849
+ k_eOp_RerollCooldown = 3;
850
+ k_eOp_SetCurrencyLevel = 4;
851
+ k_eOp_SetCurrencyValue = 5;
852
+ k_eOp_SetChallengeValue = 6;
853
+ k_eOp_GrantOwnership = 7;
854
+ k_eOp_GrantVirtualItem = 8;
855
+ k_eOp_RevokeVirtualItem = 9;
856
+ k_eOp_SetChallenge = 10;
857
+ }
858
+
859
+ optional .CMsgClientToGCDevEventOperation.EOperation operation = 1 [default = k_eOp_Reset];
860
+ optional uint32 event_id = 2;
861
+ optional uint32 id = 3;
862
+ optional uint32 amount = 4;
863
+ optional uint64 uint_val1 = 5;
864
+ optional uint64 uint_val2 = 6;
865
+ }
866
+
867
+ message CMsgClientToGCDevEventOperationResponse {
868
+ }
869
+
870
+ message CMsgGCToClientUpdateConsoleCommands {
871
+ repeated string console_commands = 1;
872
+ }
873
+
874
+ message CMsgClientToGCPerformAutoActions {
875
+ optional uint32 event_id = 1;
876
+ repeated uint32 update_challenge_slots = 4;
877
+ repeated uint32 update_claims = 5;
878
+ optional uint32 client_version = 6;
879
+ }
880
+
881
+ message CMsgClientToGCPerformAutoActionsResponse {
882
+ enum EResponse {
883
+ k_eInternalError = 0;
884
+ k_eSuccess = 1;
885
+ k_eDisabled = 2;
886
+ k_eTooBusy = 3;
887
+ k_eInvalidEventID = 4;
888
+ }
889
+
890
+ optional .CMsgClientToGCPerformAutoActionsResponse.EResponse result = 1 [default = k_eInternalError];
891
+ optional .CMsgEventClaimRewards rewards = 2;
892
+ }
893
+
894
+ message CMsgClientToGCCanPurchaseItem {
895
+ optional uint32 def_index = 1;
896
+ optional uint32 client_version = 2;
897
+ optional .EDACStoreID store_id = 3 [default = k_EDACStoreID_Invalid];
898
+ optional uint32 quantity = 4;
899
+ optional .EDACPlatform platform = 5 [default = k_eDACPlatform_None];
900
+ optional uint64 device_id = 6;
901
+ optional bool create_reservation = 7;
902
+ optional bool ignore_reservations = 8;
903
+ }
904
+
905
+ message CMsgClientToGCCanPurchaseItemResponse {
906
+ message Reservation {
907
+ optional .EDACStoreID store_id = 1 [default = k_EDACStoreID_Invalid];
908
+ optional uint32 quantity = 2;
909
+ optional uint32 time_stamp = 3;
910
+ optional uint64 device_id = 4;
911
+ }
912
+
913
+ enum EResponse {
914
+ k_eInternalError = 0;
915
+ k_eSuccess = 1;
916
+ k_eDisabled = 2;
917
+ k_eTooBusy = 3;
918
+ k_eItemDisabled = 4;
919
+ k_eInvalidItem = 5;
920
+ k_eStoreDisabled = 6;
921
+ k_eInvalidClientVersion = 7;
922
+ k_eInvalidQuantity = 8;
923
+ k_eOutstandingReservations = 9;
924
+ k_eExceedsCreditLimit = 10;
925
+ }
926
+
927
+ optional .CMsgClientToGCCanPurchaseItemResponse.EResponse result = 1 [default = k_eInternalError];
928
+ repeated .CMsgClientToGCCanPurchaseItemResponse.Reservation reservations = 2;
929
+ }
930
+
931
+ message CMsgClientToGCHandleItemPurchase {
932
+ message StoreInfo_iOS {
933
+ optional bytes receipt = 1;
934
+ }
935
+
936
+ message StoreInfo_GooglePlay {
937
+ optional string token = 1;
938
+ optional string store_sku_id = 2;
939
+ }
940
+
941
+ message StoreInfo_Test {
942
+ optional string token = 1;
943
+ optional uint32 def_index = 2;
944
+ optional uint32 quantity = 3;
945
+ }
946
+
947
+ optional .EDACStoreID store_id = 1 [default = k_EDACStoreID_Invalid];
948
+ optional uint32 client_version = 2;
949
+ optional uint64 device_id = 3;
950
+ optional .CMsgClientToGCHandleItemPurchase.StoreInfo_iOS store_info_ios = 4;
951
+ optional .CMsgClientToGCHandleItemPurchase.StoreInfo_GooglePlay store_info_google_play = 5;
952
+ repeated .CMsgClientToGCHandleItemPurchase.StoreInfo_Test store_info_test = 6;
953
+ optional .EDACPlatform platform = 7 [default = k_eDACPlatform_None];
954
+ }
955
+
956
+ message CMsgClientToGCHandleItemPurchaseResponse {
957
+ message PurchaseResponse {
958
+ enum EPurchaseResponse {
959
+ k_eInternalError = 0;
960
+ k_eSuccess = 1;
961
+ k_ePurchaseItemError = 2;
962
+ k_eInvalidOrderID = 3;
963
+ k_eUnableToValidate = 4;
964
+ k_eAlreadyResolved = 5;
965
+ k_eResolvedOnOtherAccount = 6;
966
+ k_ePurchaseRefunded = 7;
967
+ k_ePurchasePending = 8;
968
+ k_ePurchaseCanceled = 9;
969
+ }
970
+
971
+ optional .CMsgClientToGCHandleItemPurchaseResponse.PurchaseResponse.EPurchaseResponse result = 1 [default = k_eInternalError];
972
+ optional .CMsgClientToGCCanPurchaseItemResponse.EResponse purchase_item_result = 2 [default = k_eInternalError];
973
+ optional string store_sku_id = 3;
974
+ optional string token = 4;
975
+ }
976
+
977
+ enum EResponse {
978
+ k_eInternalError = 0;
979
+ k_eSuccess = 1;
980
+ k_eStoreDisabled = 2;
981
+ k_eTooBusy = 3;
982
+ k_eInvalidReceipt = 4;
983
+ k_eUnableToValidateReceipt = 5;
984
+ k_eInvalidClientVersion = 6;
985
+ }
986
+
987
+ optional .CMsgClientToGCHandleItemPurchaseResponse.EResponse result = 1 [default = k_eInternalError];
988
+ repeated .CMsgClientToGCHandleItemPurchaseResponse.PurchaseResponse purchase_responses = 2;
989
+ }
990
+
991
+ message CMsgClientToGCEventEquipVirtualItems {
992
+ message Equip {
993
+ optional uint32 def_index = 2;
994
+ optional uint32 equip_slot = 3;
995
+ optional uint32 equip_sub_slot = 4;
996
+ }
997
+
998
+ optional uint32 event_id = 1;
999
+ repeated .CMsgClientToGCEventEquipVirtualItems.Equip equip_list = 2;
1000
+ }
1001
+
1002
+ message CMsgClientToGCEventEquipVirtualItemsResponse {
1003
+ enum EResponse {
1004
+ k_eInternalError = 0;
1005
+ k_eSuccess = 1;
1006
+ k_eDisabled = 2;
1007
+ k_eTooBusy = 3;
1008
+ k_eInvalidItem = 4;
1009
+ k_eInvalidSlot = 5;
1010
+ k_eEventInactive = 6;
1011
+ k_eTooManyEquips = 7;
1012
+ k_eDuplicateEquip = 8;
1013
+ }
1014
+
1015
+ optional .CMsgClientToGCEventEquipVirtualItemsResponse.EResponse result = 1 [default = k_eInternalError];
1016
+ }
1017
+
1018
+ message CMsgClientToGCClearPurchaseReserve {
1019
+ optional uint32 def_index = 1;
1020
+ optional .EDACStoreID store_id = 2 [default = k_EDACStoreID_Invalid];
1021
+ optional uint64 device_id = 3;
1022
+ }
1023
+
1024
+ message CMsgClientToGCClearPurchaseReserveResponse {
1025
+ enum EResponse {
1026
+ k_eInternalError = 0;
1027
+ k_eSuccess = 1;
1028
+ k_eTooBusy = 2;
1029
+ }
1030
+
1031
+ optional .CMsgClientToGCClearPurchaseReserveResponse.EResponse result = 1 [default = k_eInternalError];
1032
+ }
1033
+
1034
+ message CMsgGCToClientAcquireRegionModeInfo {
1035
+ optional string password = 1;
1036
+ }
1037
+
1038
+ message CMsgGCToClientDurationControlWarning {
1039
+ optional uint32 time_remaining = 1;
1040
+ }
1041
+
1042
+ message CMsgClientToGCGetRegionModeInfo {
1043
+ }
1044
+
1045
+ message CMsgClientToGCGetRegionModeInfoResponse {
1046
+ optional string password = 1;
1047
+ }
1048
+
1049
+ message CMsgGCToClientGameModifiersUpdated {
1050
+ optional .CMsgGameModifiers game_modifiers = 1;
1051
+ optional uint32 next_update_time = 2;
1052
+ }
1053
+
1054
+ message CMsgClientToGCEventChallengeProgress {
1055
+ optional uint32 event_id = 1;
1056
+ optional uint32 slot_id = 2;
1057
+ optional uint32 sequence_id = 3;
1058
+ optional uint32 progress = 4;
1059
+ optional uint64 audit_data = 5;
1060
+ }
1061
+
1062
+ message CMsgClientToGCEventChallengeProgressResponse {
1063
+ enum EResponse {
1064
+ k_eInternalError = 0;
1065
+ k_eSuccess = 1;
1066
+ k_eDisabled = 2;
1067
+ k_eTooBusy = 3;
1068
+ k_eEventInactive = 4;
1069
+ k_eInvalidSlot = 5;
1070
+ k_eInvalidChallengeConfig = 6;
1071
+ k_eSequenceMismatch = 7;
1072
+ k_eRateLimited = 8;
1073
+ }
1074
+
1075
+ optional .CMsgClientToGCEventChallengeProgressResponse.EResponse result = 1 [default = k_eInternalError];
1076
+ }
1077
+
1078
+ message CMsgClientToGCEventChallengeProgressWithCurrency {
1079
+ optional uint32 event_id = 1;
1080
+ optional uint32 slot_id = 2;
1081
+ optional uint32 sequence_id = 3;
1082
+ optional uint32 progress = 4;
1083
+ optional uint32 currency_id = 5;
1084
+ optional uint32 starting_balance = 6;
1085
+ optional uint64 audit_data = 7;
1086
+ }
1087
+
1088
+ message CMsgClientToGCEventChallengeProgressWithCurrencyResponse {
1089
+ enum EResponse {
1090
+ k_eInternalError = 0;
1091
+ k_eSuccess = 1;
1092
+ k_eDisabled = 2;
1093
+ k_eTooBusy = 3;
1094
+ k_eEventInactive = 4;
1095
+ k_eInvalidSlot = 5;
1096
+ k_eInvalidChallengeConfig = 6;
1097
+ k_eSequenceMismatch = 7;
1098
+ k_eInvalidCurrency = 8;
1099
+ k_eInsufficientCurrency = 9;
1100
+ k_eRateLimited = 10;
1101
+ k_eInvalidStartingBalance = 11;
1102
+ }
1103
+
1104
+ optional .CMsgClientToGCEventChallengeProgressWithCurrencyResponse.EResponse result = 1 [default = k_eInternalError];
1105
+ }
1106
+
1107
+ message CMsgClientToGCAssociateDevice {
1108
+ optional uint64 device_id = 1;
1109
+ optional .EDACPlatform platform = 2 [default = k_eDACPlatform_None];
1110
+ optional uint32 salt = 3;
1111
+ }
1112
+
1113
+ message CMsgClientToGCAssociateDeviceResponse {
1114
+ enum EResponse {
1115
+ k_eInternalError = 0;
1116
+ k_eSuccess = 1;
1117
+ k_eDisabled = 2;
1118
+ k_eTooBusy = 3;
1119
+ k_eRateLimited = 4;
1120
+ k_eNotFound = 5;
1121
+ }
1122
+
1123
+ optional .CMsgClientToGCAssociateDeviceResponse.EResponse result = 1 [default = k_eInternalError];
1124
+ }
1125
+
1126
+ message CMsgClientToGCEventPurchase {
1127
+ optional uint32 event_id = 1;
1128
+ optional uint32 expected_credits = 2;
1129
+ }
1130
+
1131
+ message CMsgClientToGCEventPurchaseResponse {
1132
+ enum EResponse {
1133
+ k_eInternalError = 0;
1134
+ k_eSuccess = 1;
1135
+ k_eDisabled = 2;
1136
+ k_eTooBusy = 3;
1137
+ k_eInvalidEvent = 5;
1138
+ k_eInsufficientCredits = 6;
1139
+ k_eExpectedCostMismatch = 7;
1140
+ k_eAlreadyOwned = 8;
1141
+ }
1142
+
1143
+ optional .CMsgClientToGCEventPurchaseResponse.EResponse result = 1 [default = k_eInternalError];
1144
+ }
1145
+
1146
+ message CMsgClientToGCPartySetGameModifier {
1147
+ optional uint64 party_id = 1;
1148
+ optional bool use_custom_modifier = 2;
1149
+ optional .CMsgGameModifiers custom_modifier = 3;
1150
+ }
1151
+
1152
+ message CMsgClientToGCPartySetGameModifierResponse {
1153
+ enum EResponse {
1154
+ k_eInternalError = 0;
1155
+ k_eSuccess = 1;
1156
+ k_eDisabled = 2;
1157
+ k_eTooBusy = 3;
1158
+ k_eInvalidPartyID = 4;
1159
+ k_eInvalidPermissions = 5;
1160
+ k_eInvalidModifier = 6;
1161
+ k_eInMatchMaking = 7;
1162
+ }
1163
+
1164
+ optional .CMsgClientToGCPartySetGameModifierResponse.EResponse result = 1 [default = k_eInternalError];
1165
+ }
1166
+
1167
+ message CMsgClientToGCAckSupportCredits {
1168
+ optional uint64 item_id = 1;
1169
+ }
1170
+
1171
+ message CMsgClientToGCAckSupportCreditsResponse {
1172
+ enum EResponse {
1173
+ k_eInternalError = 0;
1174
+ k_eSuccess = 1;
1175
+ k_eDisabled = 2;
1176
+ k_eTooBusy = 3;
1177
+ k_eInvalidItem = 4;
1178
+ }
1179
+
1180
+ optional .CMsgClientToGCAckSupportCreditsResponse.EResponse result = 1 [default = k_eInternalError];
1181
+ }
1182
+
1183
+ message CMsgClientToGCSetTeamName {
1184
+ optional uint32 routing_id = 1;
1185
+ optional uint32 other_account_id = 2;
1186
+ optional string team_name = 3;
1187
+ }
1188
+
1189
+ message CMsgClientToGCSetTeamNameResponse {
1190
+ enum EResponse {
1191
+ k_eInternalError = 0;
1192
+ k_eSuccess = 1;
1193
+ k_eDisabled = 2;
1194
+ k_eTooBusy = 3;
1195
+ k_eNotUnlocked = 4;
1196
+ k_eInCooldown = 5;
1197
+ k_eNameTooLong = 6;
1198
+ k_eCommunityBanned = 7;
1199
+ k_eGameBanned = 8;
1200
+ }
1201
+
1202
+ optional .CMsgClientToGCSetTeamNameResponse.EResponse result = 1 [default = k_eInternalError];
1203
+ }
1204
+
1205
+ message CMsgClientToGCDevOperation {
1206
+ enum EOperation {
1207
+ k_eSetGACFlags = 0;
1208
+ k_eGrantCreditObject = 1;
1209
+ k_eClearAllCredits = 2;
1210
+ k_eForceAccountSyncValue = 3;
1211
+ k_eSetAccountSearchKey = 4;
1212
+ }
1213
+
1214
+ optional .CMsgClientToGCDevOperation.EOperation op = 1 [default = k_eSetGACFlags];
1215
+ optional uint64 uint_value = 2;
1216
+ optional string str_value = 3;
1217
+ optional uint64 uint_value_2 = 4;
1218
+ }
1219
+
1220
+ message CMsgClientToGCDevOperationResponse {
1221
+ }
1222
+
1223
+ message CMsgClientToGCUpdateAccountSync {
1224
+ repeated uint32 ids = 1;
1225
+ repeated uint32 values = 2;
1226
+ }
1227
+
1228
+ message CMsgClientToGCUpdateAccountSyncResponse {
1229
+ enum EResponse {
1230
+ k_eInternalError = 0;
1231
+ k_eSuccess = 1;
1232
+ k_eDisabled = 2;
1233
+ k_eTooBusy = 3;
1234
+ k_eInvalidMessage = 4;
1235
+ }
1236
+
1237
+ optional .CMsgClientToGCUpdateAccountSyncResponse.EResponse result = 1 [default = k_eInternalError];
1238
+ }
1239
+
1240
+ message CMsgClientToGCGetDuosRanks {
1241
+ enum ESortOrder {
1242
+ k_eSort_LastPlayed = 0;
1243
+ k_eSort_HighestRanked = 1;
1244
+ k_eSort_MostGames = 2;
1245
+ }
1246
+
1247
+ optional uint32 account_id = 1;
1248
+ optional uint32 cursor_value = 2;
1249
+ optional uint32 batch_size = 3;
1250
+ optional .CMsgClientToGCGetDuosRanks.ESortOrder sort_order = 4 [default = k_eSort_LastPlayed];
1251
+ }
1252
+
1253
+ message CMsgClientToGCGetDuosRanksResponse {
1254
+ message Team {
1255
+ optional uint32 other_account_id = 1;
1256
+ optional uint32 last_played = 2;
1257
+ optional string team_name = 3;
1258
+ optional uint32 games_played = 4;
1259
+ optional uint32 num_first_place = 6;
1260
+ optional uint32 num_top_three = 7;
1261
+ optional uint32 mmr_level = 8;
1262
+ optional uint32 mmr_level_progress = 9;
1263
+ optional uint32 mmr_level_score = 10;
1264
+ optional uint32 leaderboard_place = 12;
1265
+ }
1266
+
1267
+ enum EResponse {
1268
+ k_eInternalError = 0;
1269
+ k_eSuccess = 1;
1270
+ k_eDisabled = 2;
1271
+ k_eTooBusy = 3;
1272
+ k_eInvalidMessage = 4;
1273
+ k_eRateLimited = 5;
1274
+ k_eInvalidPermission = 6;
1275
+ }
1276
+
1277
+ optional .CMsgClientToGCGetDuosRanksResponse.EResponse result = 1 [default = k_eInternalError];
1278
+ repeated .CMsgClientToGCGetDuosRanksResponse.Team teams = 2;
1279
+ optional uint32 cursor_value = 3;
1280
+ }
1281
+
1282
+ message CMsgClientToGCGetProfile {
1283
+ optional uint32 account_id = 1;
1284
+ }
1285
+
1286
+ message CMsgClientToGCGetProfileResponse {
1287
+ message CityCrawlProgress {
1288
+ optional uint32 underlord_id = 1;
1289
+ optional uint32 progress = 2;
1290
+ optional uint32 total = 3;
1291
+ }
1292
+
1293
+ enum EResponse {
1294
+ k_eInternalError = 0;
1295
+ k_eSuccess = 1;
1296
+ k_eDisabled = 2;
1297
+ k_eTooBusy = 3;
1298
+ k_eInvalidMessage = 4;
1299
+ k_eRateLimited = 5;
1300
+ k_eInvalidPermission = 6;
1301
+ }
1302
+
1303
+ optional .CMsgClientToGCGetProfileResponse.EResponse result = 1 [default = k_eInternalError];
1304
+ optional int32 bp_progress = 10;
1305
+ repeated .CMsgClientToGCGetProfileResponse.CityCrawlProgress citycrawl_progress = 20;
1306
+ optional int32 knockout_rank_score = 30;
1307
+ optional int32 standard_rank_score = 31;
1308
+ optional int32 stats_underlord_winrate_1 = 40;
1309
+ optional int32 stats_underlord_winrate_2 = 41;
1310
+ optional int32 stats_underlord_winrate_3 = 42;
1311
+ optional int32 stats_underlord_winrate_4 = 43;
1312
+ optional uint32 selected_underlord_id = 50;
1313
+ optional uint32 selected_underlord_poster_title = 51;
1314
+ optional int32 stats_first_finishes = 60;
1315
+ optional int32 stats_second_finishes = 61;
1316
+ optional int32 stats_third_finishes = 62;
1317
+ optional int32 stats_games_played = 70;
1318
+ optional int32 stats_most_total_damage = 71;
1319
+ optional int32 stats_highest_net_worth = 72;
1320
+ optional int32 stats_latest_round = 73;
1321
+ optional int32 stats_undefeated_knockout_games = 74;
1322
+ }
1323
+
1324
+ message CMsgClientToGCGetMatchHistory {
1325
+ optional uint32 account_id = 1;
1326
+ optional uint32 request_rows = 2;
1327
+ optional uint64 match_id_cursor = 3;
1328
+ }
1329
+
1330
+ message CMsgClientToGCGetMatchHistoryResponse {
1331
+ message Match {
1332
+ optional uint32 start_time = 1;
1333
+ optional uint64 match_id = 2;
1334
+ optional uint32 elimination_place = 3;
1335
+ optional uint32 elimination_time = 4;
1336
+ optional uint32 elimination_round = 5;
1337
+ optional .EDACPlatform platform = 6 [default = k_eDACPlatform_None];
1338
+ optional uint32 underlord_id = 7;
1339
+ optional .EDACMatchMode match_mode = 8 [default = k_EDACMatchMode_Invalid];
1340
+ optional .EDACGameMode game_mode = 9 [default = k_EDACGameMode_Invalid];
1341
+ optional uint32 match_length = 10;
1342
+ optional uint32 match_rounds = 11;
1343
+ optional uint32 event_id = 12;
1344
+ optional uint32 duos_partner = 13;
1345
+ optional uint32 match_salt = 14;
1346
+ }
1347
+
1348
+ message MatchStats {
1349
+ optional uint64 match_id = 1;
1350
+ repeated uint32 stat_id = 2;
1351
+ repeated uint32 value = 3;
1352
+ }
1353
+
1354
+ enum EResponse {
1355
+ k_eInternalError = 0;
1356
+ k_eSuccess = 1;
1357
+ k_eDisabled = 2;
1358
+ k_eTooBusy = 3;
1359
+ k_eInvalidMessage = 4;
1360
+ k_eRateLimited = 5;
1361
+ k_eInvalidPermission = 6;
1362
+ }
1363
+
1364
+ optional .CMsgClientToGCGetMatchHistoryResponse.EResponse result = 1 [default = k_eInternalError];
1365
+ repeated .CMsgClientToGCGetMatchHistoryResponse.Match matches = 2;
1366
+ optional uint64 match_id_cursor = 3;
1367
+ repeated .CMsgClientToGCGetMatchHistoryResponse.MatchStats match_stats = 4;
1368
+ }
1369
+
1370
+ message CMsgClientToGCEventPurchaseCurrency {
1371
+ optional uint32 event_id = 1;
1372
+ optional uint32 purchase_quantity = 2;
1373
+ optional uint32 expected_cost = 3;
1374
+ optional uint32 currency_id = 4;
1375
+ optional uint32 starting_balance = 5;
1376
+ }
1377
+
1378
+ message CMsgClientToGCEventPurchaseCurrencyResponse {
1379
+ enum EResponse {
1380
+ k_eInternalError = 0;
1381
+ k_eSuccess = 1;
1382
+ k_eDisabled = 2;
1383
+ k_eTooBusy = 3;
1384
+ k_eEventNotOwned = 4;
1385
+ k_eInvalidCurrency = 5;
1386
+ k_eEventClosed = 6;
1387
+ k_eInvalidQuantity = 7;
1388
+ k_eInvalidExpectedCost = 8;
1389
+ k_eInvalidStartingBalance = 9;
1390
+ k_eInsufficientCredits = 10;
1391
+ k_eCurrencyOverflow = 11;
1392
+ }
1393
+
1394
+ optional .CMsgClientToGCEventPurchaseCurrencyResponse.EResponse result = 1 [default = k_eInternalError];
1395
+ }
1396
+
1397
+ message CMsgClientToGCGetFriendRanks {
1398
+ }
1399
+
1400
+ message CMsgClientToGCGetFriendRanksResponse {
1401
+ message FriendRank {
1402
+ optional uint32 account_id = 1;
1403
+ optional uint32 mmr_level = 2;
1404
+ optional uint32 turbo_mmr_level = 3;
1405
+ }
1406
+
1407
+ enum EResponse {
1408
+ k_eInternalError = 0;
1409
+ k_eSuccess = 1;
1410
+ k_eDisabled = 2;
1411
+ k_eTooBusy = 3;
1412
+ k_eRateLimited = 4;
1413
+ }
1414
+
1415
+ optional .CMsgClientToGCGetFriendRanksResponse.EResponse result = 1 [default = k_eInternalError];
1416
+ repeated .CMsgClientToGCGetFriendRanksResponse.FriendRank friends = 2;
1417
+ }
1418
+
1419
+ message CMsgClientToGCGetPuzzleLeaderboards {
1420
+ optional uint32 puzzle_id = 1;
1421
+ optional uint32 count = 2;
1422
+ }
1423
+
1424
+ message CMsgClientToGCGetPuzzleLeaderboardsResponse {
1425
+ message LeaderboardEntry {
1426
+ optional uint32 account_id = 1;
1427
+ optional string persona = 2;
1428
+ optional uint32 value = 3;
1429
+ }
1430
+
1431
+ message Leaderboard {
1432
+ optional uint32 leaderboard_type = 1;
1433
+ repeated .CMsgClientToGCGetPuzzleLeaderboardsResponse.LeaderboardEntry leaderboard_entry = 2;
1434
+ optional .CMsgHistogram histogram = 3;
1435
+ optional string board_code = 4;
1436
+ }
1437
+
1438
+ enum EResponse {
1439
+ k_eInternalError = 0;
1440
+ k_eSuccess = 1;
1441
+ k_eDisabled = 2;
1442
+ k_eTooBusy = 3;
1443
+ k_eRateLimited = 4;
1444
+ }
1445
+
1446
+ optional .CMsgClientToGCGetPuzzleLeaderboardsResponse.EResponse result = 1 [default = k_eInternalError];
1447
+ repeated .CMsgClientToGCGetPuzzleLeaderboardsResponse.Leaderboard leaderboards = 2;
1448
+ }
1449
+
1450
+ message CMsgClientToGCGetPostMatchStats {
1451
+ optional uint64 match_id = 1;
1452
+ }
1453
+
1454
+ message CMsgClientToGCGetPostMatchStatsResponse {
1455
+ enum EResponse {
1456
+ k_eInternalError = 0;
1457
+ k_eSuccess = 1;
1458
+ k_eDisabled = 2;
1459
+ k_eTooBusy = 3;
1460
+ k_eRateLimited = 4;
1461
+ }
1462
+
1463
+ optional .CMsgClientToGCGetPostMatchStatsResponse.EResponse result = 1 [default = k_eInternalError];
1464
+ optional .CMsgPublicPostMatchStats match_stats = 2;
1465
+ }
1466
+
1467
+ message CMsgMatchStats {
1468
+ message RoundUnitStats {
1469
+ optional uint32 entity_id = 1;
1470
+ optional uint32 num_wins = 2;
1471
+ optional uint32 num_losses = 3;
1472
+ optional uint64 final_place = 4;
1473
+ }
1474
+
1475
+ message RoundStats {
1476
+ optional uint32 round_min = 1;
1477
+ optional uint32 round_max = 2;
1478
+ optional uint32 num_combat_rounds = 3;
1479
+ optional uint64 starting_life = 4;
1480
+ optional uint64 player_level = 5;
1481
+ optional uint64 rerolls = 6;
1482
+ optional uint64 gold = 7;
1483
+ optional uint64 interest_gold = 8;
1484
+ optional uint64 streak_gold = 9;
1485
+ optional uint64 bonus_gold = 10;
1486
+ optional uint64 total_damage = 11;
1487
+ optional uint64 total_losses = 12;
1488
+ optional bool is_creep = 13;
1489
+ repeated .CMsgMatchStats.RoundUnitStats unit_stats = 14;
1490
+ }
1491
+
1492
+ message UnderlordStats {
1493
+ optional uint32 underlord_id = 1;
1494
+ optional uint32 total_players = 2;
1495
+ optional uint64 total_place = 3;
1496
+ }
1497
+
1498
+ message EntityInfo {
1499
+ optional uint32 entity_id = 1;
1500
+ optional string name = 2;
1501
+ optional string type = 3;
1502
+ }
1503
+
1504
+ optional uint32 timestamp = 1;
1505
+ optional .EDACMatchMode match_mode = 2 [default = k_EDACMatchMode_Invalid];
1506
+ optional .EDACGameMode game_mode = 3 [default = k_EDACGameMode_Invalid];
1507
+ optional uint32 mmr_min = 4;
1508
+ optional uint32 mmr_max = 5;
1509
+ optional uint32 num_games = 10;
1510
+ optional uint32 num_players = 11;
1511
+ optional uint64 total_duration_seconds = 12;
1512
+ optional uint64 total_rounds = 13;
1513
+ optional uint64 player_duration_seconds = 14;
1514
+ optional uint64 player_rounds = 15;
1515
+ repeated .CMsgMatchStats.RoundStats round_stats = 20;
1516
+ repeated .CMsgMatchStats.UnderlordStats underlord_stats = 21;
1517
+ repeated .CMsgMatchStats.EntityInfo entity_infos = 22;
1518
+ }