Guest User

m-Backpacks

a guest
May 13th, 2022
2,329
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. Config = {}
  2.  
  3. --------------------------
  4. -- Utility
  5. --------------------------
  6. Config.Utility = {
  7. Framework = "NEW", -- "NEW" - New QBCore | "OLD" - Old QBCore
  8. CoreName = "qb-core", -- Your core name
  9. OpenInventory = "inventory:server:OpenInventory",
  10. SetStash = "inventory:client:SetCurrentStash",
  11. NeedJob = false, -- Need job for opening the bag?
  12. JobName = "mechanic", -- Job
  13. NeedGang = false, -- Need gang for opening the bag?
  14. GangName = "ballas", -- Gang
  15. StashNames = {
  16. Small = "Small_Backpack", -- Name of stash
  17. Medium = "Medium_Backpack", -- Name of stash
  18. Large = "Large_Backpack" -- Name of stash
  19. },
  20. Weight = {
  21. Small = 500, -- Weight of small backpack
  22. Medium = 1000, -- Weight of medium backpack
  23. Large = 1500, -- Weight of large backpack
  24. },
  25. Slots = {
  26. Small = 25, -- Slots of small backpack
  27. Medium = 35, -- Slots of medium backpack
  28. Large = 45, -- Slots of large backpack
  29. },
  30. }
  31.  
  32. Language = {
  33. NoJob = "You don't have the necessary work.",
  34. NoGang = "You don't have the necessary gang.",
  35. }
  36.  
  37. function Notify(msg)
  38. QBCore.Functions.Notify(msg)
  39. end
Add Comment
Please, Sign In to add comment