# FAQ

## O anticheat está deletando objetos/peds legítimos

Use os comandos de debug para investigar:

```
debug.object
debug.ped
```

Esses comandos mostram no console exatamente o que está sendo deletado. Com essa informação, você pode adicionar os itens legítimos à whitelist.

***

## Um script parou de funcionar após instalar o EQPG-Pro

Verifique se o script utiliza:

| Funcionalidade         | Solução                                    |
| ---------------------- | ------------------------------------------ |
| Spawn de armas         | Use o export `giveWeapons` ou `EQPGWeapon` |
| Spawn de veículos      | Use o export `setSpawnClient`              |
| Noclip / Teleport      | Use o export `BypassProtect`               |
| Attach entre jogadores | Desative `AttachmentSanitization`          |
| Mudança de dimensão    | Use `SetCurrentPedWeapon` para desarmar    |

Consulte o guia completo em [Dicas de Integração](/eqpg-docs/guias-de-integracao/dicas-integracao.md).

***

## Como atualizar as proteções sem reiniciar o servidor?

Execute no console:

```
update.config.eqpg
```

***

## Como ver quais proteções estão ativas?

Execute no console:

```
config.eqpg
```

***

## Como banir um jogador pelo console?

```
ac ban [AC-ID/TOKEN]
```

Para mais detalhes, consulte [Comandos de Banimento](/eqpg-docs/comandos/comandos-banimento.md).

***

## Como remover todos os bans de uma vez?

```
ac remallbans
```

{% hint style="danger" %}
Este comando remove **todos** os banimentos. Use com extrema cautela.
{% endhint %}


---

# 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://eqpg-network.gitbook.io/eqpg-docs/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.
