harsh Posted January 7 Report Share Posted January 7 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`); } } }); }); } Quote Link to comment Share on other sites More sharing options...
Dr. McKay Posted January 8 Report Share Posted January 8 What is the error you're getting? Quote Link to comment Share on other sites More sharing options...
harsh Posted January 8 Author Report Share Posted January 8 (edited) Its flooding with error in console there was an problem to get the steam user! there was an problem to get the steam user! there was an problem to get the steam user! there was an problem to get the steam user! there was an problem to get the steam user! there was an problem to get the steam user! Edit: when i print err it shows this Error: The specified profile could not be found. Edited January 8 by harsh update Quote Link to comment Share on other sites More sharing options...
Dr. McKay Posted January 9 Report Share Posted January 9 Sounds like you aren't providing valid SteamIDs. Quote Link to comment Share on other sites More sharing options...
harsh Posted January 9 Author Report Share Posted January 9 5 hours ago, Dr. McKay said: Sounds like you aren't providing valid SteamIDs. No steam IDs list are fine I tested by printing. If I test with single steam id it works but not in loop. Quote Link to comment Share on other sites More sharing options...
Dr. McKay Posted January 11 Report Share Posted January 11 It could be that you're running into rate limits. Checking multiple users for VAC bans is better done with the WebAPI. Quote Link to comment Share on other sites More sharing options...
harsh Posted January 12 Author Report Share Posted January 12 Ok but as i know the web api limits rate to 100ids per request so any bypass? Quote Link to comment Share on other sites More sharing options...
Dr. McKay Posted January 12 Report Share Posted January 12 Make multiple requests. steamcommunity.com has stricter limits. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.