whats wrong , i am running it through list of steamids.
Here is my code:-
function checkVacID(){
friend_list = friends;
friend_list.forEach(function(key, index){
community.getSteamUser(key, (err, user) => {
if(err) {
console.log("there was an problem to get the steam user!"+err)
return;
}
else
{
if(user.vacBanned == true)
{
console.log(`${user.name} VAC Banned Profile`);
}
}
});
});
}