Advertisement
orangelist

Untitled

Nov 30th, 2023 (edited)
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 KB | None | 0 0
  1. Config = {}
  2.  
  3. Config.Zones = {}
  4.  
  5. Config.EventPrefix = 'QBCore' -- Core event prefix
  6. Config.QBCoreFolderName = 'qb-core' -- Core folder name
  7.  
  8. Config.TargetFolderName = 'qb-target' -- name of the target folder
  9.  
  10. Config.entranceWithMenu = true -- when player enter a shop it will open a menu otherwise it will instantly teleport to the shop
  11.  
  12. Config.InventoryFolderName = 'qb-inventory'
  13. Config.UseItemBox = 'inventory:client:ItemBox' -- If using the event, change it as you want it, to disable set false
  14.  
  15. Config.useDecoration = false -- it uses a version of ps-housing and can be downloaded via github
  16. Config.scriptName = 'ps-housing-edited'
  17.  
  18. Config.ShopMaxWeight = 500
  19. Config.ShopMaxSlots = 50
  20.  
  21. Config.ShopShell = {
  22. ['shell_store1'] = {
  23. name = "Shop 1",
  24. entrance = vector4(0.575546, -4.560852, -1.609543, 0.0),
  25. exit = vector4(-2.662781, -4.635864, -1.609627, 0)
  26. },
  27. ['shell_store2'] = {
  28. name = "Shop 2",
  29. entrance = vector4(2.367691, -4.949097, -2.143417, 44.0),
  30. exit = vector4(-0.782883, -5.170990, -2.143425, 0.0)
  31. },
  32. ['shell_store3'] = {
  33. name = "Shop 3",
  34. entrance = vector4(-2.61, -4.73, 1.08, -1.0),
  35. exit = vector4(-0.109802, -7.839828, -1.291122, 0.0)
  36. }
  37. }
  38.  
  39. Config.Blips = {
  40. active = true, -- enable blips set to false disable the option of editing/seeing shops blip on the map
  41. blipId = {
  42. {value = 40, label = 'Store 1'},
  43. {value = 52, label = 'Store 2'},
  44. },
  45. -- blipId = 40, -- set blip id can be found here (https://docs.fivem.net/docs/game-references/blips/) uncomment it and comment the other blipId will not allow them to choose blip
  46. blipColor = { -- Blip color you can add more if you work the same as they are right now, color found here (https://docs.fivem.net/docs/game-references/blips/ scroll down)
  47. {value = 2, label = 'Green'},
  48. {value = 3, label = 'Blue'},
  49. {value = 5, label = 'Yellow'},
  50. {value = 37, label = 'White'},
  51. {value = 47, label = 'Orange'},
  52. {value = 75, label = 'Red'},
  53. {value = 83, label = 'Purple'},
  54. },
  55. -- blipColor = 5, -- you can disable their option to choose color and just set the color you want them to be, just comment the other blipColor
  56. blipSize = 0.5,
  57. }
  58.  
  59. Config.npcs = {
  60. { value = 'a_m_m_afriamer_01', label = 'ped 1'},
  61. { value = 'a_m_m_beach_01', label = 'ped 2'},
  62. { value = 'a_m_m_beach_02', label = 'ped 3'},
  63. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement