Tobias Steffen
Tobias Steffen
Actually solved it: go into: node_modules/steam-api/steam/containers/player/Bans.js ( steam-api-node/steam/containers/player/Bans.js ) Update the Object like: function Bans(player) { this.steamId = player.SteamId; this.communityBanned = player.CommunityBanned; this.VACBanned = player.VACBanned; this.numberOfVACBans = player.NumberOfVACBans; this.daysSinceLastBan =...
For me this do work with: var User = new SteamApi.User('steam_api_key'); User.GetPlayerBans(steam_id).done(function(result){ ...