csgo icon indicating copy to clipboard operation
csgo copied to clipboard

Finding correct parameters for different messages

Open ghost opened this issue 3 years ago • 1 comments

I'd like to know where can I find the stuff that I need to pass in as parameters for different messages. For example:

message CGCSystemMsg_GetAccountDetails { option (msgpool_soft_limit) = 128; option (msgpool_hard_limit) = 512; optional fixed64 steamid = 1; optional uint32 appid = 2; }

I have no idea what goes into (msgpool_soft_limit) and (msgpool_hard_limit)

ghost avatar Dec 20 '20 16:12 ghost

Those are unified manages, you can use send_um to send them by specifying the <servicename>.<methodname>#1 then parameters as dict. The service and rpc definitions are located at the end of the file.

Here is an example: https://github.com/ValvePython/steam/issues/299#issuecomment-745463043

rossengeorgiev avatar Dec 20 '20 21:12 rossengeorgiev