> For the complete documentation index, see [llms.txt](https://docs.0resmon.org/0resmon/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.0resmon.org/0resmon/0resmon-1/0r-resources/0r-farming-v2/faq.md).

# 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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.0resmon.org/0resmon/0resmon-1/0r-resources/0r-farming-v2/faq.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
