Take a sneak peak of our new documentation Read More
Last Updated: 4/3/2023, 1:06:06 AM

# Leaderboards

# Overview

AccelByte Cloud’s Leaderboard service enables you to keep track of players’ scores and ranking in the game by collecting data from the Cloud Statistics (opens new window) service such as the number of matches played, the player’s matchmaking rating, and their experience points. The Leaderboard service will use this data to calculate each player’s rank. This service supports multiple leaderboards in one game, including a daily leaderboard for day to day player activities, weekly leaderboard for a weekly player recap, a monthly leaderboard to record player activities every month, a seasonal leaderboard for seasonal player activities such as holiday events, and also an all-time leaderboard to record and player activities for all time. Each cycle of the leaderboard is explained in greater detail below.

# Leaderboard Cycles

  • The Daily Leaderboard collects players' daily scores and rankings. Players can start playing the game and the leaderboard service will collect their score and ranking until the daily reset time. Players have to keep playing to maintain their position on the daily leaderboard.
  • The Weekly Leaderboard is similar to the Daily Leaderboard, but player scores and rankings will be updated every week. Players have to keep playing to maintain their position on the weekly leaderboard.
    The Monthly Leaderboard is also similar to the Daily and Weekly Leaderboards. The player's score and ranking will be updated every month.
  • The All-Time Leaderboard doesn't have any time constraint; it will record the player’s score and ranking as long as the leaderboard exists in-game. As player scores continue to accumulate this leaderboard will be updated.
  • The Seasonal Leaderboard runs for a specific period of time that is set when the leaderboard is created. For example, if an event is running on the 1st of May between 00:30 AM and 2:30 AM, the seasonal leaderboard will only record the rank and score of players who took part in that particular event. Once the event is over, the leaderboard will be reset.

# Prerequisites

Before you create a leaderboard config, make sure you have created a statistic configuration (opens new window) in the same game namespace. Statistics configs are used to update a player's leaderboard rank.

# Permissions

Permissions (opens new window) are used to grant access to specific resources within our services. Make sure your account has the following permissions before you attempt to manage the leaderboard in the Admin Portal. For a full list of permissions that impact leaderboards management, see the Leaderboards tab of the permissions reference (opens new window).

Usage Resource Action
List All Leaderboards By Given Namespace ADMIN:NAMESPACE:{namespace}:LEADERBOARD Read
Create New Leaderboard ADMIN:NAMESPACE:{namespace}:LEADERBOARD Create
Get Leaderboard By Leaderboardcode ADMIN:NAMESPACE:{namespace}:LEADERBOARD Read
Get User Ranking ADMIN:NAMESPACE:{namespace}:LEADERBOARD Read
Delete User Ranking ADMIN:NAMESPACE:{namespace}:LEADERBOARD:USER Update

Permissions work slightly differently depending on whether they are assigned to IAM Clients (opens new window) or Roles (opens new window) assigned to users. For more information, read the Authentication and Authorization (opens new window) documentation.

# Manage Leaderboards in the Admin Portal

# Create a New Leaderboard

  1. In the Leaderboard menu of the Admin Portal, click the Create Leaderboard button.

    leaderboard

  2. Fill in the required fields.

    leaderboard

    • Input the Leaderboard Code with the appropriate format.
    • Input the StatCode with the related statistic code that you’ve created. This will be the statistic that the leaderboard draws from.
    • Input the Start Date with RFC3339 (opens new window) standard format, e.g., 2020-10-02T15:00:00.05Z.
    • Input the Daily reset time for a daily leaderboard.
    • Input a day and time for the Weekly reset time for a weekly leaderboard.
    • Input the day and time for the Monthly reset time for a monthly leaderboard. For example, if you input 1st in the date field and 12:00 AM in the time field, the reset time will be the first day of the month at 12:00 AM.
    • If you select the Seasonal option, you must input the number of days it will take for the leaderboard to reset in the Season Period Days field.
    • Choose the Order of the Leaderboard.
    • Select an Icon for your leaderboard.

    When you’re done, click the Add button to create your new leaderboard and the new leaderboard will appear in the Leaderboard List.

NOTE

After creating the leaderboard, make sure that the configuration is correct as you will not be able to edit the leaderboard once it starts.

# Get Leaderboard Rankings

  1. In the Leaderboard List of the Admin Portal, choose the leaderboard you want to see ranking data for by clicking on the Action column and selecting View.

    leaderboard

  2. In this example, we choose to see the all-time leaderboard rankings. You can view the rankings for all cycles of leaderboards.

    leaderboard

# Delete or Archive a Leaderboard

  1. In the Leaderboard List tab, choose the leaderboard that you want to delete. Then click Delete in the Action menu next to that leaderboard.

    leaderboard

  2. The Delete Leaderboard form appears. Select the Take a Snapshot Before Deletion box if you want to archive the first 1000 records of the leaderboard and type DELETE in the available fields.

    leaderboard

  3. Click the Delete button to delete the leaderboard.

# View Archived Leaderboard Data

  1. Go to the Leaderboard page and open the Snapshots tab.

    leaderboard

  2. In the Snapshot tab, you can see all of the archived leaderboards. To open a leaderboard, click View in the leaderboard’s Action menu.

    leaderboard

  3. Here you can check and see the list of the leaderboard that you already deleted before.

    leaderboard

# Implement Leaderboards using the Client SDKs

# Get Rankings

Retrieve all player rankings using a specific leaderboard code. The data is presented in descending order.

# Get User Ranking

Get a specific player’s ranking using their User ID and the desired leaderboard code.

# Connect Custom Services to Leaderboards using the Server SDKs

# SDK Initialization

Before using the Leaderboard service from the SDK, you will need to initialize your server-side SDK to make you authorized and able to perform create, read, update, and delete actions.

# Golang SDK Initialization

Before using the Leaderboard service from the Golang SDK, you will need to initialize the SDK by following the steps below:

Once completed, you can use the Golang SDK to create, read, update, or delete the Leaderboard (opens new window) service from your serverless app.

# Python SDK Initialization

Before using the Leaderboard service from the Python SDK, you will need to initialize the SDK by following the steps below:

Once completed, you can use the Python SDK to create, read, update, or delete the Leaderboard (opens new window) service from your serverless app.

# .NET (C#) SDK Initialization

Before using the Leaderboard service, you will need to set some permissions. Use the following .NET namespaces:

using AccelByte.Sdk.Api.Leaderboard.Model;
using AccelByte.Sdk.Api.Leaderboard.Operation;
using AccelByte.Sdk.Api.Leaderboard.Wrapper;

# Java SDK Initialization

Before using the Leaderboard service, you will need to set some permissions. Initialize the LeaderboardConfiguration wrapper from the Leaderboard service using the following code:

LeaderboardConfiguration wLeaderboard = new LeaderboardConfiguration(sdk);

Once completed, you can use the SDK to create, read, update, or delete leaderboards.

# Create a Leaderboard

Use the following function to create a leaderboard (opens new window):

# Delete a Leaderboard

Use the following function to delete a leaderboard (opens new window):

# Retrieve a Leaderboard

Use the following function to retrieve a leaderboard (opens new window):

# Update a Leaderboard

Use the following function to update a leaderboard (opens new window):