Advertisement
marcinhuUu

m-FoodVan

Jun 2nd, 2022
1,429
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 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. InventoryTrigger = "inventory:client:ItemBox",
  10. Target = "qb-target",
  11. }
  12.  
  13. Config.AvailableFood = {
  14. [1] = {
  15. item = "tosti",
  16. price = 2,
  17. type = "cash",
  18. },
  19. [2] = {
  20. item = "mangueira",
  21. price = 3,
  22. type = "sandwich",
  23. },
  24. -- You can add more
  25. }
  26.  
  27. Config.AvailableDrinks = {
  28. [1] = {
  29. item = "coffee",
  30. price = 3,
  31. type = "cash",
  32. },
  33. [2] = {
  34. item = "kurkakola",
  35. price = 5,
  36. type = "cash",
  37. },
  38. [3] = {
  39. item = "water_bottle",
  40. price = 2,
  41. type = "cash",
  42. },
  43. -- You can add more
  44. }
  45.  
  46.  
  47.  
  48.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement