# Job ranks

This file can be located in peuren\_minerjo&#x62;*/shared/sh\_main.lua.*

You can edit the pre-configured rank levels or add your new rank levels by following the examples.

```lua
Config.Ranks = {--Don't touch this
    Levels = {--Don't touch this
        [1] = {--Rank level id
            level = 1,
            minXP = 0,--minimum needed xp to unlock this level
            tool = {
                name = 'hammer',
                item = 'hammer',
                title = "Hammmer",
                description = "A very good hammer",
                price = 100,
            }
        },
        [2] = {--Rank level id
            level = 2,
            minXP = 50,--minimum needed xp to unlock this level
            tool = {
                name = 'pickaxe',
                item = 'pickaxe',
                title = "Pickaxe",
                description = "A very good pickaxe",
                price = 100,
            }
        },
        [3] = {--Rank level id
            level = 3,
            minXP = 1000,--minimum needed xp to unlock this level
            tool = {
                name = 'drill',
                item = 'drill',
                title = "Drill",
                description = "A very good drill",
                price = 100,
            }
        },
        [4] = {--Rank level id
            level = 4,
            minXP = 1000,--minimum needed xp to unlock this level
            tool = {
                name = 'laser_drill',
                item = 'laser_drill',
                title = "Laser drill",
                description = "A very good laser drill",
                price = 100,
            }
        }
    }
}
```

## Job

This file can be located in peuren\_minerjo&#x62;*/shared/sh\_jobs.lua*

```lua
Config.Job = {
    CooldownRock = { min = 1, sec = 30 },
    Payout = {--This is the rewards that the player receive when he completly ends the job
        account = 'bank',
        groupMultiplier = true,

        Rocks = {--Rewards for each mined rocks
            money = { min = 10, max = 20 },
            rankXP = { min = 10, max = 20 },
        },

        Ores = {--Rewards for each cutted ore
            money = { min = 10, max = 20 },
            rankXP = { min = 10, max = 20 },
        }
    }
}
```


---

# 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://peuren.gitbook.io/peuren/peuren_minerjob/configuration/job-ranks.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.
