# FAQ and Troubleshooting

## Do I Need To Import SQL Manually?

Yes. Import:

```lua
0r-deathmatch/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.DeathMatchMenuZone.active` is not confusing your test flow

## No Required Items Are Given In The Docs. Is That Correct?

Yes. Deathmatch does not require a normal inventory item by default.

## Revive Does Not Work Correctly

Check:

* Your framework is detected correctly
* `modules/ambulance/client.lua` matches your revive script

## Where Do I Change Match Weapons?

Use:

```lua
Config.Game.weapons
```

## Where Do I Change Arena Locations?

Use:

```lua
Config.Game.maps
```

Each map needs valid red and blue team spawns.

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

Use the export:

```lua
exports['0r-deathmatch']: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-deathmatch/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.
