forked from Pgmbru/fxserver-esx_drugs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.lua
26 lines (18 loc) · 880 Bytes
/
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
Config = {}
Config.Locale = 'en'
Config.Delays = {
WeedProcessing = 1000 * 10
}
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 = _U('license_weed'), price = 15000}
}
Config.GiveBlack = true -- give black money? if disabled it'll give regular cash.
Config.CircleZones = {
WeedField = {coords = vector3(310.91, 4290.87, 45.15), name = _U('blip_weedfield'), color = 25, sprite = 496, radius = 100.0},
WeedProcessing = {coords = vector3(2329.02, 2571.29, 46.68), name = _U('blip_weedprocessing'), color = 25, sprite = 496, radius = 100.0},
DrugDealer = {coords = vector3(-1172.02, -1571.98, 4.66), name = _U('blip_drugdealer'), color = 6, sprite = 378, radius = 25.0},
}