Jump to content

Only getting Partial Data

Pending 0.9.10

HighOnTek
HighOnTek

Posted

I've noticed that the Join Intelligence is only giving me (Partial Steam Data) ... I see player name, player SteamID but does not pull account age, profile, or Steam Summary.

HighOnTek

Posted

Also, unrelated ... but you should consider changing the below;

if (e.DaysSinceLastBan > 0 && e.DaysSinceLastBan <= config.Steam.WarnIfLastBanWithinDays) { risk += 20; reasons.Add("recent ban"); }

To something like... 

int totalBans = e.VacBans + e.GameBans;
if (totalBans > 0 && e.DaysSinceLastBan >= 0 && e.DaysSinceLastBan <= config.Steam.WarnIfLastBanWithinDays) { risk += 20; reasons.Add("recent ban"); }

 

Right now,  a same-day ban (DaysSinceLastBan = 0) is ignored. With the change same-day bans count as recent, but only when there is at least one VAC or game ban. This should eliminate false positives on clean accounts with 0 / 0.

HighOnTek

Posted

9 minutes ago, WinterChild84 aka Nexus84 said:

if the profile is private it can only pull what it can see 

 

 

The profile is public, its a test account... I double checked the steam profile just to be sure.

2.3m

Downloads

Total number of downloads.

10.6k

Customers

Total customers served.

152.8k

Files Sold

Total number of files sold.

3.3m

Payments Processed

Total payments processed.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.