RBWCM-SDK Documentation - v1.1.0
    Preparing search index...

    Interface LeaderboardEntry

    Raw data structure for a single entry in a leaderboard.

    interface LeaderboardEntry {
        discordId: string;
        ign: string;
        position: number;
        score: number;
        userId: number;
    }
    Index

    Properties

    discordId: string

    The user's Discord ID.

    ign: string

    The current In-Game Name (IGN) of the user.

    position: number

    The rank/position of the user on the leaderboard (e.g., 1 for 1st place).

    score: number

    The value determining the rank (could be ELO, Wins, or MVPs).

    userId: number

    The internal database ID of the user.