# 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


---

# 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-illegalpack/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.
