# Progression Samples

## Simple Progressions

[Progressions](/game-systems/progressions.md) allow you to easily create and manage in-game XP systems, talent trees, battle passes and more through our intuitive web console.

This sample can be found in our [SDK](/the-basics/sdks.md#unity-sdk) under the name `6 - Simple Progression`

This SDK sample will demonstrate a single progression system in action. The player can progress through all 10 levels (tiers). At level 10 no further points will be added. This example does not have any level-based rewards.

### In-Engine

In this sample you can use the slider to select the number of points to add to the progression. Click `Add points to progression` to add the points to the progression. Once `Current tier` reaches 10 you will be unable to add more points to the progression. Click `Reset Progression` to reset the progression to tier 0.

<figure><img src="/files/PWILGZ4hvE3MztXEL8t9" alt=""><figcaption></figcaption></figure>

### Web Console

Navigate to Game Systems -> Progressions to create and configure a new progression. Consult the [feature's documentation](/game-systems/progressions.md) to learn more about progressions.

<figure><img src="/files/Ifsr9M8FsfJzAh42pufx" alt=""><figcaption></figcaption></figure>

## Multiple Progressions

[Progressions](/game-systems/progressions.md) allow you to easily create and manage in-game XP systems, talent trees, battle passes and more through our intuitive web console.

This sample can be found in our [SDK](/the-basics/sdks.md#unity-sdk) under the name `6 - Multiple Progressions`

This SDK sample will build upon the simple progression sample above and demonstrate how multiple progressions can be connected together. In this sample two progressions are linked together where gaining a level (tier) in Progression 1 will also add a point to Progression 2. When Progression 2 reaches level (tier) 2 it will reset Progression 1.

### In-Engine

Like with the previous sample, use the slider to select the number of points to add to each progression and click `Add points to progression`. Each time Progression 1 gains a tier it will add a point to Progression 2. When Progression 2 reaches tier 2 it will reset Progression 1.

<figure><img src="/files/w1xhovnxwRrgVSUGE6KO" alt=""><figcaption></figcaption></figure>

### Web Console

To configure this particular type of progression systems, you need to use both `Progression Point Rewards` as well as `Progression Reset Rewards`. Learn more about these systems in the [progression feature documentation](/game-systems/progressions.md).

<figure><img src="/files/W77eDeJljZnO7Uu7wWQA" alt=""><figcaption></figcaption></figure>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.lootlocker.com/the-basics/samples/progression-samples.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
