Items & Ingredients

The business system relies on a supply chain of ingredients that are used to craft final products.

Ingredient Categories

Config.IngredientCategories = {
    "Produce",
    "Meat",
    "Eggs",
    "Flour",
    "Bakery",
    -- ...
}

Defines how ingredients are grouped within the business management interface.

Farmer System

Farmers are NPC locations where business owners can purchase and collect bulk ingredients.

Config.Farmers = {
    {
        coords = vector4(192.2152, -1050.7498, 29.3520, 336.0807),
    }
}
  • coords: The location where the Farmer NPC will spawn.

  • Interaction: Players can interact with the farmer to collect pending ingredient orders purchased through the business app.

Item Metadata

Items crafted through the business app store metadata that dictates their effects and animations when used. This metadata is automatically managed by the script when an item is crafted.

Last updated