# 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
