Advertisement
Guest User

Parking Enforcer ESX 1.0.0 Default Config

a guest
Feb 27th, 2022
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 6.44 KB | None | 0 0
  1. Config                                          = {}
  2. Config.debug                                    = false
  3. Config.Locale                                   = 'en'
  4.  
  5. -- Database column names
  6. Config.job_database_name                        = "parkingenforcer" -- job table
  7. Config.unemployed_database_name                 = "unemployed" -- only needed if not using "off_duty_job_is_required"
  8.  
  9. -- Make sure to add the job at the job center
  10. Config.off_duty_job_is_required                 = true -- Requires off duty role for you to go on duty (recommended true)
  11. Config.job_is_required                          = true -- Needs to have on duty job active (recommended true)
  12.  
  13. Config.toggle_menu_keybind                      = {"ALT", "M"} -- keybinds to toggle the PDA ui
  14. Config.interact_keybind                         = "E" -- Keybind to place ticket, retrieve vehicle and return vehicle
  15.  
  16. Config.plate_is_stolen_chance                   = 40 -- chance of the plate being stolen/ vehicle information being outdated
  17. Config.no_or_expired_ticket_chance              = 60 -- chance of the ticket being expired
  18.  
  19. Config.streak_multiplier_increment              = 0.2 -- multiplier per streak
  20. Config.max_streak_multiplier                    = 5 -- streak mulitplier
  21.  
  22. Config.payout_account                           = "money"  --account where the money gets paid out to
  23.  
  24. Config.use_color_category_instead               = false -- true: easy (red, green, blue, black)  false: hard (dormite, midnight purple, jade)
  25.  
  26. --reward for each succesfully completed ticket
  27. Config.ticket_reward                            = 100
  28. Config.same_model_different_color_category      = 200
  29. Config.same_brand_same_color_reward             = 350
  30. Config.same_brand_different_color_reward        = 150
  31. Config.different_brand_same_color_reward        = 250
  32. Config.different_brand_different_color_reward   = 100
  33.  
  34. Config.same_model_chance                        = 60 -- %
  35. Config.same_color_chance                        = 40 -- %
  36.  
  37.  
  38. Config.use_job_start_location                   = true -- set true if Config.job_is_required = true
  39. Config.job_start_marker_location                = {x=849.9, y=-1283.5, z=28.0}
  40. Config.job_start_blip_settings                  = {icon=619, size=1.2, color=29}
  41.  
  42. -- allow players to spawn in work vehicles
  43. Config.use_job_vehicle                          = true -- Use the job vehicle at the parking enforcement agency
  44. Config.garage_marker_location                   = {x=858.9, y=-1284.9, z=26.5}
  45. Config.garage_blip_settings                     = {icon=649, size=0.9, color=29}
  46. Config.job_vehicle                              = "caddy"
  47. Config.job_vehicle_spawn_location               = {x=855.5, y=-1281.6, z=26.9, h=0.0}
  48. Config.job_vehicle_cooldown                     = 300 -- in seconds
  49. Config.job_vehicle_return_location              = {x=838.6, y=-1258.2, z=26.5}
  50. Config.job_vehicle_return_blip_settings         = {icon=652, size=0.9, color=29}
  51.  
  52. Config.vehicle_deposit_amount                   = 1000 -- money taken out for the renting of the job vehicle
  53. Config.deposit_account                          = "account" -- account that the money gets taken out of
  54.  
  55. Config.working_area_cycle_time                  = 10 -- time between switching of work areas (in minutes)
  56. Config.working_area_settings                    = {icon=267, size=1.0, color=29} -- icon settings
  57. Config.working_areas = {                        -- coordinates for the working areas
  58.     {
  59.         label="Airfield",
  60.         areas = {
  61.             {
  62.                 x=-978.04,
  63.                 y=-2335.99,
  64.                 z=26.0,
  65.                 s=450.0
  66.             },
  67.         }
  68.            
  69.     },
  70.     {
  71.         label="Vespucci Beach",
  72.         areas = {
  73.             {
  74.                 x=-1642.8,
  75.                 y=-864.7,
  76.                 z=10.1,
  77.                 s=100.0
  78.             },
  79.             {
  80.                 x=-1734.7,
  81.                 y=-1105.2,
  82.                 z=10.0,
  83.                 s=200.0
  84.             },
  85.             {
  86.                 x=-1329.35,
  87.                 y=-1047.54,
  88.                 z=10.0,
  89.                 s=300.0
  90.             },
  91.             {
  92.                 x=-1138.33,
  93.                 y=-1576.8,
  94.                 z=10.0,
  95.                 s=300.0
  96.             }
  97.  
  98.         },
  99.     },
  100.     {
  101.         label= "Hosptial & Industry",
  102.         areas = {
  103.             {
  104.                 x=855.2,
  105.                 y=-2246.4,
  106.                 z=10.0,
  107.                 s=250.0,
  108.             },
  109.             {
  110.                 x=1174.7,
  111.                 y=-1517.8,
  112.                 z=10.0,
  113.                 s=85.0,
  114.             },
  115.             {
  116.                 x=905.4,
  117.                 y=-1742.9,
  118.                 z=10.0,
  119.                 s=250.0,
  120.             }
  121.         }
  122.     },
  123.     {
  124.         label = "Casino & Suburbs",
  125.         areas = {
  126.             {
  127.                 x=1109.7,
  128.                 y=-589.7,
  129.                 z=10.0,
  130.                 s=300.0
  131.             },
  132.             {
  133.                 x=903.2,
  134.                 y=-127.7,
  135.                 z=10.0,
  136.                 s=200.0
  137.             }
  138.         }
  139.     },
  140.     {
  141.         label="Southern Suburbs",
  142.         areas= {
  143.             {
  144.                 x=-130.5,
  145.                 y=-1724.8,
  146.                 z=10.0,
  147.                 s=100.0
  148.             },
  149.             {
  150.                 x=-165.3,
  151.                 y=-1380.2,
  152.                 z=10.0,
  153.                 s=250.0,
  154.             },
  155.             {
  156.                 x=312.6,
  157.                 y=-1763.3,
  158.                 z=10.0,
  159.                 s=350.0
  160.             }
  161.         }
  162.     },
  163.     {
  164.         label="Downtown",
  165.         areas={
  166.             {
  167.                 x=-638.96,
  168.                 y=-851.12,
  169.                 z=10.0,
  170.                 s=300.0,
  171.             },
  172.             {
  173.                 x=88.02,
  174.                 y=-815.18,
  175.                 z=10.0,
  176.                 s=450.0
  177.             }
  178.         }
  179.     },
  180.     {
  181.         label="Northside",
  182.         areas={
  183.             {
  184.                 x=-558.90,
  185.                 y=-123.14,
  186.                 z=10.0,
  187.                 s=330.0,
  188.             },
  189.             {
  190.                 x=189.26,
  191.                 y=-123.14,
  192.                 z=10.0,
  193.                 s=430.0
  194.             }
  195.         }
  196.     },
  197.     {
  198.         label="Arena",
  199.         areas={
  200.             {
  201.                 x=-212.3,
  202.                 y=-2027.46,
  203.                 z=10.0,
  204.                 s=250.0
  205.             }
  206.         }
  207.     }
  208. }
  209.  
  210.  
  211.  
  212.  
  213.  
  214.  
  215.  
  216.  
  217.  
  218.  
  219.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement