> For the complete documentation index, see [llms.txt](https://jobs.advancedplugins.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://jobs.advancedplugins.net/tutorials/per-level-rewards.md).

# Per-Level Rewards

Per-level rewards are rewards that are given for a specific level, once it's completed. Usually these are special levels where custom reward is assigned, not one with formulas, for example item rewards.

## How to set up per-level rewards

First off, the reward must be made in the `rewards.yml` file, and you must know the ID of it. To make a reward, follow the [Rewards Guide](/tutorials/rewards-guide.md) tutorial.

For this example, we've made a reward that gives 1 million $.

{% code title="rewards.yml" lineNumbers="true" %}

```yaml
'million': # The id of the reward
  type: command
  name: '$1,000,000'
  commands:
    - 'eco give %player% 1000000'
```

{% endcode %}

Once our reward is made, we now open our jobs file. The jobs files are located in `plugins/AdvancedJobs/jobs` folder.

Locate `level-rewards` line. Now we'll set up level 10 to give a reward by id `million`

{% code title="plugins/AdvancedJobs/jobs/job.yml" %}

```yaml
# levels info
level-rewards:
  10: 
    - million
```

{% endcode %}

That is it! You will now need to reload the plugin using `/ajadmin reload`, and your reward will be present for level 10 of the job in progress menu:

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


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://jobs.advancedplugins.net/tutorials/per-level-rewards.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
