Advertisement
lowheartrate

esx_illegal_drugs/config.lua

May 2nd, 2019
377
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.09 KB | None | 0 0
  1. Config              = {}
  2. Config.MarkerType   = -1 -- Marker visible or not. -1 = hiden  Set to 1 for a visible marker. To have a list of avaible marker go to https://docs.fivem.net/game-references/markers/
  3. Config.DrawDistance = 100.0 --Distance where the marker be visible from
  4. Config.ZoneSize     = {x = 5.0, y = 5.0, z = 3.0} -- Size of the marker
  5. Config.MarkerColor  = {r = 0, g = 255, b = 0} --Color of the marker
  6.  
  7. Config.RequiredCopsCoke  = 0 --Ammount of cop that need to be online to be able to harvest/process/sell coke
  8. Config.RequiredCopsMeth  = 0 --Ammount of cop that need to be online to be able to harvest/process/sell meth
  9. Config.RequiredCopsWeed  = 0 --Ammount of cop that need to be online to be able to harvest/process/sell weed
  10. Config.RequiredCopsOpium = 0 --Ammount of cop that need to be online to be able to harvest/process/sell opium
  11.  
  12. Config.TimeToFarmWeed     = 2  * 1000 -- Ammount of time to harvest weed
  13. Config.TimeToProcessWeed  = 4  * 1000 -- Ammount of time to process weed
  14. Config.TimeToSellWeed     = 1  * 1000 -- Ammount of time to sell weed
  15.  
  16. Config.TimeToFarmOpium    = 4  * 1000 -- Ammount of time to harvest coke
  17. Config.TimeToProcessOpium = 6  * 1000 -- Ammount of time to process coke
  18. Config.TimeToSellOpium    = 1  * 1000 -- Ammount of time to sell coke
  19.  
  20. Config.TimeToFarmCoke     = 6  * 1000 -- Ammount of time to harvest coke
  21. Config.TimeToProcessCoke  = 8  * 1000 -- Ammount of time to process coke
  22. Config.TimeToSellCoke     = 1  * 1000 -- Ammount of time to sell coke
  23.  
  24. Config.TimeToFarmMeth     = 8  * 1000 -- Ammount of time to harvest meth
  25. Config.TimeToProcessMeth  = 10 * 1000 -- Ammount of time to process meth
  26. Config.TimeToSellMeth     = 1  * 1000 -- Ammount of time to sell meth
  27.  
  28. Config.Locale = 'en'
  29.  
  30. Config.Zones = {
  31.     CokeField =         {x=1093.139,  y=-3195.673,  z=-39.131},
  32.     CokeProcessing =    {x=1486.947,  y=1131.885,   z=114.3367},
  33.     CokeDealer =        {x=959.117,   y=-121.055,   z=74.963},
  34.     MethField =         {x=1005.721,  y=-3200.301,  z=-38.519},
  35.     MethProcessing =    {x=-3427.59,  y=978.576,    z=8.346684},
  36.     MethDealer =        {x=7.981,     y=6469.067,   z=31.528},
  37.     WeedField =         {x=1057.448,  y=-3197.646,  z=-39.138},
  38.     WeedProcessing =    {x=2329.02,   y=2571.29,    z=46.68},
  39.     WeedDealer =        {x=85.58,     y=-1959.34,   z=20.13},
  40.     OpiumField =        {x=2433.804,  y=4969.196,   z=42.348},
  41.     OpiumProcessing =   {x=1741.237,  y=6419.863,   z=35.0443},
  42.     OpiumDealer =       {x=-3155.608, y=1125.368,   z=20.858}
  43. }
  44.  
  45. Config.DisableBlip = false -- Set to true to disable blips. False to enable them.
  46. Config.Map = {
  47.  
  48.   {name="Coke Farm Entrance",       color=4, scale=0.8, id=501, x=-2531.541,  y=2303.003,   z=33.21273},
  49.   {name="Coke Farm",                color=4, scale=0.8, id=501, x=1093.139,   y=-3195.673,  z=-39.131},
  50.   {name="Coke Processing",          color=4, scale=0.8, id=501, x=1486.947,   y=1131.885,   z=114.3367},
  51.   {name="Coke heads",               color=3, scale=0.8, id=501, x=959.117,    y=-121.055,   z=74.963},
  52.   --{name="Meth Farm Entrance",     color=6, scale=0.8, id=499, x=1386.659,   y=3622.805,   z=35.012},
  53.   {name="Meth Farm",                color=6, scale=0.8, id=499, x=1005.721,   y=-3200.301,  z=-38.519},
  54.   {name="Meth Processing",          color=6, scale=0.8, id=499, x=-3427.59,   y=978.576,    z=8.346684},
  55.   {name="Meth heads",               color=3, scale=0.8, id=499, x=7.981,      y=6469.067,   z=31.528},
  56.   --{name="Opium Farm Entrance",    color=6, scale=0.8, id=403, x=2433.804,   y=4969.196,   z=42.348},
  57.   {name="Opium Farm",               color=6, scale=0.8, id=403, x=2433.804,   y=4969.196,   z=42.348},
  58.   {name="Opium Processing",         color=6, scale=0.8, id=403, x=1741.237,   y=6419.863,   z=35.0443},
  59.   {name="Opium Sales",              color=3, scale=0.8, id=403, x=-3155.608,  y=1125.368,   z=20.858},
  60.   --{name="Weed Farm Entrance",     color=2, scale=0.8, id=140, x=1057.448,   y=-3197.646,  z=-39.138},
  61.   {name="Weed Farm",                color=2, scale=0.8, id=140, x=2221.858,   y=5614.81,    z=54.902},
  62.   {name="Weed Processing",          color=2, scale=0.8, id=140, x=2329.02,    y=2571.29,    z=46.68},
  63.   {name="Stoners",                  color=3, scale=0.8, id=140, x=85.58,      y=-1959.34,   z=20.13}
  64.  
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement