Advertisement
lowheartrate

esx_illegal_drugs/config.lua

Apr 30th, 2019
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.10 KB | None | 0 0
  1. Config              = {}
  2. Config.MarkerType   = 25 -- 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 = 10.0, y = 10.0, z = 5.0} -- Size of the marker
  5. Config.MarkerColor  = {r = 207, g = 73, b = 73} --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=1101.837,  y=-3193.732,  z=-38.993},
  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=1014.878,  y=-3194.871,  z=-38.993},
  36.     MethDealer =        {x=7.981,     y=6469.067,   z=31.528},
  37.     WeedField =         {x=1057.448,  y=-3197.646,  z=-40.138},
  38.     WeedProcessing =    {x=2329.02,   y=2571.29,    z=45.785},
  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=2434.43,   y=4964.18,    z=42.348},
  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=47.842,     y=3701.961,   z=40.722},
  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=1101.837,   y=-3193.732,  z=-38.993},
  51.   {name="Coke Sales",            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=1014.878,   y=-3194.871,  z=-38.993},
  55.   {name="Meth Sales",            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=2434.43,    y=4964.18,    z=42.348},
  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=45.785},
  63.   {name="Weed Sales",            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