⚙️Configuration

Detailed explanation of the config file to adapt the resource to your player needs.

Config.lua

Config.Framework    = "esx"

change to "qbcore" if you are going to use the QBCore framework.

Config.Currency = "$"

you can change it to € , £ ...

Config.authorizedJobs   = {
    ["burgershot"] = "BurgerShot",
    ["hornys"]     = "Horny's",
}

add as many restaurants as wou want.

Config.Locations  = {
    [1] = { coords = vector3(-1190.93, -895.14, 13.8), restaurant = "BurgerShot"},
    [2] = { coords = vector3(-1189.37, -894.1, 13.8), restaurant = "BurgerShot"},
    [3] = { coords = vector3(-1187.87, -893.11, 13.8), restaurant = "BurgerShot"},
    [4] = { coords = vector3(-1194.7, -904.48, 13.8), restaurant = "BurgerShot"},

    [5] = { coords = vector3(1244.67, -358.8, 69.08), restaurant = "Horny's"},
    [6] = { coords = vector3(1243.65, -358.48, 69.08), restaurant = "Horny's"},
    [7] = { coords = vector3(1242.63, -358.21, 69.08), restaurant = "Horny's"},
    [8] = { coords = vector3(1247.81, -359.38, 69.08), restaurant = "Horny's"},
    [9] = { coords = vector3(1249.11, -359.75, 69.08), restaurant = "Horny's"},
    [10] = { coords = vector3(1250.58, -360.12, 69.08), restaurant = "Horny's"},
    [11] = { coords = vector3(1252.81, -358.09, 69.08), restaurant = "Horny's"},
}

Target Eye location for each restaurant.

You can add as many restaurants as you want ! For each restaurant you have to add its name, default status (open or close), image link , and foods.

Last updated