node-steam-user icon indicating copy to clipboard operation
node-steam-user copied to clipboard

Support for IPlayerService/GetBadges

Open nolddor opened this issue 4 years ago • 1 comments

Is your feature request related to a problem? Please describe.

Currently there is not way to know actual player_xp for a given steamid which is a must have feature on most level up bots out there to calculate how much sets/badges you need to reach 'your dream level'. Moreover, would be nice to also know crafted badges for a given steam so we can use this method to compare our inventory sets agaist crafted sets for a given steamid.

function getBadges(steamid) { ...

return { player_level: response.player_level, player_xp: response.player_xp, badges: response.badges };

}

Describe the solution you'd like

Created a method to mimic IPlayerService/GetBadges

nolddor avatar Aug 03 '21 18:08 nolddor

It's supported by https://github.com/DoctorMcKay/node-steam-webapi

Revadike avatar Oct 08 '21 00:10 Revadike