# Installation

{% stepper %}
{% step %}
**Download the resources**

Download both `cfx-djs-anims` and `cfx-djs-bites`,  [CFX portal](https://portal.cfx.re/login) and place them in your resources folder.
{% endstep %}

{% step %}
**Add to server.cfg**

Add `cfx-djs-anims` and `cfx-djs-bites` to your `server.cfg` after all dependencies

```
ensure cfx-djs-anims
ensure cfx-djs-bites
```

{% endstep %}

{% step %}
**Add Items to Inventory**

Add the required items to your inventory resource — see[ Items](#items) below.
{% endstep %}

{% step %}
**Optional: add items to addon Consumable Resources**

Add the required (Non-Consumable) items to supported addon consumable resource — see [Addon Consumables Items](#addon-consumables-items) below.
{% endstep %}

{% step %}
**Optional: inventory icons**

Custom inventory icons are included—check Inventory Icons below. If you’d like to use them, simply copy the files into your inventory resource’s image directory.
{% endstep %}
{% endstepper %}

{% hint style="warning" %}
WARNING

Some anti-cheats may block props from spawning or limit certain models from loading in-game, so if your props are not appearing, invisible, or being instantly removed, it’s likely an anti-cheat issue rather than the resource itself. Please check your server console and in-game F8 console for more details, such as blocked entity warnings, model load failures, or related error codes—these are common signs of interference. If this happens, we recommend reaching out to your anticheat’s developer or support team with those errors and reviewing your anticheat documentation for any settings related to prop, model, or entity restrictions that may need to be adjusted. If you do report this issue to us, we’ll document it in our **common issues** section to help others who may run into the same problem.
{% endhint %}

***

## Items <a href="#items" id="items"></a>

Make sure to add all required items to your inventory resource using the format that matches your setup.

{% tabs %}
{% tab title="Ox Inventory (Consumable)" %}
Add the items below to your `ox_inventory` into `data/items.lua`.

{% code expandable="true" %}

```
	["djs_bite_ccutsalad"] = { -- requirement https://docs.djscollections.com/paid-props-products/food-and-drink-animations
        label = "Cold Cut Salad",
        weight = 1,
        stack = true,
        close = true,
        client = {
			status = { hunger = 400000 },
            anim = { dict = 'anim@djs@food@plated', clip = 'djs_food_plate_bite_loop' },
            prop = { model = 'djs_bite_ccutsalad', pos = vector3(0.175000, 0.008000, 0.000000), rot = vector3(-14.549987, 0.000000, 6.600003), bone = 18905, },
            propTwo = { model = 'djs_fork', pos = vector3(0.11, 0.04, -0.03), rot = vector3(-98.0, -222.0, 22.0), bone = 57005, },
			usetime = 17500,
			cancel = true,
        }
    },
	["djs_bite_chiksalad"] = { -- requirement https://docs.djscollections.com/paid-props-products/food-and-drink-animations
        label = "Chicken Salad",
        weight = 1,
        stack = true,
        close = true,
        client = {
			status = { hunger = 400000 },
            anim = { dict = 'anim@djs@food@plated', clip = 'djs_food_plate_bite_loop' },
            prop = { model = 'djs_bite_chiksalad', pos = vector3(0.175000, 0.008000, 0.000000), rot = vector3(-14.549987, 0.000000, 6.600003), bone = 18905, },
            propTwo = { model = 'djs_fork', pos = vector3(0.11, 0.04, -0.03), rot = vector3(-98.0, -222.0, 22.0), bone = 57005, },
			usetime = 17500,
			cancel = true,
        }
    },
	["djs_bite_fruitsalad"] = { -- requirement https://docs.djscollections.com/paid-props-products/food-and-drink-animations
        label = "Fruit Salad",
        weight = 1,
        stack = true,
        close = true,
        client = {
			status = { hunger = 400000 },
            anim = { dict = 'anim@djs@food@plated', clip = 'djs_food_plate_bite_loop' },
            prop = { model = 'djs_bite_fruitsalad', pos = vector3(0.175000, 0.008000, 0.000000), rot = vector3(-14.549987, 0.000000, 6.600003), bone = 18905, },
            propTwo = { model = 'djs_fork', pos = vector3(0.11, 0.04, -0.03), rot = vector3(-98.0, -222.0, 22.0), bone = 57005, },
			usetime = 17500,
			cancel = true,
        }
    },
	["djs_bite_turksalad"] = { -- requirement https://docs.djscollections.com/paid-props-products/food-and-drink-animations
        label = "Turkey Salad",
        weight = 1,
        stack = true,
        close = true,
        client = {
			status = { hunger = 400000 },
            anim = { dict = 'anim@djs@food@plated', clip = 'djs_food_plate_bite_loop' },
            prop = { model = 'djs_bite_turksalad', pos = vector3(0.175000, 0.008000, 0.000000), rot = vector3(-14.549987, 0.000000, 6.600003), bone = 18905, },
            propTwo = { model = 'djs_fork', pos = vector3(0.11, 0.04, -0.03), rot = vector3(-98.0, -222.0, 22.0), bone = 57005, },
			usetime = 17500,
			cancel = true,
        }
    },
	["djs_bite_veggiesalad"] = { -- requirement https://docs.djscollections.com/paid-props-products/food-and-drink-animations
        label = "Veggie Salad",
        weight = 1,
        stack = true,
        close = true,
        client = {
			status = { hunger = 400000 },
            anim = { dict = 'anim@djs@food@plated', clip = 'djs_food_plate_bite_loop' },
            prop = { model = 'djs_bite_veggiesalad', pos = vector3(0.175000, 0.008000, 0.000000), rot = vector3(-14.549987, 0.000000, 6.600003), bone = 18905, },
            propTwo = { model = 'djs_fork', pos = vector3(0.11, 0.04, -0.03), rot = vector3(-98.0, -222.0, 22.0), bone = 57005, },
			usetime = 17500,
			cancel = true,
        }
    },
	["djs_bowl_stinkysalad"] = { -- requirement https://docs.djscollections.com/paid-props-products/food-and-drink-animations
        label = "Stinky Salad",
        weight = 1,
        stack = true,
        close = true,
        client = {
			status = { hunger = 400000 },
            anim = { dict = 'anim@djs@food@plated', clip = 'djs_food_plate_bite_loop' },
            prop = { model = 'djs_bowl_stinkysalad', pos = vector3(0.175000, 0.008000, 0.000000), rot = vector3(-14.549987, 0.000000, 6.600003), bone = 18905, },
            propTwo = { model = 'djs_fork', pos = vector3(0.11, 0.04, -0.03), rot = vector3(-98.0, -222.0, 22.0), bone = 57005, },
			usetime = 17500,
			cancel = true,
        }
    },
	["djs_bite_cornbfsub"] = { -- requirement https://docs.djscollections.com/paid-props-products/food-and-drink-animations
        label = "Corn Beef Sub",
        weight = 1,
        stack = true,
        close = true,
        client = {
			status = { hunger = 400000 },
            anim = { dict = 'mp_player_inteat@burger', clip = 'mp_player_int_eat_burger' },
            prop = { model = 'djs_bite_cornbfsub', pos = vector3(0.125000, 0.056000, 0.000000), rot = vector3(0.000000, 0.000000, 186.298553), bone = 18905, },
			usetime = 17500,
			cancel = true,
        }
    },
	["djs_bite_grlchksub"] = { -- requirement https://docs.djscollections.com/paid-props-products/food-and-drink-animations
        label = "Grilled Chicken Sub",
        weight = 1,
        stack = true,
        close = true,
        client = {
			status = { hunger = 400000 },
            anim = { dict = 'mp_player_inteat@burger', clip = 'mp_player_int_eat_burger' },
            prop = { model = 'djs_bite_grlchksub', pos = vector3(0.125000, 0.056000, 0.000000), rot = vector3(0.000000, 0.000000, 186.298553), bone = 18905, },
			usetime = 17500,
			cancel = true,
        }
    },
	["djs_bite_hamsub"] = { -- requirement https://docs.djscollections.com/paid-props-products/food-and-drink-animations
        label = "Ham Sub",
        weight = 1,
        stack = true,
        close = true,
        client = {
			status = { hunger = 400000 },
            anim = { dict = 'mp_player_inteat@burger', clip = 'mp_player_int_eat_burger' },
            prop = { model = 'djs_bite_hamsub', pos = vector3(0.125000, 0.056000, 0.000000), rot = vector3(0.000000, 0.000000, 186.298553), bone = 18905, },
			usetime = 17500,
			cancel = true,
        }
    },
	["djs_bite_italisub"] = { -- requirement https://docs.djscollections.com/paid-props-products/food-and-drink-animations
        label = "Ham Sub",
        weight = 1,
        stack = true,
        close = true,
        client = {
			status = { hunger = 400000 },
            anim = { dict = 'mp_player_inteat@burger', clip = 'mp_player_int_eat_burger' },
            prop = { model = 'djs_bite_italisub', pos = vector3(0.125000, 0.056000, 0.000000), rot = vector3(0.000000, 0.000000, 186.298553), bone = 18905, },
			usetime = 17500,
			cancel = true,
        }
    },
	["djs_bite_mtballsub"] = { -- requirement https://docs.djscollections.com/paid-props-products/food-and-drink-animations
        label = "Meetball Sub",
        weight = 1,
        stack = true,
        close = true,
        client = {
			status = { hunger = 400000 },
            anim = { dict = 'mp_player_inteat@burger', clip = 'mp_player_int_eat_burger' },
            prop = { model = 'djs_bite_mtballsub', pos = vector3(0.125000, 0.056000, 0.000000), rot = vector3(0.000000, 0.000000, 186.298553), bone = 18905, },
			usetime = 17500,
			cancel = true,
        }
    },
	["djs_bite_pastrsub"] = { -- requirement https://docs.djscollections.com/paid-props-products/food-and-drink-animations
        label = "Pastrami Sub",
        weight = 1,
        stack = true,
        close = true,
        client = {
			status = { hunger = 400000 },
            anim = { dict = 'mp_player_inteat@burger', clip = 'mp_player_int_eat_burger' },
            prop = { model = 'djs_bite_pastrsub', pos = vector3(0.125000, 0.056000, 0.000000), rot = vector3(0.000000, 0.000000, 186.298553), bone = 18905, },
			usetime = 17500,
			cancel = true,
        }
    },
	["djs_bite_phillysub"] = { -- requirement https://docs.djscollections.com/paid-props-products/food-and-drink-animations
        label = "Philly Cheese Steak Sub",
        weight = 1,
        stack = true,
        close = true,
        client = {
			status = { hunger = 400000 },
            anim = { dict = 'mp_player_inteat@burger', clip = 'mp_player_int_eat_burger' },
            prop = { model = 'djs_bite_phillysub', pos = vector3(0.125000, 0.056000, 0.000000), rot = vector3(0.000000, 0.000000, 186.298553), bone = 18905, },
			usetime = 17500,
			cancel = true,
        }
    },
	["djs_bite_ribsub"] = { -- requirement https://docs.djscollections.com/paid-props-products/food-and-drink-animations
        label = "Smoked Rib Sub",
        weight = 1,
        stack = true,
        close = true,
        client = {
			status = { hunger = 400000 },
            anim = { dict = 'mp_player_inteat@burger', clip = 'mp_player_int_eat_burger' },
            prop = { model = 'djs_bite_ribsub', pos = vector3(0.125000, 0.056000, 0.000000), rot = vector3(0.000000, 0.000000, 186.298553), bone = 18905, },
			usetime = 17500,
			cancel = true,
        }
    },
	["djs_bite_rstbfsub"] = { -- requirement https://docs.djscollections.com/paid-props-products/food-and-drink-animations
        label = "Roast Beef Sub",
        weight = 1,
        stack = true,
        close = true,
        client = {
			status = { hunger = 400000 },
            anim = { dict = 'mp_player_inteat@burger', clip = 'mp_player_int_eat_burger' },
            prop = { model = 'djs_bite_rstbfsub', pos = vector3(0.125000, 0.056000, 0.000000), rot = vector3(0.000000, 0.000000, 186.298553), bone = 18905, },
			usetime = 17500,
			cancel = true,
        }
    },
	["djs_bite_smktrksub"] = { -- requirement https://docs.djscollections.com/paid-props-products/food-and-drink-animations
        label = "Smoked Turky Sub",
        weight = 1,
        stack = true,
        close = true,
        client = {
			status = { hunger = 400000 },
            anim = { dict = 'mp_player_inteat@burger', clip = 'mp_player_int_eat_burger' },
            prop = { model = 'djs_bite_smktrksub', pos = vector3(0.125000, 0.056000, 0.000000), rot = vector3(0.000000, 0.000000, 186.298553), bone = 18905, },
			usetime = 17500,
			cancel = true,
        }
    },
	["djs_bite_stinkysub"] = { -- requirement https://docs.djscollections.com/paid-props-products/food-and-drink-animations
        label = "Stinky Sub",
        weight = 1,
        stack = true,
        close = true,
        client = {
			status = { hunger = 400000 },
            anim = { dict = 'mp_player_inteat@burger', clip = 'mp_player_int_eat_burger' },
            prop = { model = 'djs_bite_stinkysub', pos = vector3(0.125000, 0.056000, 0.000000), rot = vector3(0.000000, 0.000000, 186.298553), bone = 18905, },
			usetime = 17500,
			cancel = true,
        }
    },
	["djs_bite_tunasub"] = { -- requirement https://docs.djscollections.com/paid-props-products/food-and-drink-animations
        label = "Tuna Sub",
        weight = 1,
        stack = true,
        close = true,
        client = {
			status = { hunger = 400000 },
            anim = { dict = 'mp_player_inteat@burger', clip = 'mp_player_int_eat_burger' },
            prop = { model = 'djs_bite_tunasub', pos = vector3(0.125000, 0.056000, 0.000000), rot = vector3(0.000000, 0.000000, 186.298553), bone = 18905, },
			usetime = 17500,
			cancel = true,
        }
    },
	["djs_bite_veggiesub"] = { -- requirement https://docs.djscollections.com/paid-props-products/food-and-drink-animations
        label = "Veggie Sub",
        weight = 1,
        stack = true,
        close = true,
        client = {
			status = { hunger = 400000 },
            anim = { dict = 'mp_player_inteat@burger', clip = 'mp_player_int_eat_burger' },
            prop = { model = 'djs_bite_veggiesub', pos = vector3(0.125000, 0.056000, 0.000000), rot = vector3(0.000000, 0.000000, 186.298553), bone = 18905, },
			usetime = 17500,
			cancel = true,
        }
    },
	["djs_bite_ccutwrap"] = { -- requirement https://docs.djscollections.com/paid-props-products/food-and-drink-animations
        label = "Cold Cut Wrap",
        weight = 1,
        stack = true,
        close = true,
        client = {
			status = { hunger = 400000 },
            anim = { dict = 'mp_player_inteat@burger', clip = 'mp_player_int_eat_burger' },
            prop = { model = 'djs_bite_ccutwrap', pos = vector3(0.125000, 0.056000, 0.000000), rot = vector3(0.000000, 0.000000, 186.298553), bone = 18905, },
			usetime = 17500,
			cancel = true,
        }
    },
	["djs_bite_steakwrap"] = { -- requirement https://docs.djscollections.com/paid-props-products/food-and-drink-animations
        label = "Steak Wrap",
        weight = 1,
        stack = true,
        close = true,
        client = {
			status = { hunger = 400000 },
            anim = { dict = 'mp_player_inteat@burger', clip = 'mp_player_int_eat_burger' },
            prop = { model = 'djs_bite_steakwrap', pos = vector3(0.125000, 0.056000, 0.000000), rot = vector3(0.000000, 0.000000, 186.298553), bone = 18905, },
			usetime = 17500,
			cancel = true,
        }
    },
	["djs_bite_steakwrap"] = { -- requirement https://docs.djscollections.com/paid-props-products/food-and-drink-animations
        label = "Steak Wrap",
        weight = 1,
        stack = true,
        close = true,
        client = {
			status = { hunger = 400000 },
            anim = { dict = 'mp_player_inteat@burger', clip = 'mp_player_int_eat_burger' },
            prop = { model = 'djs_bite_steakwrap', pos = vector3(0.125000, 0.056000, 0.000000), rot = vector3(0.000000, 0.000000, 186.298553), bone = 18905, },
			usetime = 17500,
			cancel = true,
        }
    },
	["djs_bite_stinkywrap"] = { -- requirement https://docs.djscollections.com/paid-props-products/food-and-drink-animations
        label = "Stinky Wrap",
        weight = 1,
        stack = true,
        close = true,
        client = {
			status = { hunger = 400000 },
            anim = { dict = 'mp_player_inteat@burger', clip = 'mp_player_int_eat_burger' },
            prop = { model = 'djs_bite_stinkywrap', pos = vector3(0.125000, 0.056000, 0.000000), rot = vector3(0.000000, 0.000000, 186.298553), bone = 18905, },
			usetime = 17500,
			cancel = true,
        }
    },
	["djs_bite_turkwrap"] = { -- requirement https://docs.djscollections.com/paid-props-products/food-and-drink-animations
        label = "Turkey Wrap",
        weight = 1,
        stack = true,
        close = true,
        client = {
			status = { hunger = 400000 },
            anim = { dict = 'mp_player_inteat@burger', clip = 'mp_player_int_eat_burger' },
            prop = { model = 'djs_bite_turkwrap', pos = vector3(0.125000, 0.056000, 0.000000), rot = vector3(0.000000, 0.000000, 186.298553), bone = 18905, },
			usetime = 17500,
			cancel = true,
        }
    },
	["djs_bite_veggiewrap"] = { -- requirement https://docs.djscollections.com/paid-props-products/food-and-drink-animations
        label = "Veggie Wrap",
        weight = 1,
        stack = true,
        close = true,
        client = {
			status = { hunger = 400000 },
            anim = { dict = 'mp_player_inteat@burger', clip = 'mp_player_int_eat_burger' },
            prop = { model = 'djs_bite_veggiewrap', pos = vector3(0.125000, 0.056000, 0.000000), rot = vector3(0.000000, 0.000000, 186.298553), bone = 18905, },
			usetime = 17500,
			cancel = true,
        }
    },
    ['djs_bite_chips'] = { --checked
		label = 'Bites Chips',
		weight = 50,
		client = {
			status = { hunger = 400000 },
			anim = { dict = 'anim@djs@food@chips', clip = 'djs_food_chips_bite_loop' },
            prop = { model = `djs_bite_chips`, bone = 57005, pos = vec3(0.117000, 0.050000, -0.053000), rot = vec3(-12.231997, 2.780000, 174.027939) },
			usetime = 2500,
			cancel = true,
		},
	},
	['djs_bite_cherryicee'] = { --checked
		label = 'Cherry Icee',
		weight = 500,
		client = {
			status = { thirst = 400000 },
			anim = { dict = 'anim@djs@drink@soda', clip = 'djs_drink_soda_sip_long' },
            prop = { model = `djs_bite_cherryicee`, bone = 57005, pos = vec3(0.129000, 0.083000, 0.000000), rot = vec3(-61.950249, 0.000000, -16.499983) },
			usetime = 2500,
			cancel = true,
		},
	},
	['djs_bite_appleicee'] = { --checked
		label = 'Apple Icee',
		weight = 500,
		client = {
			status = { thirst = 400000 },
			anim = { dict = 'mp_player_intdrink', clip = 'loop_bottle' },
            prop = { model = `djs_bite_cherryicee`, bone = 57005, pos = vec3(0.129000, 0.083000, 0.000000), rot = vec3(-61.950249, 0.000000, -16.499983) },
			usetime = 2500,
			cancel = true,
		},
	},
	["djs_bite_cookie"] = { -- requirement https://docs.djscollections.com/paid-props-products/food-and-drink-animations
        label = "Chocolate Chip Cookie",
        weight = 1,
        stack = true,
        close = true,
        client = {
			status = { hunger = 400000 },
            anim = { dict = 'mp_player_inteat@burger', clip = 'mp_player_int_eat_burger' },
            prop = { model = 'djs_bite_cookie', pos = vector3(0.15, 0.05, 0.02), rot = vector3(-32.0, -39.0, 0.0), bone = 18905, },
			usetime = 17500,
			cancel = true,
        }
    },
```

{% endcode %}
{% endtab %}

{% tab title="Ox Inventory (Non-Consumable)" %}
Add the items below to your `ox_inventory` into `data/items.lua`.

{% code expandable="true" %}

```
    ['djs_bite_ccutsalad'] = {
        label = 'Cold Cut Salad',
        weight = 1,
        stack = false,
        close = false,
    },
    ['djs_bite_chiksalad'] = {
        label = 'Chicken Salad',
        weight = 1,
        stack = false,
        close = false,
    },
    ['djs_bite_fruitsalad'] = {
        label = 'Fruit Salad',
        weight = 1,
        stack = false,
        close = false,
    },
    ['djs_bite_turksalad'] = {
        label = 'Turkey Salad',
        weight = 1,
        stack = false,
        close = false,
    },
    ['djs_bite_veggiesalad'] = {
        label = 'Veggie Salad',
        weight = 1,
        stack = false,
        close = false,
    },
    ['djs_bowl_stinkysalad'] = {
        label = 'Stinky Salad',
        weight = 1,
        stack = false,
        close = false,
    },
    ['djs_bite_cornbfsub'] = {
        label = 'Corn Beef Sub',
        weight = 1,
        stack = false,
        close = false,
    },
    ['djs_bite_grlchksub'] = {
        label = 'Grilled Chicken Sub',
        weight = 1,
        stack = false,
        close = false,
    },
    ['djs_bite_hamsub'] = {
        label = 'Ham Sub',
        weight = 1,
        stack = false,
        close = false,
    },
    ['djs_bite_italisub'] = {
        label = 'Italian Sub',
        weight = 1,
        stack = false,
        close = false,
    },
    ['djs_bite_mtballsub'] = {
        label = 'Meetball Sub',
        weight = 1,
        stack = false,
        close = false,
    },
    ['djs_bite_pastrsub'] = {
        label = 'Pastrami Sub',
        weight = 1,
        stack = false,
        close = false,
    },
    ['djs_bite_phillysub'] = {
        label = 'Philly Cheese Steak Sub',
        weight = 1,
        stack = false,
        close = false,
    },
    ['djs_bite_ribsub'] = {
        label = 'Smoked Rib Sub',
        weight = 1,
        stack = false,
        close = false,
    },
    ['djs_bite_rstbfsub'] = {
        label = 'Roast Beef Sub',
        weight = 1,
        stack = false,
        close = false,
    },
    ['djs_bite_smktrksub'] = {
        label = 'Smoked Turkey Sub',
        weight = 1,
        stack = false,
        close = false,
    },
    ['djs_bite_stinkysub'] = {
        label = 'Stinky Sub',
        weight = 1,
        stack = false,
        close = false,
    },
    ['djs_bite_tunasub'] = {
        label = 'Tuna Sub',
        weight = 1,
        stack = false,
        close = false,
    },
    ['djs_bite_veggiesub'] = {
        label = 'Veggie Sub',
        weight = 1,
        stack = false,
        close = false,
    },
    ['djs_bite_ccutwrap'] = {
        label = 'Cold Cut Wrap',
        weight = 1,
        stack = false,
        close = false,
    },
    ['djs_bite_steakwrap'] = {
        label = 'Steak Wrap',
        weight = 1,
        stack = false,
        close = false,
    },
    ['djs_bite_stinkywrap'] = {
        label = 'Stinky Wrap',
        weight = 1,
        stack = false,
        close = false,
    },
    ['djs_bite_turkwrap'] = {
        label = 'Turkey Wrap',
        weight = 1,
        stack = false,
        close = false,
    },
    ['djs_bite_veggiewrap'] = {
        label = 'Veggie Wrap',
        weight = 1,
        stack = false,
        close = false,
    },
    ['djs_bite_chips'] = {
        label = 'Bites Chips',
        weight = 1,
        stack = false,
        close = false,
    },
    ['djs_bite_cherryicee'] = {
        label = 'Cherry Icee',
        weight = 1,
        stack = false,
        close = false,
    },
    ['djs_bite_appleicee'] = {
        label = 'Apple Icee',
        weight = 1,
        stack = false,
        close = false,
    },
    ['djs_bite_cookie'] = {
        label = 'Chocolate Chip Cookie',
        weight = 1,
        stack = false,
        close = false,
    },
```

{% endcode %}
{% endtab %}

{% tab title="QS Inventory (Consumables)" %}
Add the items below to your `qs-inventory` into `shared/items.lua`.

{% code expandable="true" %}

```
Soon!
```

{% endcode %}
{% endtab %}

{% tab title="QS Inventory (Non-(Consumables)" %}
Add the items below to your `qs-inventory` into `shared/items.lua`.

{% code expandable="true" %}

```
Soon!
```

{% endcode %}
{% endtab %}
{% endtabs %}

***

## Addon Consumables Items

Make sure to add all required items to your inventory resource using the format that matches your setup.

{% tabs %}
{% tab title="Devcore Needs" %}
Add the items below to your `devcore_needs` into `data/items.lua`.

{% code expandable="true" %}

```
    ["djs_bite_ccutsalad"] = {-- item name
        Size = 220, -- Item size
        Type = 'FOOD', -- Item type 'DRINK' , 'FOOD' , 'GLASS'
        Prop = { -- Prop spawn data for idle & usage.
            Main = {
                Model = 'djs_bite_ccutsalad',
                BoneID = 18905,
                Offset = vector3(0.175000, 0.008000, 0.000000),
                Rot = vector3(-14.549987, 0.000000, 6.600003),
            },
            Second = { --https://forum.cfx.re/t/free-animation-eat-with-fork/5068991
                Model = 'djs_fork',
                BoneID = 57005,
                Offset = vector3(0.11, 0.04, -0.03),
                Rot = vector3(-98.0, -222.0, 22.0),
            }
        },
        Anim = {
            Hold = nil,
            Use = {
                dict = "anim@djs@food@plated",
                anim = "djs_food_plate_bite_single",
                params = {nil, nil, 1200, 49}
            }
        },
        Consume = {
            Bite = {min = 15, max = 25}, -- Set how many ml or g are removed from the item after each drink / bite into food
            Status = 50000, -- set how much food or drink you want to add 
            Stress = nil, -- How much stress do you want to remove after using the item if you don't want to use the stress system leave nil
            Alcohol = nil -- Set the amount of alcohol the item should add after each drink.
        },
    },

    ["djs_bite_chiksalad"] = {-- item name
        Size = 220, -- Item size
        Type = 'FOOD', -- Item type 'DRINK' , 'FOOD' , 'GLASS'
        Prop = { -- Prop spawn data for idle & usage.
            Main = {
                Model = 'djs_bite_chiksalad',
                BoneID = 18905,
                Offset = vector3(0.175000, 0.008000, 0.000000),
                Rot = vector3(-14.549987, 0.000000, 6.600003),
            },
            Second = { --https://forum.cfx.re/t/free-animation-eat-with-fork/5068991
                Model = 'djs_fork',
                BoneID = 57005,
                Offset = vector3(0.11, 0.04, -0.03),
                Rot = vector3(-98.0, -222.0, 22.0),
            }
        },
        Anim = {
            Hold = nil,
            Use = {
                dict = "anim@djs@food@plated",
                anim = "djs_food_plate_bite_single",
                params = {nil, nil, 1200, 49}
            }
        },
        Consume = {
            Bite = {min = 15, max = 25}, -- Set how many ml or g are removed from the item after each drink / bite into food
            Status = 50000, -- set how much food or drink you want to add 
            Stress = nil, -- How much stress do you want to remove after using the item if you don't want to use the stress system leave nil
            Alcohol = nil -- Set the amount of alcohol the item should add after each drink.
        },
    },

    ["djs_bite_fruitsalad"] = {-- item name
        Size = 220, -- Item size
        Type = 'FOOD', -- Item type 'DRINK' , 'FOOD' , 'GLASS'
        Prop = { -- Prop spawn data for idle & usage.
            Main = {
                Model = 'djs_bite_fruitsalad',
                BoneID = 18905,
                Offset = vector3(0.175000, 0.008000, 0.000000),
                Rot = vector3(-14.549987, 0.000000, 6.600003),
            },
            Second = { --https://forum.cfx.re/t/free-animation-eat-with-fork/5068991
                Model = 'djs_fork',
                BoneID = 57005,
                Offset = vector3(0.11, 0.04, -0.03),
                Rot = vector3(-98.0, -222.0, 22.0),
            }
        },
        Anim = {
            Hold = nil,
            Use = {
                dict = "anim@djs@food@plated",
                anim = "djs_food_plate_bite_single",
                params = {nil, nil, 1200, 49}
            }
        },
        Consume = {
            Bite = {min = 15, max = 25}, -- Set how many ml or g are removed from the item after each drink / bite into food
            Status = 50000, -- set how much food or drink you want to add 
            Stress = nil, -- How much stress do you want to remove after using the item if you don't want to use the stress system leave nil
            Alcohol = nil -- Set the amount of alcohol the item should add after each drink.
        },
    },

    ["djs_bite_turksalad"] = {-- item name
        Size = 220, -- Item size
        Type = 'FOOD', -- Item type 'DRINK' , 'FOOD' , 'GLASS'
        Prop = { -- Prop spawn data for idle & usage.
            Main = {
                Model = 'djs_bite_turksalad',
                BoneID = 18905,
                Offset = vector3(0.175000, 0.008000, 0.000000),
                Rot = vector3(-14.549987, 0.000000, 6.600003),
            },
            Second = { --https://forum.cfx.re/t/free-animation-eat-with-fork/5068991
                Model = 'djs_fork',
                BoneID = 57005,
                Offset = vector3(0.11, 0.04, -0.03),
                Rot = vector3(-98.0, -222.0, 22.0),
            }
        },
        Anim = {
            Hold = nil,
            Use = {
                dict = "anim@djs@food@plated",
                anim = "djs_food_plate_bite_single",
                params = {nil, nil, 1200, 49}
            }
        },
        Consume = {
            Bite = {min = 15, max = 25}, -- Set how many ml or g are removed from the item after each drink / bite into food
            Status = 50000, -- set how much food or drink you want to add 
            Stress = nil, -- How much stress do you want to remove after using the item if you don't want to use the stress system leave nil
            Alcohol = nil -- Set the amount of alcohol the item should add after each drink.
        },
    },

    ["djs_bite_veggiesalad"] = {-- item name
        Size = 220, -- Item size
        Type = 'FOOD', -- Item type 'DRINK' , 'FOOD' , 'GLASS'
        Prop = { -- Prop spawn data for idle & usage.
            Main = {
                Model = 'djs_bite_veggiesalad',
                BoneID = 18905,
                Offset = vector3(0.175000, 0.008000, 0.000000),
                Rot = vector3(-14.549987, 0.000000, 6.600003),
            },
            Second = { --https://forum.cfx.re/t/free-animation-eat-with-fork/5068991
                Model = 'djs_fork',
                BoneID = 57005,
                Offset = vector3(0.11, 0.04, -0.03),
                Rot = vector3(-98.0, -222.0, 22.0),
            }
        },
        Anim = {
            Hold = nil,
            Use = {
                dict = "anim@djs@food@plated",
                anim = "djs_food_plate_bite_loop",
                params = {nil, nil, 1200, 49}
            }
        },
        Consume = {
            Bite = {min = 25, max = 35}, -- Set how many ml or g are removed from the item after each drink / bite into food
            Status = 50000, -- set how much food or drink you want to add 
            Stress = nil, -- How much stress do you want to remove after using the item if you don't want to use the stress system leave nil
            Alcohol = nil -- Set the amount of alcohol the item should add after each drink.
        },
    },

    ["djs_bowl_stinkysalad"] = {-- item name
        Size = 220, -- Item size
        Type = 'FOOD', -- Item type 'DRINK' , 'FOOD' , 'GLASS'
        Prop = { -- Prop spawn data for idle & usage.
            Main = {
                Model = 'djs_bowl_stinkysalad',
                BoneID = 18905,
                Offset = vector3(0.175000, 0.008000, 0.000000),
                Rot = vector3(-14.549987, 0.000000, 6.600003),
            },
            Second = { --https://forum.cfx.re/t/free-animation-eat-with-fork/5068991
                Model = 'djs_fork',
                BoneID = 57005,
                Offset = vector3(0.11, 0.04, -0.03),
                Rot = vector3(-98.0, -222.0, 22.0),
            }
        },
        Anim = {
            Hold = nil,
            Use = {
                dict = "anim@djs@food@plated",
                anim = "djs_food_plate_bite_single",
                params = {nil, nil, 1200, 49}
            }
        },
        Consume = {
            Bite = {min = 15, max = 25}, -- Set how many ml or g are removed from the item after each drink / bite into food
            Status = 50000, -- set how much food or drink you want to add 
            Stress = nil, -- How much stress do you want to remove after using the item if you don't want to use the stress system leave nil
            Alcohol = nil -- Set the amount of alcohol the item should add after each drink.
        },
    },

    ["djs_bite_cornbfsub"] = {-- item name
        Size = 220, -- Item size
        Type = 'FOOD', -- Item type 'DRINK' , 'FOOD' , 'GLASS'
        Prop = { -- Prop spawn data for idle & usage.
            Main = {
                Model = 'djs_bite_cornbfsub',
                BoneID = 18905,
                Offset = vector3(0.125000, 0.056000, 0.000000),
                Rot = vector3(0.000000, 0.000000, 186.298553),
            },
            --[[Second = { --https://forum.cfx.re/t/free-animation-eat-with-fork/5068991
                Model = 'alcaprop_fork',
                BoneID = 57005,
                Offset = vector3(0.14, 0.02, 0.01),
                Rot = vector3(-118.0, 192.0, 24.0),
            }]]
        },
        Anim = {
            Hold = nil,
            Use = {
                dict = "mp_player_inteat@burger",
                anim = "mp_player_int_eat_burger",
                params = {nil, nil, 1200, 49}
            }
        },
        Consume = {
            Bite = {min = 15, max = 25}, -- Set how many ml or g are removed from the item after each drink / bite into food
            Status = 50000, -- set how much food or drink you want to add 
            Stress = nil, -- How much stress do you want to remove after using the item if you don't want to use the stress system leave nil
            Alcohol = nil -- Set the amount of alcohol the item should add after each drink.
        },
    },

    ["djs_bite_grlchksub"] = {-- item name
        Size = 220, -- Item size
        Type = 'FOOD', -- Item type 'DRINK' , 'FOOD' , 'GLASS'
        Prop = { -- Prop spawn data for idle & usage.
            Main = {
                Model = 'djs_bite_grlchksub',
                BoneID = 18905,
                Offset = vector3(0.125000, 0.056000, 0.000000),
                Rot = vector3(0.000000, 0.000000, 186.298553),
            },
            --[[Second = { --https://forum.cfx.re/t/free-animation-eat-with-fork/5068991
                Model = 'alcaprop_fork',
                BoneID = 57005,
                Offset = vector3(0.14, 0.02, 0.01),
                Rot = vector3(-118.0, 192.0, 24.0),
            }]]
        },
        Anim = {
            Hold = nil,
            Use = {
                dict = "mp_player_inteat@burger",
                anim = "mp_player_int_eat_burger",
                params = {nil, nil, 1200, 49}
            }
        },
        Consume = {
            Bite = {min = 15, max = 25}, -- Set how many ml or g are removed from the item after each drink / bite into food
            Status = 50000, -- set how much food or drink you want to add 
            Stress = nil, -- How much stress do you want to remove after using the item if you don't want to use the stress system leave nil
            Alcohol = nil -- Set the amount of alcohol the item should add after each drink.
        },
    },

    ["djs_bite_hamsub"] = {-- item name
        Size = 220, -- Item size
        Type = 'FOOD', -- Item type 'DRINK' , 'FOOD' , 'GLASS'
        Prop = { -- Prop spawn data for idle & usage.
            Main = {
                Model = 'djs_bite_hamsub',
                BoneID = 18905,
                Offset = vector3(0.125000, 0.056000, 0.000000),
                Rot = vector3(0.000000, 0.000000, 186.298553),
            },
            --[[Second = { --https://forum.cfx.re/t/free-animation-eat-with-fork/5068991
                Model = 'alcaprop_fork',
                BoneID = 57005,
                Offset = vector3(0.14, 0.02, 0.01),
                Rot = vector3(-118.0, 192.0, 24.0),
            }]]
        },
        Anim = {
            Hold = nil,
            Use = {
                dict = "mp_player_inteat@burger",
                anim = "mp_player_int_eat_burger",
                params = {nil, nil, 1200, 49}
            }
        },
        Consume = {
            Bite = {min = 15, max = 25}, -- Set how many ml or g are removed from the item after each drink / bite into food
            Status = 50000, -- set how much food or drink you want to add 
            Stress = nil, -- How much stress do you want to remove after using the item if you don't want to use the stress system leave nil
            Alcohol = nil -- Set the amount of alcohol the item should add after each drink.
        },
    },

    ["djs_bite_italisub"] = {-- item name
        Size = 220, -- Item size
        Type = 'FOOD', -- Item type 'DRINK' , 'FOOD' , 'GLASS'
        Prop = { -- Prop spawn data for idle & usage.
            Main = {
                Model = 'djs_bite_italisub',
                BoneID = 18905,
                Offset = vector3(0.125000, 0.056000, 0.000000),
                Rot = vector3(0.000000, 0.000000, 186.298553),
            },
            --[[Second = { --https://forum.cfx.re/t/free-animation-eat-with-fork/5068991
                Model = 'alcaprop_fork',
                BoneID = 57005,
                Offset = vector3(0.14, 0.02, 0.01),
                Rot = vector3(-118.0, 192.0, 24.0),
            }]]
        },
        Anim = {
            Hold = nil,
            Use = {
                dict = "mp_player_inteat@burger",
                anim = "mp_player_int_eat_burger",
                params = {nil, nil, 1200, 49}
            }
        },
        Consume = {
            Bite = {min = 15, max = 25}, -- Set how many ml or g are removed from the item after each drink / bite into food
            Status = 50000, -- set how much food or drink you want to add 
            Stress = nil, -- How much stress do you want to remove after using the item if you don't want to use the stress system leave nil
            Alcohol = nil -- Set the amount of alcohol the item should add after each drink.
        },
    },

    ["djs_bite_mtballsub"] = {-- item name
        Size = 220, -- Item size
        Type = 'FOOD', -- Item type 'DRINK' , 'FOOD' , 'GLASS'
        Prop = { -- Prop spawn data for idle & usage.
            Main = {
                Model = 'djs_bite_mtballsub',
                BoneID = 18905,
                Offset = vector3(0.125000, 0.056000, 0.000000),
                Rot = vector3(0.000000, 0.000000, 186.298553),
            },
            --[[Second = { --https://forum.cfx.re/t/free-animation-eat-with-fork/5068991
                Model = 'alcaprop_fork',
                BoneID = 57005,
                Offset = vector3(0.14, 0.02, 0.01),
                Rot = vector3(-118.0, 192.0, 24.0),
            }]]
        },
        Anim = {
            Hold = nil,
            Use = {
                dict = "mp_player_inteat@burger",
                anim = "mp_player_int_eat_burger",
                params = {nil, nil, 1200, 49}
            }
        },
        Consume = {
            Bite = {min = 15, max = 25}, -- Set how many ml or g are removed from the item after each drink / bite into food
            Status = 50000, -- set how much food or drink you want to add 
            Stress = nil, -- How much stress do you want to remove after using the item if you don't want to use the stress system leave nil
            Alcohol = nil -- Set the amount of alcohol the item should add after each drink.
        },
    },

    ["djs_bite_pastrsub"] = {-- item name
        Size = 220, -- Item size
        Type = 'FOOD', -- Item type 'DRINK' , 'FOOD' , 'GLASS'
        Prop = { -- Prop spawn data for idle & usage.
            Main = {
                Model = 'djs_bite_pastrsub',
                BoneID = 18905,
                Offset = vector3(0.125000, 0.056000, 0.000000),
                Rot = vector3(0.000000, 0.000000, 186.298553),
            },
            --[[Second = { --https://forum.cfx.re/t/free-animation-eat-with-fork/5068991
                Model = 'alcaprop_fork',
                BoneID = 57005,
                Offset = vector3(0.14, 0.02, 0.01),
                Rot = vector3(-118.0, 192.0, 24.0),
            }]]
        },
        Anim = {
            Hold = nil,
            Use = {
                dict = "mp_player_inteat@burger",
                anim = "mp_player_int_eat_burger",
                params = {nil, nil, 1200, 49}
            }
        },
        Consume = {
            Bite = {min = 15, max = 25}, -- Set how many ml or g are removed from the item after each drink / bite into food
            Status = 50000, -- set how much food or drink you want to add 
            Stress = nil, -- How much stress do you want to remove after using the item if you don't want to use the stress system leave nil
            Alcohol = nil -- Set the amount of alcohol the item should add after each drink.
        },
    },

    ["djs_bite_phillysub"] = {-- item name
        Size = 220, -- Item size
        Type = 'FOOD', -- Item type 'DRINK' , 'FOOD' , 'GLASS'
        Prop = { -- Prop spawn data for idle & usage.
            Main = {
                Model = 'djs_bite_phillysub',
                BoneID = 18905,
                Offset = vector3(0.125000, 0.056000, 0.000000),
                Rot = vector3(0.000000, 0.000000, 186.298553),
            },
            --[[Second = { --https://forum.cfx.re/t/free-animation-eat-with-fork/5068991
                Model = 'alcaprop_fork',
                BoneID = 57005,
                Offset = vector3(0.14, 0.02, 0.01),
                Rot = vector3(-118.0, 192.0, 24.0),
            }]]
        },
        Anim = {
            Hold = nil,
            Use = {
                dict = "mp_player_inteat@burger",
                anim = "mp_player_int_eat_burger",
                params = {nil, nil, 1200, 49}
            }
        },
        Consume = {
            Bite = {min = 15, max = 25}, -- Set how many ml or g are removed from the item after each drink / bite into food
            Status = 50000, -- set how much food or drink you want to add 
            Stress = nil, -- How much stress do you want to remove after using the item if you don't want to use the stress system leave nil
            Alcohol = nil -- Set the amount of alcohol the item should add after each drink.
        },
    },

    ["djs_bite_ribsub"] = {-- item name
        Size = 220, -- Item size
        Type = 'FOOD', -- Item type 'DRINK' , 'FOOD' , 'GLASS'
        Prop = { -- Prop spawn data for idle & usage.
            Main = {
                Model = 'djs_bite_ribsub',
                BoneID = 18905,
                Offset = vector3(0.125000, 0.056000, 0.000000),
                Rot = vector3(0.000000, 0.000000, 186.298553),
            },
            --[[Second = { --https://forum.cfx.re/t/free-animation-eat-with-fork/5068991
                Model = 'alcaprop_fork',
                BoneID = 57005,
                Offset = vector3(0.14, 0.02, 0.01),
                Rot = vector3(-118.0, 192.0, 24.0),
            }]]
        },
        Anim = {
            Hold = nil,
            Use = {
                dict = "mp_player_inteat@burger",
                anim = "mp_player_int_eat_burger",
                params = {nil, nil, 1200, 49}
            }
        },
        Consume = {
            Bite = {min = 15, max = 25}, -- Set how many ml or g are removed from the item after each drink / bite into food
            Status = 50000, -- set how much food or drink you want to add 
            Stress = nil, -- How much stress do you want to remove after using the item if you don't want to use the stress system leave nil
            Alcohol = nil -- Set the amount of alcohol the item should add after each drink.
        },
    },

    ["djs_bite_rstbfsub"] = {-- item name
        Size = 220, -- Item size
        Type = 'FOOD', -- Item type 'DRINK' , 'FOOD' , 'GLASS'
        Prop = { -- Prop spawn data for idle & usage.
            Main = {
                Model = 'djs_bite_rstbfsub',
                BoneID = 18905,
                Offset = vector3(0.125000, 0.056000, 0.000000),
                Rot = vector3(0.000000, 0.000000, 186.298553),
            },
            --[[Second = { --https://forum.cfx.re/t/free-animation-eat-with-fork/5068991
                Model = 'alcaprop_fork',
                BoneID = 57005,
                Offset = vector3(0.14, 0.02, 0.01),
                Rot = vector3(-118.0, 192.0, 24.0),
            }]]
        },
        Anim = {
            Hold = nil,
            Use = {
                dict = "mp_player_inteat@burger",
                anim = "mp_player_int_eat_burger",
                params = {nil, nil, 1200, 49}
            }
        },
        Consume = {
            Bite = {min = 15, max = 25}, -- Set how many ml or g are removed from the item after each drink / bite into food
            Status = 50000, -- set how much food or drink you want to add 
            Stress = nil, -- How much stress do you want to remove after using the item if you don't want to use the stress system leave nil
            Alcohol = nil -- Set the amount of alcohol the item should add after each drink.
        },
    },

    ["djs_bite_smktrksub"] = {-- item name
        Size = 220, -- Item size
        Type = 'FOOD', -- Item type 'DRINK' , 'FOOD' , 'GLASS'
        Prop = { -- Prop spawn data for idle & usage.
            Main = {
                Model = 'djs_bite_smktrksub',
                BoneID = 18905,
                Offset = vector3(0.125000, 0.056000, 0.000000),
                Rot = vector3(0.000000, 0.000000, 186.298553),
            },
            --[[Second = { --https://forum.cfx.re/t/free-animation-eat-with-fork/5068991
                Model = 'alcaprop_fork',
                BoneID = 57005,
                Offset = vector3(0.14, 0.02, 0.01),
                Rot = vector3(-118.0, 192.0, 24.0),
            }]]
        },
        Anim = {
            Hold = nil,
            Use = {
                dict = "mp_player_inteat@burger",
                anim = "mp_player_int_eat_burger",
                params = {nil, nil, 1200, 49}
            }
        },
        Consume = {
            Bite = {min = 15, max = 25}, -- Set how many ml or g are removed from the item after each drink / bite into food
            Status = 50000, -- set how much food or drink you want to add 
            Stress = nil, -- How much stress do you want to remove after using the item if you don't want to use the stress system leave nil
            Alcohol = nil -- Set the amount of alcohol the item should add after each drink.
        },
    },

    ["djs_bite_stinkysub"] = {-- item name
        Size = 220, -- Item size
        Type = 'FOOD', -- Item type 'DRINK' , 'FOOD' , 'GLASS'
        Prop = { -- Prop spawn data for idle & usage.
            Main = {
                Model = 'djs_bite_stinkysub',
                BoneID = 18905,
                Offset = vector3(0.125000, 0.056000, 0.000000),
                Rot = vector3(0.000000, 0.000000, 186.298553),
            },
            --[[Second = { --https://forum.cfx.re/t/free-animation-eat-with-fork/5068991
                Model = 'alcaprop_fork',
                BoneID = 57005,
                Offset = vector3(0.14, 0.02, 0.01),
                Rot = vector3(-118.0, 192.0, 24.0),
            }]]
        },
        Anim = {
            Hold = nil,
            Use = {
                dict = "mp_player_inteat@burger",
                anim = "mp_player_int_eat_burger",
                params = {nil, nil, 1200, 49}
            }
        },
        Consume = {
            Bite = {min = 15, max = 25}, -- Set how many ml or g are removed from the item after each drink / bite into food
            Status = 50000, -- set how much food or drink you want to add 
            Stress = nil, -- How much stress do you want to remove after using the item if you don't want to use the stress system leave nil
            Alcohol = nil -- Set the amount of alcohol the item should add after each drink.
        },
    },
    
    ["djs_bite_tunasub"] = {-- item name
        Size = 220, -- Item size
        Type = 'FOOD', -- Item type 'DRINK' , 'FOOD' , 'GLASS'
        Prop = { -- Prop spawn data for idle & usage.
            Main = {
                Model = 'djs_bite_tunasub',
                BoneID = 18905,
                Offset = vector3(0.125000, 0.056000, 0.000000),
                Rot = vector3(0.000000, 0.000000, 186.298553),
            },
            --[[Second = { --https://forum.cfx.re/t/free-animation-eat-with-fork/5068991
                Model = 'alcaprop_fork',
                BoneID = 57005,
                Offset = vector3(0.14, 0.02, 0.01),
                Rot = vector3(-118.0, 192.0, 24.0),
            }]]
        },
        Anim = {
            Hold = nil,
            Use = {
                dict = "mp_player_inteat@burger",
                anim = "mp_player_int_eat_burger",
                params = {nil, nil, 1200, 49}
            }
        },
        Consume = {
            Bite = {min = 15, max = 25}, -- Set how many ml or g are removed from the item after each drink / bite into food
            Status = 50000, -- set how much food or drink you want to add 
            Stress = nil, -- How much stress do you want to remove after using the item if you don't want to use the stress system leave nil
            Alcohol = nil -- Set the amount of alcohol the item should add after each drink.
        },
    },

    ["djs_bite_veggiesub"] = {-- item name
        Size = 220, -- Item size
        Type = 'FOOD', -- Item type 'DRINK' , 'FOOD' , 'GLASS'
        Prop = { -- Prop spawn data for idle & usage.
            Main = {
                Model = 'djs_bite_veggiesub',
                BoneID = 18905,
                Offset = vector3(0.125000, 0.056000, 0.000000),
                Rot = vector3(0.000000, 0.000000, 186.298553),
            },
            --[[Second = { --https://forum.cfx.re/t/free-animation-eat-with-fork/5068991
                Model = 'alcaprop_fork',
                BoneID = 57005,
                Offset = vector3(0.14, 0.02, 0.01),
                Rot = vector3(-118.0, 192.0, 24.0),
            }]]
        },
        Anim = {
            Hold = nil,
            Use = {
                dict = "mp_player_inteat@burger",
                anim = "mp_player_int_eat_burger",
                params = {nil, nil, 1200, 49}
            }
        },
        Consume = {
            Bite = {min = 15, max = 25}, -- Set how many ml or g are removed from the item after each drink / bite into food
            Status = 50000, -- set how much food or drink you want to add 
            Stress = nil, -- How much stress do you want to remove after using the item if you don't want to use the stress system leave nil
            Alcohol = nil -- Set the amount of alcohol the item should add after each drink.
        },
    },
    
    ["djs_bite_ccutwrap"] = {-- item name
        Size = 220, -- Item size
        Type = 'FOOD', -- Item type 'DRINK' , 'FOOD' , 'GLASS'
        Prop = { -- Prop spawn data for idle & usage.
            Main = {
                Model = 'djs_bite_ccutwrap',
                BoneID = 18905,
                Offset = vector3(0.125000, 0.056000, 0.000000),
                Rot = vector3(0.000000, 0.000000, 186.298553),
            },
            --[[Second = { --https://forum.cfx.re/t/free-animation-eat-with-fork/5068991
                Model = 'alcaprop_fork',
                BoneID = 57005,
                Offset = vector3(0.14, 0.02, 0.01),
                Rot = vector3(-118.0, 192.0, 24.0),
            }]]
        },
        Anim = {
            Hold = nil,
            Use = {
                dict = "mp_player_inteat@burger",
                anim = "mp_player_int_eat_burger",
                params = {nil, nil, 1200, 49}
            }
        },
        Consume = {
            Bite = {min = 15, max = 25}, -- Set how many ml or g are removed from the item after each drink / bite into food
            Status = 50000, -- set how much food or drink you want to add 
            Stress = nil, -- How much stress do you want to remove after using the item if you don't want to use the stress system leave nil
            Alcohol = nil -- Set the amount of alcohol the item should add after each drink.
        },
    },

    ["djs_bite_steakwrap"] = {-- item name
        Size = 220, -- Item size
        Type = 'FOOD', -- Item type 'DRINK' , 'FOOD' , 'GLASS'
        Prop = { -- Prop spawn data for idle & usage.
            Main = {
                Model = 'djs_bite_steakwrap',
                BoneID = 18905,
                Offset = vector3(0.125000, 0.056000, 0.000000),
                Rot = vector3(0.000000, 0.000000, 186.298553),
            },
            --[[Second = { --https://forum.cfx.re/t/free-animation-eat-with-fork/5068991
                Model = 'alcaprop_fork',
                BoneID = 57005,
                Offset = vector3(0.14, 0.02, 0.01),
                Rot = vector3(-118.0, 192.0, 24.0),
            }]]
        },
        Anim = {
            Hold = nil,
            Use = {
                dict = "mp_player_inteat@burger",
                anim = "mp_player_int_eat_burger",
                params = {nil, nil, 1200, 49}
            }
        },
        Consume = {
            Bite = {min = 15, max = 25}, -- Set how many ml or g are removed from the item after each drink / bite into food
            Status = 50000, -- set how much food or drink you want to add 
            Stress = nil, -- How much stress do you want to remove after using the item if you don't want to use the stress system leave nil
            Alcohol = nil -- Set the amount of alcohol the item should add after each drink.
        },
    },

    ["djs_bite_stinkywrap"] = {-- item name
        Size = 220, -- Item size
        Type = 'FOOD', -- Item type 'DRINK' , 'FOOD' , 'GLASS'
        Prop = { -- Prop spawn data for idle & usage.
            Main = {
                Model = 'djs_bite_stinkywrap',
                BoneID = 18905,
                Offset = vector3(0.125000, 0.056000, 0.000000),
                Rot = vector3(0.000000, 0.000000, 186.298553),
            },
            --[[Second = { --https://forum.cfx.re/t/free-animation-eat-with-fork/5068991
                Model = 'alcaprop_fork',
                BoneID = 57005,
                Offset = vector3(0.14, 0.02, 0.01),
                Rot = vector3(-118.0, 192.0, 24.0),
            }]]
        },
        Anim = {
            Hold = nil,
            Use = {
                dict = "mp_player_inteat@burger",
                anim = "mp_player_int_eat_burger",
                params = {nil, nil, 1200, 49}
            }
        },
        Consume = {
            Bite = {min = 15, max = 25}, -- Set how many ml or g are removed from the item after each drink / bite into food
            Status = 50000, -- set how much food or drink you want to add 
            Stress = nil, -- How much stress do you want to remove after using the item if you don't want to use the stress system leave nil
            Alcohol = nil -- Set the amount of alcohol the item should add after each drink.
        },
    },

    ["djs_bite_turkwrap"] = {-- item name
        Size = 220, -- Item size
        Type = 'FOOD', -- Item type 'DRINK' , 'FOOD' , 'GLASS'
        Prop = { -- Prop spawn data for idle & usage.
            Main = {
                Model = 'djs_bite_turkwrap',
                BoneID = 18905,
                Offset = vector3(0.125000, 0.056000, 0.000000),
                Rot = vector3(0.000000, 0.000000, 186.298553),
            },
            --[[Second = { --https://forum.cfx.re/t/free-animation-eat-with-fork/5068991
                Model = 'alcaprop_fork',
                BoneID = 57005,
                Offset = vector3(0.14, 0.02, 0.01),
                Rot = vector3(-118.0, 192.0, 24.0),
            }]]
        },
        Anim = {
            Hold = nil,
            Use = {
                dict = "mp_player_inteat@burger",
                anim = "mp_player_int_eat_burger",
                params = {nil, nil, 1200, 49}
            }
        },
        Consume = {
            Bite = {min = 15, max = 25}, -- Set how many ml or g are removed from the item after each drink / bite into food
            Status = 50000, -- set how much food or drink you want to add 
            Stress = nil, -- How much stress do you want to remove after using the item if you don't want to use the stress system leave nil
            Alcohol = nil -- Set the amount of alcohol the item should add after each drink.
        },
    },

    ["djs_bite_veggiewrap"] = {-- item name
        Size = 220, -- Item size
        Type = 'FOOD', -- Item type 'DRINK' , 'FOOD' , 'GLASS'
        Prop = { -- Prop spawn data for idle & usage.
            Main = {
                Model = 'djs_bite_veggiewrap',
                BoneID = 18905,
                Offset = vector3(0.125000, 0.056000, 0.000000),
                Rot = vector3(0.000000, 0.000000, 186.298553),
            },
            --[[Second = { --https://forum.cfx.re/t/free-animation-eat-with-fork/5068991
                Model = 'alcaprop_fork',
                BoneID = 57005,
                Offset = vector3(0.14, 0.02, 0.01),
                Rot = vector3(-118.0, 192.0, 24.0),
            }]]
        },
        Anim = {
            Hold = nil,
            Use = {
                dict = "mp_player_inteat@burger",
                anim = "mp_player_int_eat_burger",
                params = {nil, nil, 1200, 49}
            }
        },
        Consume = {
            Bite = {min = 15, max = 25}, -- Set how many ml or g are removed from the item after each drink / bite into food
            Status = 50000, -- set how much food or drink you want to add 
            Stress = nil, -- How much stress do you want to remove after using the item if you don't want to use the stress system leave nil
            Alcohol = nil -- Set the amount of alcohol the item should add after each drink.
        },
    },

    ["djs_bite_chips"] = {-- item name
        Size = 220, -- Item size
        Type = 'FOOD', -- Item type 'DRINK' , 'FOOD' , 'GLASS'
        Prop = { -- Prop spawn data for idle & usage.
            Main = {
                Model = 'djs_bite_chips',
                BoneID = 57005,
                Offset = vector3(0.117000, 0.050000, -0.053000),
                Rot = vector3(-12.231997, 2.780000, 174.027939),
            },
            --[[Second = { --https://forum.cfx.re/t/free-animation-eat-with-fork/5068991
                Model = 'alcaprop_fork',
                BoneID = 57005,
                Offset = vector3(0.14, 0.02, 0.01),
                Rot = vector3(-118.0, 192.0, 24.0),
            }]]
        },
        Anim = {
            Hold = nil,
            Use = {
                dict = "anim@djs@food@chips",
                anim = "djs_food_chips_bite_single",
                params = {nil, nil, 1200, 49}
            }
        },
        Consume = {
            Bite = {min = 15, max = 25}, -- Set how many ml or g are removed from the item after each drink / bite into food
            Status = 50000, -- set how much food or drink you want to add 
            Stress = nil, -- How much stress do you want to remove after using the item if you don't want to use the stress system leave nil
            Alcohol = nil -- Set the amount of alcohol the item should add after each drink.
        },
    },

    ["djs_bite_cherryicee"] = {-- item name
        Size = 220, -- Item size
        Type = 'DRINK', -- Item type 'DRINK' , 'FOOD' , 'GLASS'
        Prop = { -- Prop spawn data for idle & usage.
            Main = {
                Model = 'djs_bite_cherryicee',
                BoneID = 57005,
                Offset = vector3(0.129000, 0.083000, 0.000000),
                Rot = vector3(-61.950249, 0.000000, -16.499983),
            },
            --[[Second = { --https://forum.cfx.re/t/free-animation-eat-with-fork/5068991
                Model = 'alcaprop_fork',
                BoneID = 57005,
                Offset = vector3(0.14, 0.02, 0.01),
                Rot = vector3(-118.0, 192.0, 24.0),
            }]]
        },
        Anim = {
            Hold = nil,
            Use = {
                dict = "anim@djs@drink@soda",
                anim = "djs_drink_soda_sip_long",
                params = {nil, nil, 1200, 49}
            }
        },
        Consume = {
            Bite = {min = 15, max = 25}, -- Set how many ml or g are removed from the item after each drink / bite into food
            Status = 50000, -- set how much food or drink you want to add 
            Stress = nil, -- How much stress do you want to remove after using the item if you don't want to use the stress system leave nil
            Alcohol = nil -- Set the amount of alcohol the item should add after each drink.
        },
    },

    ["djs_bite_appleicee"] = {-- item name
        Size = 220, -- Item size
        Type = 'DRINK', -- Item type 'DRINK' , 'FOOD' , 'GLASS'
        Prop = { -- Prop spawn data for idle & usage.
            Main = {
                Model = 'djs_bite_appleicee',
                BoneID = 57005,
                Offset = vector3(0.129000, 0.083000, 0.000000),
                Rot = vector3(-61.950249, 0.000000, -16.499983),
            },
            --[[Second = { --https://forum.cfx.re/t/free-animation-eat-with-fork/5068991
                Model = 'alcaprop_fork',
                BoneID = 57005,
                Offset = vector3(0.14, 0.02, 0.01),
                Rot = vector3(-118.0, 192.0, 24.0),
            }]]
        },
        Anim = {
            Hold = nil,
            Use = {
                dict = "anim@djs@drink@soda",
                anim = "djs_drink_soda_sip_long",
                params = {nil, nil, 1200, 49}
            }
        },
        Consume = {
            Bite = {min = 15, max = 25}, -- Set how many ml or g are removed from the item after each drink / bite into food
            Status = 50000, -- set how much food or drink you want to add 
            Stress = nil, -- How much stress do you want to remove after using the item if you don't want to use the stress system leave nil
            Alcohol = nil -- Set the amount of alcohol the item should add after each drink.
        },
    },

    ["djs_bite_cookie"] = {-- item name
        Size = 220, -- Item size
        Type = 'FOOD', -- Item type 'DRINK' , 'FOOD' , 'GLASS'
        Prop = { -- Prop spawn data for idle & usage.
            Main = {
                Model = 'djs_bite_cookie',
                BoneID = 18905,
                Offset = vector3(0.15, 0.05, 0.02),
                Rot = vector3(-32.0, -39.0, 0.0),
            },
            --[[Second = { --https://forum.cfx.re/t/free-animation-eat-with-fork/5068991
                Model = 'alcaprop_fork',
                BoneID = 57005,
                Offset = vector3(0.14, 0.02, 0.01),
                Rot = vector3(-118.0, 192.0, 24.0),
            }]]
        },
        Anim = {
            Hold = nil,
            Use = {
                dict = "mp_player_inteat@burger",
                anim = "mp_player_int_eat_burger",
                params = {nil, nil, 1200, 49}
            }
        },
        Consume = {
            Bite = {min = 15, max = 25}, -- Set how many ml or g are removed from the item after each drink / bite into food
            Status = 50000, -- set how much food or drink you want to add 
            Stress = nil, -- How much stress do you want to remove after using the item if you don't want to use the stress system leave nil
            Alcohol = nil -- Set the amount of alcohol the item should add after each drink.
        },
    },
```

{% endcode %}
{% endtab %}

{% tab title="Jims Consumables" %}
{% code expandable="true" %}

```
Soon!
```

{% endcode %}
{% endtab %}

{% tab title="Zykes Consumables" %}

* Copy the item config **(non-consumable)** and put it into your inventory item list like normal.
* Copy the item config **(consuamble)**, go in-game, run `/consum:import` and paste the item list into that text area, and import. **Make sure** to restart your server with your items in your inventory before importing via our system.
* If the format is valid, you can now run `/consum:activate_batch` to activate your latest batch, if you don't want to manually check all items & activate them in our `/consum:ic` menu.
* All items that are valid have now been successfully inserted and activated.

{% hint style="info" %}
zyke\_lib v2.5.1 and zyke\_consumables v1.1.12 are required
{% endhint %}
{% endtab %}
{% endtabs %}

***

## **Inventory Icons**

Make sure to add these icons to your preferred inventory’s image folder for them to display correctly.

{% stepper %}
{% step %}

### Ox Inventory

`ox_inventory/web/images`
{% endstep %}

{% step %}

### QS Inventory

`qs-inventory/html/images`
{% endstep %}
{% endstepper %}

***

{% file src="/files/N7d6cVeJPKNe7syTlqPO" %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.djscollections.com/lore-food-pack/bites/installation.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
