Advertisement
Guest User

KQ Outfit bag Default config 1.0.0

a guest
Mar 16th, 2022
4,677
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.32 KB | None | 0 0
  1. Config = {}
  2.  
  3. Config.debug = false
  4.  
  5. --------------------------------------------------------
  6. --------------------------------------------------------
  7. --- MAKE SURE THAT THE CORRECT FRAMEWORK IS ENABLED ! --
  8. --------------------------------------------------------
  9. --------------------------------------------------------
  10.  
  11. --- SETTINGS FOR ESX
  12. Config.esxSettings = {
  13.     enabled = true,
  14. }
  15.  
  16. --- SETTINGS FOR QBCORE
  17. Config.qbSettings = {
  18.     enabled = false,
  19.     sqlDriver = 'oxmysql', -- oxmysql or ghmattimysql
  20.     useNewQBExport = true, -- Make sure to uncomment the old export inside fxmanifest.lua if you're still using it
  21. }
  22.  
  23.  
  24. Config.target = {
  25.     enabled = false,
  26.     system = 'qtarget' -- 'qtarget' or 'qb-target'  (Other systems might work as well)
  27. }
  28.  
  29. -- Outfitbag command settings
  30. Config.command = {
  31.     enabled = true,
  32.     command = 'outfitbag',
  33.     shortCommand = 'ob'
  34. }
  35.  
  36. Config.bagItem = 'kq_outfitbag'
  37.  
  38. Config.maxOutfits = 5
  39.  
  40. Config.allowBagSharing = true
  41.  
  42. Config.bagObject = 'prop_big_bag_01'
  43.  
  44.  
  45. Config.bagAnimation = {
  46.     enabled = true,
  47.     dict = 'amb@medic@standing@tendtodead@idle_a',
  48.     anim = 'idle_a',
  49. }
  50.  
  51. Config.outfitChangeAnimation = {
  52.     enabled = true,
  53.     duration = 5000,
  54.     dict = 'mp_safehouseshower@male@',
  55.     anim = 'male_shower_towel_dry_to_get_dressed',
  56. }
  57.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement