Configuration

File Updated: v1.0.1 - 20.02.2025

Config = {}

--- ██╗      █████╗ ███╗   ██╗ ██████╗ ██╗   ██╗ █████╗  ██████╗ ███████╗
--- ██║     ██╔══██╗████╗  ██║██╔════╝ ██║   ██║██╔══██╗██╔════╝ ██╔════╝
--- ██║     ███████║██╔██╗ ██║██║  ███╗██║   ██║███████║██║  ███╗█████╗  
--- ██║     ██╔══██║██║╚██╗██║██║   ██║██║   ██║██╔══██║██║   ██║██╔══╝  
--- ███████╗██║  ██║██║ ╚████║╚██████╔╝╚██████╔╝██║  ██║╚██████╔╝███████╗
--- ╚══════╝╚═╝  ╚═╝╚═╝  ╚═══╝ ╚═════╝  ╚═════╝ ╚═╝  ╚═╝ ╚═════╝ ╚══════╝
Config.Headers = {
    create = function(job) return Config.JobLabels[job] or job end,
    active = "Orders",
    completed = "Complete Orders"
}

---      ██╗ ██████╗ ██████╗ ███████╗     ██╗████████╗███████╗███╗   ███╗███████╗
---      ██║██╔═══██╗██╔══██╗██╔════╝     ██║╚══██╔══╝██╔════╝████╗ ████║██╔════╝
---      ██║██║   ██║██████╔╝███████╗     ██║   ██║   █████╗  ██╔████╔██║███████╗
--- ██   ██║██║   ██║██╔══██╗╚════██║     ██║   ██║   ██╔══╝  ██║╚██╔╝██║╚════██║
--- ╚█████╔╝╚██████╔╝██████╔╝███████║     ██║   ██║   ███████╗██║ ╚═╝ ██║███████║
--- ╚════╝  ╚═════╝ ╚═════╝ ╚══════╝     ╚═╝   ╚═╝   ╚══════╝╚═╝     ╚═╝╚══════╝

Config.Jobs = {
    burgershot = {
        items = {
            lettuce = "Lettuce",
            potato = "Potato",
            onion = "Onion",
            chickensteak = "Chicken steak",
            hamburger = "Hamburger",
            hamburgerbun1= "Hamburger Bun",
            hamburgerbun2 = "Hamburger Bun",
            cheese = "Cheese",
            tomato = "Tomato",
            tortilla = "Tortilla"
        }
    }
}

Config.JobLabels = {
    burgershot = "Burger Shot"
}

Config.BossGrades = {
    ['burgershot'] = 4
}

Config.LogisticJob = ''

--- ██████╗ ███████╗██╗    ██╗ █████╗ ██████╗ ██████╗ ███████╗
--- ██╔══██╗██╔════╝██║    ██║██╔══██╗██╔══██╗██╔══██╗██╔════╝
--- ██████╔╝█████╗  ██║ █╗ ██║███████║██████╔╝██║  ██║███████╗
--- ██╔══██╗██╔══╝  ██║███╗██║██╔══██║██╔══██╗██║  ██║╚════██║
--- ██║  ██║███████╗╚███╔███╔╝██║  ██║██║  ██║██████╔╝███████║
--- ╚═╝  ╚═╝╚══════╝ ╚══╝╚══╝ ╚═╝  ╚═╝╚═╝  ╚═╝╚═════╝ ╚══════╝

Config.ItemRewards = {
    lettuce = 20,
    potato = 20,
    onion = 20,
    chickensteak = 50,
    hamburger = 50,
    hamburgerbun1 = 15,
    hamburgerbun2 = 15,
    cheese = 50,
    tomato = 20,
    tortilla = 30
}

--- ███╗   ██╗██████╗  ██████╗███████╗
--- ████╗  ██║██╔══██╗██╔════╝██╔════╝
--- ██╔██╗ ██║██████╔╝██║     ███████╗
--- ██║╚██╗██║██╔═══╝ ██║     ╚════██║
--- ██║ ╚████║██║     ╚██████╗███████║
--- ╚═╝  ╚═══╝╚═╝      ╚═════╝╚══════╝


Config.NPCs = {
    {
        model = "s_m_m_ups_02",
        coords = vector4(947.2587, -1250.25, 27.075, 33.44),
        scenario = "WORLD_HUMAN_CLIPBOARD",
        markerType = "view"
    },
    {
        model = "s_m_m_ups_02",
        coords = vector4(968.5283, -1227.00, 27.065, 304.61),
        scenario = "WORLD_HUMAN_CLIPBOARD",
        markerType = "completed"
    }
}

Last updated