# Wert Jammer

## <mark style="background-color:orange;">INSTALLATION</mark>

1 - Add jammer item your item list

```lua
-- Item
["jammer"] = {["name"] = "jammer",    ["label"] = "Jammer",    ["weight"] = 10000,	["type"] = "item",	["image"] = "jammer.png",	["unique"] = true,	["useable"] = true,	["shouldClose"] = false,	["combinable"] = nil,	   ["description"] = "Jammer"},
```

2 - Make sure all depend scripts exist (Or download it)

* <mark style="background-color:purple;">DEPENDS</mark>
* qb-core (<https://github.com/qbcore-framework/qb-core>)
* PolyZone (<https://github.com/mkafrin/PolyZone>)
* qb-target (<https://github.com/BerkieBb/qb-target>)

3 - Add jammer script to resources file

4 - Restart server and enjoy

***NOTE : You can find the item image inside the folder***

## <mark style="background-color:blue;">ZONE CONTROL</mark>

```lua
RegisterNetEvent("wert-jammer:zone", function(enter)
    if enter then
        -- Enter jammer zone
        -- You can add disable exports here 
    else
        -- Exit jammer zone
        -- You can add enable exports here
    end
end)
```

### *<mark style="background-color:green;">Installation complete</mark>*


---

# 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://wert-dev.gitbook.io/wert-dev-docs/products/qbcore/wert-jammer.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.
