# FAQ and Troubleshooting

## Where Do I Change Script Settings?

The main config file is:

```lua
0r-farming-v2/config.lua
```

Other gameplay configs also exist here:

* `core/market/config.lua`
* `core/personal_challenges/config.lua`
* `core/multiplayer_tasks/*/config.lua`

## How Do I Change Localization?

This resource follows the standard locale file structure. Set the active language in `server.cfg`, then edit the matching locale file.

```cfg
set ox:locale "tr"
```

## Where Do I Integrate My Own Inventory or Target Script?

* Inventory: `modules/inventory/server.lua`
* Target: `modules/target/client.lua`
* Notify, progressbar, skillbar, and helper functions: `modules/utils/client.lua`
* Server-side helpers: `modules/utils/server.lua`

## The Menu Does Not Open

Check these first:

* Is `0r-farming-v2` started correctly?
* Is `farming_tablet` added if you use item access?
* Is your selected menu access method enabled in config?
* Are job restrictions blocking access?

## Where Do I Change Market Prices or Farming Item Sales?

Use:

```lua
core/market/config.lua
```

## Where Do I Change Personal Challenges or Task Goals?

Use:

* `core/personal_challenges/config.lua`
* `core/multiplayer_tasks/*/config.lua`

## Do I Need To Run SQL Manually?

No. `database.sql` is executed automatically.

## I Changed Config But Nothing Happened

Check these points:

* You edited the correct config file
* You restarted the resource after changing config
* Your custom integration files are not blocking the flow
* The problem is not coming from a missing dependency or asset resource

## Still Not Fixed?

Check these last:

* Resource names are correct
* Dependencies and assets are installed and updated
* Your framework, inventory, and target integrations match your server setup


---

# 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-farming-v2/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.
