-
Notifications
You must be signed in to change notification settings - Fork 22
/
config.lua
40 lines (30 loc) · 1.14 KB
/
config.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
Config = {}
Config.Locale = GetConvar('esx:locale', 'en')
Config.Delays = {
WeedProcessing = 1000 * 7
}
Config.DrugDealerItems = {
marijuana = 91
}
Config.LicenseEnable = false -- enable processing licenses? The player will be required to buy a license in order to process drugs. Requires esx_license
Config.LicensePrices = {
weed_processing = {label = TranslateCap('license_weed'), price = 15000}
}
Config.GiveBlack = true -- give black money? if disabled it'll give regular cash.
Config.CircleZones = {
WeedField = {coords = vector3(2220.72, 5582.52, 53.81), name = TranslateCap('blip_weedfield'), color = 25, sprite = 496, radius = 100.0},
WeedProcessing = {coords = vector3(2329.02, 2571.29, 46.68), name = TranslateCap('blip_weedprocessing'), color = 25, sprite = 496},
DrugDealer = {coords = vector3(-1172.02, -1571.98, 4.66), name = TranslateCap('blip_drugdealer'), color = 6, sprite = 378},
}
Config.Marker = {
Distance = 100.0,
Color = {r=60,g=230,b=60,a=255},
Size = vector3(1.5,1.5,1.0),
Type = 1,
}
-- min amount of Config.DrugDealerItems to sell
-- max amount of Config.DrugDealerItems to sell
Config.SellMenu = {
Min = 1,
Max = 50
}