Interface PlayerRankings

Holds information on the player's leaderboard rankings

interface PlayerRankings {
    guild: null | number;
    player: PlayerLevelRankings;
    pvp: null | number;
}

Properties

Properties

guild: null | number

The ranking of the player's Guild

This field is currently unused.

The level rankings of the player

pvp: null | number

The PvP ranking of the player

This field is currently unused.

Generated using TypeDoc