> For the complete documentation index, see [llms.txt](https://fox-store-1.gitbook.io/oz-store/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://fox-store-1.gitbook.io/oz-store/oz_shoproberry/installation.md).

# INSTALLATION

1. Unzip file
2. In resources/oz\_shoproberry insert
3. In server.cfg:

* ensure oz\_shoproberry
* Adjust `config.lua` – done!

```
Config = {}

-- Locales | DE oder EN | "de_esx", "de_oz", "en_esx", "en_oz"
Config.Locale = "de_esx"

-- Notify & Help Notify
Config.Notify = "esx" -- OZ Notify = "oz_notify" | ESX Notify = "esx"
Config.HelpNotify = "esx" -- OZ Help Notify = "oz_helpnotify" | ESX.ShowHelpNotification = "esx"

-- Cops
Config.MinCops = 2

-- Cooldown in Sekunden
Config.Cooldown = 600  

-- Dauer des Überfalls
Config.RobberyTime = 30  

-- Maximal erlaubte Distanz zum Shop während des Raubs
Config.MaxDistance = 10.0

-- Belohnung (random min/max)
Config.Reward = {min = 500, max = 1500}

-- Erlaubte Waffen
Config.AllowedWeapons = {
    "WEAPON_PISTOL",
    "WEAPON_COMBATPISTOL",
    "WEAPON_PISTOL50"
}

-- Shop Locations
Config.Shops = {
    {coords = vector3(24.47, -1346.47, 29.5), name = "24/7 Supermarkt"},
    {coords = vector3(-3038.71, 584.38, 7.91), name = "24/7 Supermarkt"},
    {coords = vector3(1135.81, -982.28, 46.42), name = "24/7 Supermarkt"}
}

Config.Blip = {
    sprite = 59,      -- Icon
    scale = 1.2,       -- Größe
    colour = 1,        -- Farbe (rot)
    text = {
        de = "Ladenüberfall",
        en = "Store Robbery"
    },
    duration = 60      -- Sekunden, bis Blip wieder verschwindet
}

-- Hacking Einstellungen
Config.UseHacking = true   -- true = mhacking verwenden, false = direkt Raub starten
Config.Hacking = {
    blocks = 4,   -- Spalten
    time   = 3    -- Reihen (Zeit)
}
```
