ProfileService

Lifetime player statistics.

ProfileService profiles = api.getProfileService();
profiles.getStats(player).thenAccept(stats -> {
    int wins = stats.getWins();
    double kd = stats.getKDRatio();
});

Methods:

  • getStats(player) – async PlayerStats

  • getCachedStats(player) – sync, for UI

Last updated