Last Updated: 6/15/2022, 1:51:10 AM

# Achievements

# Overview

Achievements are a tool developers can use to increase player engagement with their game. Recognizing players’ progress in your game and rewarding them with items or new characters not only fosters deeper enjoyment of your game but brand loyalty as well. There are two main types of achievements: incremental and non-incremental. Both of these types are explained below.

# Incremental Achievements

Incremental achievements work in conjunction with our Statistics service. When a player’s stats are updated, the Achievement service checks if the conditions for any incremental achievements have been met. If the conditions for an achievement have been met the achievement will be unlocked. Here are a couple examples of incremental achievements:

  • Collect 10,000 gold In order to unlock packs of bullets, a player must collect 10,000 gold.
  • Collect 100 items To unlock the Collector trait, a player must collect 100 items.

# Non-Incremental Achievements

Non-incremental achievements don’t require a goal value to be hit, and as such do not need to be integrated with the Statistics service. Here are some examples of non-incremental achievements:

  • Play your first game To unlock a bundle of weapons, a player must play the game.
  • Kill 25 thieves in a single game To earn their first medal, players must kill 25 thieves in a single game.

# Prerequisites

You’ll need the statistics code you created earlier when you fill in the configuration form.

# Permissions

Permissions are used to grant access to specific resources within our services. Make sure your account has the following permissions before you attempt to manage achievements in the Admin Portal. For a full list of permissions that impact achievements management, see the Achievements tab of the permissions reference.

Usage Resource Action
Create New Achievement ADMIN:NAMESPACE:{namespace}:ACHIEVEMENT Create
Export Achievement Configuration ADMIN:NAMESPACE:{namespace}:ACHIEVEMENT Read
Import Achievement Configuration ADMIN:NAMESPACE:{namespace}:ACHIEVEMENT Update
Query All Achievements ADMIN:NAMESPACE:{namespace}:ACHIEVEMENT Read
Get an Achievement ADMIN:NAMESPACE:{namespace}:ACHIEVEMENT Read
Update an Achievement ADMIN:NAMESPACE:{namespace}:ACHIEVEMENT Update
Delete an Achievement ADMIN:NAMESPACE:{namespace}:ACHIEVEMENT Update
Update Achievements List Order ADMIN:NAMESPACE:{namespace}:ACHIEVEMENT Update
Query User Achievements Include Achieved and In-progress Achievement ADMIN:NAMESPACE:{namespace}:USER:{userId}:ACHIEVEMENT Read
Unlock an Achievement NAMESPACE:{namespace}:USER:{userId}:ACHIEVEMENT Update

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

# Managing Achievements in the Admin Portal

# Create a New Achievement Configuration

You’ll need the statistics code you created earlier when you fill in the configuration form.

  1. On the Achievements page of the Admin Portal, click the Add Configuration button.

    achievement

  2. Once the form appears, fill in the appropriate fields.

    achievement

    • Input the Code of the achievement with an appropriate format e.g. kill-enemies-achievement.
    • Input the Default Name of the achievement with a readable string. This will be the public facing name.
    • Input the Default Description of the achievement. This description is also public facing.
    • Choose if you want the achievement to be Hidden or not. Hidden achievements are not shown when they are still locked, but will appear once they’re unlocked.
    • Select Incremental for an incremental achievement, or leave the checkbox unselected for a non-incremental achievement..
    • For incremental achievements, input the StatCode with the statistics code for the relevant statistic. You can leave this field empty if you’re creating a non-incremental achievement.
    • For incremental achievements, input the Goal Value. Note that the goal value should not exceed the max value defined in the Statistic - Configuration. You can leave this field empty if you’re creating a non-incremental achievement.
    • Input the Tag field with contextual information related to the achievement.
    • Select an image for the Locked Icon. This image will display for players who do not have this achievement yet.
    • Select an image to be displayed when the achievement is Unlocked.
  3. Click Add. Your new configuration will be added to the list.

    achievement

# Export Achievement Configurations

You can export your achievement configurations in JSON format by following the steps below.

  1. In the Achievements menu of the Admin Portal, open the dropdown menu next to the Add Configuration button and choose Export Configuration.

    achievement

  2. The download will be started. Once it’s finished, open the JSON file to see your achievement configs.

# Import an Achievement Configuration

  1. In the Achievements menu of the Admin Portal, open the dropdown menu next to the Add Configuration button and choose Import Configuration.

    achievement

  2. The Import Configuration form will appear.

    achievement

    • Choose a File to Import. The file should be in JSON format.
    • Select the Import Method.
    • Choose Replace if you want to replace an old config with a new one. The new config must have the same key as the config you want to replace. If you have multiple configs in your file, any configs with unique keys will also be imported.
    • Choose Leave Out if you want to add a new config without replacing any old configs. Using this method, any configs in your JSON file whose keys match existing configs will not be imported. Only configs with unique keys will be imported.

    Click Import.

  3. Confirm the import configuration by typing IMPORT in the pop-up form below.

    achievement

# Implementing Achievements using the SDK

# Unlock an Achievement

There are two ways to unlock a player’s achievement: either from Game Client or from the Game Dedicated Server.

# Unlock an Achievement from the Game Client

Note that this function can only be used for non-incremental achievements that do not affect gameplay. For example, the first time going to the gallery, first time inviting a friend, etc.

# Unlock an Achievement from the Dedicated Server

Unlocking an achievement from the server is usually done after a match is completed.

# Achievements Query

# Get a Single Achievement

You can use this function to retrieve achievement info, such as the achievement name, description, goalValue, etc.

# Query All Achievements

You can use this function to retrieve a list of all achievements in the related namespace.

# Query a Player’s Achievement

You can use this function to query a player’s unlocked and in-progress achievements.

# Connecting Custom Services to the Achievements using the Server SDK

# SDK Initialization

Before using the Achievement 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 Achievement 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 Achievement (opens new window) service from your serverless app.

# Python SDK Initialization

Before using the Achievement 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 Achievement (opens new window) service from your serverless app.

# .NET (C#) SDK Initialization

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

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

# Java SDK Initialization

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

Achievements wAchievements = new Achievements(sdk);

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

# Create an Achievement

Use the following function to create an achievement (opens new window):

# Delete an Achievement

Use the following function to delete an achievement (opens new window):

# Retrieve All Achievements

Use the following function to retrieve all achievements (opens new window):

# Retrieve an Achievement by Its Code

Use the following function to retrieve an achievement by code (opens new window):

# Update an Achievement

Use the following function to update an achievement (opens new window):