# FAQ and Troubleshooting

{% hint style="info" %}
Some special cases, advanced edits, and known questions are already answered on the `Configuration and Job Settings` page. If your question is about disabling a job, cooldown-like flow limits, required items, market items, police alert chance, or team size, check that page first.
{% endhint %}

## The Menu Does Not Open

Check these first:

* Does `0r_lib` start correctly?
* Does `0r-illegalpack` start correctly?
* Is your chosen menu access method enabled in `Config.IllegalMenu`?
* If you use item access, did you add `illegal_tablet`?
* If you use `allowedJobs`, is the player allowed to open the menu?

## Where Do I Change Job Settings?

* Global settings: `config.lua`
* Per-job settings: `escrow/jobs/<job_name>/config.lua`
* Market settings: `escrow/market/config.lua`

## Do I Need To Run SQL Manually?

No. The profile table is created automatically by the resource.

## Item Images Do Not Show

Check these points:

* Did you copy the images into your inventory image folder?
* Is `Config.InventoryImagesFolder` correct?
* Do the image names match the item names?

## `weapon_digiscanner` Does Not Work Or Cannot Be Added

If you use OX Inventory, do not add `weapon_digiscanner` only to `items.lua`.

Add it to:

```lua
ox_inventory/data/weapons.lua
```

This matters because the script uses it as a weapon entry, not as a normal item.

Also be careful where you paste it inside `weapons.lua`.

The file already contains both the main weapon table and an ammo table.

If you paste `weapon_digiscanner` blindly at the very bottom of the file, you can place it in the wrong section.

Make sure you add it inside the main weapons table, not inside the ammo table.

## I Changed A Job But Nothing Happened

Check these points:

* You edited the correct job folder
* You restarted the resource
* The real requirement is not hidden inside `game.*.requiredItems`
* The real value is not in `escrow/market/config.lua` instead of the job file
