# FAQ and Troubleshooting

## Where Do I Change Script Settings?

Use:

```lua
0r-drugbusiness/config.lua
```

Extra world data is also stored here:

* `data/raw_material_locations.lua`
* `data/sale_mission_locations.lua`
* `data/theme_interiors.lua`
* `data/warehouses.lua`

## Do I Need To Import SQL Manually?

Yes. Import:

```lua
0r-drugbusiness/database.sql
```

## Which Items Do I Need?

At minimum, check these:

* `lockpick`
* `packaged_weed`
* `packaged_cocaine`
* `packaged_meth`

If you changed money to item mode, also add those money items.

## I Changed Item Names But The Script Does Not Work

Check both sides:

* The item names in `Config.PackagedProduct`
* The same item names in your inventory

They must match exactly.

## Police Alerts Do Not Work

The default client helper leaves a custom alert section for your own dispatch. Edit:

```lua
modules/utils/client.lua
```

## Weather Or HUD Integration Does Not Match My Server

Edit:

* `modules/weather/client.lua`
* `modules/utils/client.lua`

These files are intentionally left open for custom integrations.

## The Script Starts But Interactions Do Not Work

Check these first:

* `ox_lib` is started
* Your target resource is supported or integrated correctly
* SQL tables exist
* Required items exist
* Your framework was detected correctly

## Where Do I Change Warehouse Or Mission Locations?

Use the files in the `data/` folder, not only `config.lua`.

## I Changed Config But Nothing Happened

Check these points:

* You edited the correct file
* You restarted the resource
* Your custom integration edit did not break a return value
* You did not change protected internal keys such as business type `key` values


---

# 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/0r-resources/0r-drug-business/faq.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.
