mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-31 18:28:52 +00:00
547c8a3365
* modified processing weed now you can process all the weed by pressing E * cleaned code
26 lines
849 B
Lua
26 lines
849 B
Lua
Config = {}
|
|
|
|
Config.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 = _U('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 = _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},
|
|
|
|
DrugDealer = {coords = vector3(-1172.02, -1571.98, 4.66), name = _U('blip_drugdealer'), color = 6, sprite = 378},
|
|
} |