harsh Posted January 7, 2022 Report Posted January 7, 2022 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
Dr. McKay Posted January 8, 2022 Report Posted January 8, 2022 What is the error you're getting? Quote
harsh Posted January 8, 2022 Author Report Posted January 8, 2022 (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, 2022 by harsh update Quote
Dr. McKay Posted January 9, 2022 Report Posted January 9, 2022 Sounds like you aren't providing valid SteamIDs. Quote
harsh Posted January 9, 2022 Author Report Posted January 9, 2022 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
Dr. McKay Posted January 11, 2022 Report Posted January 11, 2022 It could be that you're running into rate limits. Checking multiple users for VAC bans is better done with the WebAPI. Quote
harsh Posted January 12, 2022 Author Report Posted January 12, 2022 Ok but as i know the web api limits rate to 100ids per request so any bypass? Quote
Dr. McKay Posted January 12, 2022 Report Posted January 12, 2022 Make multiple requests. steamcommunity.com has stricter limits. Quote
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.