Advertisement
Guest User

Detective Tools Default Config 1.0.0

a guest
Jun 6th, 2022
1,772
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.70 KB | None | 0 0
  1. Config = {}
  2.  
  3. Config.debug = false
  4.  
  5.  
  6. --- SETTINGS FOR ESX
  7. Config.esxSettings = {
  8.     enabled = true,
  9. }
  10.  
  11. --- SETTINGS FOR QBCORE
  12. Config.qbSettings = {
  13.     enabled = false,
  14.     useNewQBExport = true, -- Make sure to uncomment the old export inside fxmanifest.lua if you're still using it
  15. }
  16.  
  17.  
  18. Config.whitelist = {
  19.     enabled = true,
  20.     jobs = {
  21.         'police',
  22.         'ambulance',
  23.     }
  24. }
  25.  
  26. Config.target = {
  27.     enabled = false,
  28.     system = 'qtarget' -- 'qtarget' or 'qb-target'  (Other systems might work as well)
  29. }
  30.  
  31. Config.keybinds = {
  32.     investigate = 'E'
  33. }
  34.  
  35. Config.animation = {
  36.     enabled = true,
  37.     dict = 'amb@medic@standing@tendtodead@idle_a',
  38.     anim = 'idle_a',
  39. }
  40.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement