# 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
