> For the complete documentation index, see [llms.txt](https://paradise-scripts.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://paradise-scripts.gitbook.io/docs/paid-scripts/rentals/configuration.md).

# Configuration

Config

```
Config = {}

Config.Debug = true         -- Dont Use This In Production Mode
Config.TargetSystem = 'qb' -- Change this to 'ox' if using ox_target
Config.Webhook = ''            -- Your Discord Webhook
Config.TargetLabel = 'Open Rentals'         
Config.Garage = 'legion'           -- Default Garage 
Config.RentalLocations = {
    {
        coords = vector4(-299.67, -993.42, 31.18, 341.39),
        ped = {
            model = "a_m_y_business_03",
            coords = vector4(-299.67, -993.42, 31.18, 341.39), 
            scenario = "WORLD_HUMAN_CLIPBOARD"
        },
        blipData = {
            sprite = 226,
            color = 3,
            scale = 0.7,
            label = "Vehicle Rental"
        },
        spawnPoint = vector4(-305.31, -988.26, 31.08, 332.06)
    }
}

Config.Vehicles = {
    {
        name = "Sultan RS",
        model = "sultanrs",
        price = 500,
        image = "https://raw.githubusercontent.com/MericcaN41/gta5carimages/main/images/sultanrs.png"
    },
    {
        name = "Kuruma",
        model = "kuruma",
        price = 750,
        image = "https://raw.githubusercontent.com/MericcaN41/gta5carimages/main/images/kuruma.png"
    },
    {
        name = "Zentorno",
        model = "zentorno",
        price = 1200,
        image = "https://raw.githubusercontent.com/MericcaN41/gta5carimages/main/images/zentorno.png"
    },
    {
        name = "Banshee",
        model = "banshee",
        price = 900,
        image = "https://raw.githubusercontent.com/MericcaN41/gta5carimages/main/images/banshee.png"
    },
    {
        name = "Gtr",
        model = "r35",
        price = 900,
        image = "/api/placeholder/120/80"
    }
}

-- Rental multiplier for longer rentals (optional discount)  / Dont Touch Untill you know what you are doing!!!
Config.RentalMultipliers = {
    [1] = 1.0,    -- 1 day = normal price
    [3] = 0.95,   -- 3 days = 5% discount
    [7] = 0.90    -- 7 days = 10% discount
}
```
