Skip to main content
Version: 2.0.0

Achievements Plugins Functions

Get Available Achievements

Retrieves a list of achievements for the current user based on the provided parameters.

var achievements = await ServiceHub.Services.Achievement.GetAchievements(new GetAchievementParams{});

Unlock a achievement

Unlocks an achievement for the current user based on the provided parameters.

var achievements = await ServiceHub.Services.Achievement.UnlockAchievement(new UnlockAchievementParams
{
AchievementId = 0,
StepId = 0
});