I've come across an issue that I am not able to fix: I seem to be able to kick a person from a group chat, but not ban/unban, although the only thing that changes is the chatAction code AFAIK.
I made sure that the message is sent by console.logging SteamClient.prototype._send, and the only byte that differs between kick & ban are 02 turned into 03 in the body, but I guess you might already know that:
Body of a kick:<Buffer de 04 b2 00 00 00 88 01 c9 71 09 04 01 00 10 01 02 00 00 00>Body of a ban:<Buffer de 04 b2 00 00 00 88 01 c9 71 09 04 01 00 10 01 03 00 00 00>
I have tried tinkering with the value of chatAction, but no luck.
Hi! First of all thanks for the great work.
I've come across an issue that I am not able to fix: I seem to be able to kick a person from a group chat, but not ban/unban, although the only thing that changes is the
chatAction
code AFAIK.I made sure that the message is sent by console.logging
SteamClient.prototype._send
, and the only byte that differs between kick & ban are02
turned into03
in the body, but I guess you might already know that: Body of a kick:<Buffer de 04 b2 00 00 00 88 01 c9 71 09 04 01 00 10 01 02 00 00 00>
Body of a ban:<Buffer de 04 b2 00 00 00 88 01 c9 71 09 04 01 00 10 01 03 00 00 00>
I have tried tinkering with the value of
chatAction
, but no luck.Here's the related code: https://github.com/seishun/node-steam/blob/master/lib/handlers/friends/index.js#L182
Any idea what could be wrong? Thanks!