# Starer Items

{% hint style="info" %}
For this you need to go to the Config\_Sv.lua file. Then, if you are using ESX, you should use the place specified below.
{% endhint %}

***

## ESX Starter items settings

```lua
ConfigSV.StarterItems = Config.Framework.Framework == "esx" and {
    -- This is the place where the startup items specified for the ESX Framework will be written.
    {item = "itemname",amount = 1},
    {item = "itemname",amount = 1},
    {item = "itemname",amount = 1},
} or wFramework.Shared.StarterItems ~= nil and wFramework.Shared.StarterItems or {}
```

***

## QBCore Starter items settings

For the QBCore framework, if it is a new framework, usually the startup items are located in the <mark style="background-color:orange;">qb-core/shared/main.lua</mark> file. This script automatically pulls them from there. But if you are using old QBCOre, you can make changes in the following place

```lua
ConfigSV.StarterItems = Config.Framework.Framework == "esx" and {
    -- This is the place where the startup items specified for the ESX Framework will be written.
} or wFramework.Shared.StarterItems ~= nil and wFramework.Shared.StarterItems or {
    -- This is the place where the startup items specified for the QBCore Framework will be written.
    
    {item = "water", amount = 1},
    {item = "bread", amount = 1},
}
```


---

# 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.0resmon.org/0resmon/wais-resoucres/wais-multicharacterv2/starer-items.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.
