Config File
```lua
DRZ = {}
DRZ.Debug = false
DRZ.Dispatch = 'cd_dispatch' -- cd_dispatch or custom you can edit it in cl_edit.lua
DRZ.NotifyType = 'okok' -- okok or ox
DRZ.LockpickItem = 'lockpick'
DRZ.Locale = 'en' -- 'cs', 'en', 'de'
DRZ.Houses = {
{
coords = vec4(1250.7997, -515.4701, 69.3491, 256.5180),
interior = vec4(346.5284, -1013.2385, -99.1961, 356.1870),
lootSpots = {
{
titleKey = 'search_closet',
progressKey = 'searching_closet',
loc = vec3(345.8040, -995.6582, -97.5277 - 1),
},
{
titleKey = 'search_bed',
progressKey = 'searching_bed',
loc = vec3(337.4474, -996.6758, -98.6213 - 1),
},
{
titleKey = 'search_table',
progressKey = 'searching_table',
loc = vec3(339.4109, -1003.7764, -98.3517 - 1),
},
{
titleKey = 'search_dresser',
progressKey = 'searching_dresser',
loc = vec3(344.7047, -1001.7670, -97.8116 - 1),
},
{
titleKey = 'search_shelf',
progressKey = 'searching_shelf',
loc = vec3(351.5230, -999.9839, -99.2594),
},
{
titleKey = 'search_bathroom',
progressKey = 'searching_bathroom',
loc = vec3(348.6599, -994.8550, -100.2209),
},
}
},
}
DRZ.LootRewards = {
{
type = 'item',
item = 'money',
min = 100,
max = 5000,
chance = 50,
label = 'Peníze',
},
{
type = 'item',
item = 'pesos',
min = 10,
max = 100,
chance = 45,
label = 'Pesos',
},
{
type = 'item',
item = 'scratch_ticket',
min = 1,
max = 5,
chance = 5,
label = 'Stírací losy'
},
}
```Last updated