# FAQ and Troubleshooting

## Do I Need To Import SQL Manually?

Yes. Import:

```lua
0r-paintball-v2/database.sql
```

## The Menu Does Not Open

Check these first:

* The resource started correctly
* `Config.Commands.OpenMenu.active` is enabled
* The command name matches your config
* `Config.PaintballLobby.active` is not blocking how you are testing

## The Paintball Weapon Does Not Work

Check:

* `0r-paintball-gun` is started
* `Config.Game.weapon` matches an existing weapon

## Paintball Maps Are Missing

Check:

* The included map resources are started
* The map still exists in `Config.Game.maps`
* The preview image exists in `ui/build/images/maps`

## Are Inventory Items Required?

No normal inventory item is required by default.

## How Do I Know If A Player Is Already In Paintball?

Use the export:

```lua
exports['0r-paintball-v2']:inGame()
```

## I Changed Config But Nothing Happened

Check these points:

* You edited `config.lua`
* You restarted the resource
* Your custom bridge or integration edits did not break the flow


---

# 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-paintball-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.
