> For the complete documentation index, see [llms.txt](https://osp-development.gitbook.io/ambulance-job/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://osp-development.gitbook.io/ambulance-job/farming-job/in-game-use/xp-leveling-system.md).

# XP/Leveling System

<pre class="language-lua"><code class="lang-lua"><strong>Ln 503: Config.XPMultiplier = 1.0 -- The amount of XP gained when completing tasks
</strong>

<strong>Ln 523: Config.Shop = {
</strong>    {
        description = 'Grapeseed Orange Tree Farm',
        info = 'A newly grown orange tree farm beside Grapeseed Airport',
        price = 900,
        type = 'orangetree',     -- DON'T TOUCH
        img = 'img/orangefarm.png',
        level = 0.0
    },
    {
        description = 'Grapeseed Apple Tree Farm',
        info = 'A newly grown apple tree farm beside Grapeseed Airport',
        price = 990,
        type = 'appletree',     -- DON'T TOUCH
        img = 'img/applefarm.png',
        level = 1.0
    },
    {
        description = 'Chicken Pen',
        info = 'A classic, small chicken pen to keep your chickens',
        price = 1500,
        type = 'chicken',     -- DON'T TOUCH
        img = 'img/chickenpen.png',
        level = 1.0
    },
    {
        description = 'Cow Field',
        info = 'A large and comfortable cow farm',
        price = 2500,
        type = 'cow',    -- DON'T TOUCH
        img = 'img/cowfarm.png',
        level = 1.5
    },
    {
        description = 'Pig Pen',
        info = 'A dirty enclosure beside the farmhouse in Grapeseed.',
        price = 2500,
        type = 'pig',     -- DON'T TOUCH
        img = 'img/pigfarm.png',
        level = 1.5
    },
    {
        description = 'Mushroom Forest',
        info = 'A really good mushroom spot in the northern forests of Los Santos',
        price = 3500,
        type = 'mushroom',     -- DON'T TOUCH
        img = 'img/mushroomforest.png',
        level = 2.0
    },
    {
        description = 'Wheat Field',
        info = 'A dense wheat field in Grapeseed',
        price = 8000,
        type = 'wheat',     -- DON'T TOUCH
        img = 'img/wheatfarm.png',
        level = 2.0
    },
    {
        description = 'Plantation Field',
        info = 'A really lucrative and efficient plantation field for multiple kinds of vegetables',
        price = 8000,
        type = 'plantation',     -- DON'T TOUCH
        img = 'img/plantation.png',
        level = 2.5
    },
    {
        description = 'Duster Plane Upgrade',
        info = 'A highly efficient and precise way to fertilize your valuable crops',
        price = 9000,
        type = 'duster',     -- DON'T TOUCH
        img = 'img/duster.png',
        level = 3.5
    },
    {
        description = 'Sprinkler Upgrade',
        info = 'A highly efficient way to water your crops',
        price = 9000,
        type = 'sprinkler',     -- DON'T TOUCH
        img = 'img/sprinkler.png',
        level = 4.0
    },
}
</code></pre>
