eklypss / PUBGSharp

C# wrapper for PUBG stats API
25 stars 14 forks source link

rank value #17

Open franjodolo opened 6 years ago

franjodolo commented 6 years ago

Hi, I am beginner and i'm sorry if question is stupid, but i cant find rank stats nowhere. I supposed it will be under Stats.Rank, but rank does not exist. Where i can find rank stats? ty

eklypss commented 6 years ago

Assuming you mean rating rank, then just do something like this:

var rating = stats.Stats.Find(x => x.Mode == Mode.Solo && x.Region == Region.EU && x.Season == Seasons.EASeason2).Stats.Find(x => x.Stat == Stats.Rating);
Console.WriteLine($"{rating.Rank}");

I can't test it right now because the servers seem to be down but something like that should work.

franjodolo commented 6 years ago

wow, thank you for fast replay ill try tomorrow, seems servers are, whole day, down