Advertisement
marcinhuUu

m-PondCoffee

Aug 25th, 2022
660
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.58 KB | None | 0 0
  1.  
  2. Config = {}
  3.  
  4. --------------------------
  5. -- Utility
  6. --------------------------
  7. Config.CoreName = "qb-core" -- Core name
  8. Config.Job = "pondcoffee" -- Job
  9. Config.Target = "qb-target" -- Name of your resource qb-target
  10. Config.Input = "qb-input" -- Name of your resource qb-input
  11. Config.RefreshPhone = "qb-phone:RefreshPhone"
  12. Config.InvLink = "qs-inventory/html/images/"
  13. Config.Bossmenu = "qb-bossmenu:client:OpenMenu"
  14. Config.ToggleDuty = "QBCore:ToggleDuty"
  15.  
  16. --------------------------
  17. -- Blip
  18. --------------------------
  19. Config.Blip = {
  20. Enable = true,
  21. Location = vector3(1117.98, -644.55, 56.82),
  22. Sprite = 266,
  23. Display = 2,
  24. Scale = 0.8,
  25. Colour = 44,
  26. Name = "Pond Cafe",
  27. }
  28.  
  29. --------------------------
  30. -- Stash
  31. --------------------------
  32. Config.Stash = {
  33. StashInvTrigger = "inventory:client:SetCurrentStash",
  34. OpenInvTrigger = "inventory:server:OpenInventory",
  35. NameOfStash = "Pond_Cafe_Storage",
  36. MaxWeighStash = 50000,
  37. MaxSlotsStash = 50,
  38. }
  39.  
  40. --------------------------
  41. -- Billing
  42. --------------------------
  43. Config.Billing = {
  44. EnableCommand = true,
  45. Command = "billingpond",
  46. }
  47. ---------------
  48. -- CraftCupcakes
  49. ---------------
  50. Config.CraftCupcakes = {
  51. ["m_cupcake_love"] = {
  52. hash = "m_cupcake_love",
  53. label = "Cupcake Love",
  54. materials = {
  55. [1] = { item = "m_chocolate", amount = 2 },
  56. [2] = { item = "m_sugar", amount = 1 },
  57. [3] = { item = "m_strawberry", amount = 1 },
  58. }
  59. },
  60. ["m_cupcake_magic"] = {
  61. hash = "m_cupcake_magic",
  62. label = "Cupcake Magic",
  63. materials = {
  64. [1] = { item = "m_chocolate", amount = 2 },
  65. [2] = { item = "m_sugar", amount = 1 },
  66. [3] = { item = "m_caramel", amount = 2 },
  67. }
  68. },
  69. ["m_cupcake_magic_strong"] = {
  70. hash = "m_cupcake_magic_strong",
  71. label = "Cupcake Magic Strong",
  72. materials = {
  73. [1] = { item = "m_chocolate", amount = 2 },
  74. [2] = { item = "m_sugar", amount = 1 },
  75. [3] = { item = "m_caramel", amount = 2 },
  76. }
  77. },
  78. ["m_cupcake_princess"] = {
  79. hash = "m_cupcake_princess",
  80. label = "Cupcake Princess",
  81. materials = {
  82. [1] = { item = "m_chocolate", amount = 2 },
  83. [2] = { item = "m_sugar", amount = 1 },
  84. [3] = { item = "m_caramel", amount = 2 },
  85. [4] = { item = "m_strawberry", amount = 1 },
  86. }
  87. },
  88. ["m_cupcake_star"] = {
  89. hash = "m_cupcake_star",
  90. label = "Cupcake Star",
  91. materials = {
  92. [1] = { item = "m_chocolate", amount = 2 },
  93. [2] = { item = "m_sugar", amount = 1 },
  94. }
  95. },
  96. ["m_cupcake_strong"] = {
  97. hash = "m_cupcake_strong",
  98. label = "Cupcake Strong",
  99. materials = {
  100. [1] = { item = "m_chocolate", amount = 2 },
  101. [2] = { item = "m_sugar", amount = 1 },
  102. }
  103. },
  104. }
  105.  
  106.  
  107. ---------------
  108. -- PEDS
  109. ---------------
  110. Config.PedList = {
  111. { model = `s_m_y_baywatch_01`, coords = vector4(1104.28, -644.95, 55.82, 257.99), gender = "male", scenario = "WORLD_HUMAN_CLIPBOARD" },
  112. }
  113.  
  114. ---------------
  115. -- Rent a Jetski
  116. ---------------
  117. Config.Rent = {
  118. Model = "seashark", -- Model of vehicle
  119. Plate = "Pond", -- Plate
  120. Location = vector3(1102.4, -648.91, 54.7), -- Location to spawn the vehicle
  121. Keys = "vehiclekeys:client:SetOwner", -- Your trigger to give keys to player
  122. Fuel = "LegacyFuel", -- Your trigger fuel
  123. }
  124.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement