Add jobs

Goto your config.lua and look for this:

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"
        }
    }
}

Copy and past or rewrite the new job. Example:

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"
        }
    },
    mechanic = {
        items = {
            fixkit = "Fixkit"
            -- Add as many items as you want
        }
    }
}

After adding the new job, still in config.lua, look for this:

Also add the new job, for example:

After adding to this section as well, you need to add the positions you want to have access to the order menu. To do this, look for this line in config.lua:

This means that only the bosses have access to the tablet. To add any worker other than the boss, replace the 4 with 0.

Last updated