Advertisement
marcinhuUu

m-StoreRobbery

Jul 26th, 2022
648
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.61 KB | None | 0 0
  1. Config = {}
  2.  
  3. --------------------------
  4. -- Utility
  5. --------------------------
  6. Config.Target = "qb-target" -- Your qb-target name
  7.  
  8. Config.QBMenu = "qb-menu" -- Your qb-menu name
  9.  
  10. Config.Core = "qb-core" -- Your core name
  11.  
  12. Config.Phone = "qs-smartphone" -- "qb-phone", "qs-smartphone", "gksphone"
  13.  
  14. Config.Skillbar = "qb-lock" -- "qb-lock" or "qb-skillbar"
  15.  
  16. Config.PoliceNeed = 0 -- Amount of police online to start the mission
  17.  
  18. Config.PoliceJob = "police" -- Your job name police
  19.  
  20. Config.NeedMask = true -- Need mask to heist?
  21.  
  22. Config.TimeRob = 10000 -- Time to rob the register [10000 -> 10s]
  23.  
  24. Config.TimeOpen = 10000 -- Time to open the register [10000 -> 10s]
  25.  
  26. Config.TimeTrade = 10000 -- Time to trade the register [10000 -> 10s]
  27.  
  28. Config.ChanceCops = 50 -- Chance call cops [ 50 -> 50% ]
  29.  
  30. Config.InitialMoney = { min = 1500, max = 3000 } -- Some money they earn before changing the cash register
  31.  
  32. Config.PaymentSafe = "cash" -- "cash" or "markedbills"
  33.  
  34. Config.SafeMoney = { min = 3000, max = 4500 } -- if Config.PaymentSafe = "cash"
  35.  
  36. Config.SafeBlackMoney = { min = 1, max = 5 } -- if Config.PaymentSafe = "markedbills"
  37.  
  38. Config.SafeRareDrop = true -- Enable rare drop on safe?
  39.  
  40. Config.ChanceRareDrop = 50 -- % to get a rare drop on safe
  41.  
  42. Config.CooldownTime = 45 -- 45 Minutes
  43.  
  44. Config.SafeDrops = { -- List of possible items drop on safe
  45. [1] = "lockpick",
  46. [2] = "advancedlockpick",
  47. -- You can add more items here
  48. }
  49.  
  50. ---------------
  51. -- Outfit
  52. ---------------
  53. Config.Outfit = {
  54. Trigger = "qb-clothing:client:loadOutfit", -- Your trigger
  55. Man = 35, -- Number of the mask you want to appear on the player
  56. Woman = 2, -- Number of the mask you want to appear on the player
  57. }
  58.  
  59. ---------------
  60. -- Animations
  61. ---------------
  62. Config.AnimationRob = "amb@prop_human_bum_bin@idle_b"
  63. Config.SubAnimationRob = "idle_d"
  64.  
  65. ---------------
  66. -- Peds
  67. ---------------
  68. Config.Peds = {
  69. Ped = {type = 4, hash= GetHashKey("s_m_y_garbage"), x = 868.92, y = -1056.06, z = 28.44, h = 90.90}, -- Start mission
  70. }
  71.  
  72. ---------------
  73. -- Shop with items, you can add more items if you want
  74. ---------------
  75. Config.Shop = {
  76. [1] = { name = "lockpick", price = 500, amount = 10, info = {}, type = "item", slot = 1 },
  77. [2] = { name = "advancedlockpick", price = 1000, amount = 10, info = {}, type = "item", slot = 2 },
  78. [3] = { name = "mask", price = 250, amount = 200, info = {}, type = "item", slot = 3 },
  79. }
  80.  
  81. ---------------
  82. -- Stores, you can add more items if you want
  83. ---------------
  84. Config.Stores = {
  85. [1] = {
  86. Location = vector3(-47.24, -1757.65, 29.53),
  87. },
  88. [2] = {
  89. Location = vector3(-1486.26, -378.0, 40.16),
  90. },
  91. [3] = {
  92. Location = vector3(-1222.03, -908.32, 12.32),
  93. },
  94. [4] = {
  95. Location = vector3(-706.09, -913.39, 19.22),
  96. },
  97. [5] = {
  98. Location = vector3(24.89, -1345.7, 29.5),
  99. },
  100. [6] = {
  101. Location = vector3(1134.15, -982.53, 46.41),
  102. },
  103. }
  104.  
  105. ---------------
  106. -- Safes
  107. ---------------
  108. Config.Safes = {
  109. [1] = { x = -42.38, y = -1749.22, z = 29.42, h = 320.15 },
  110. [2] = { x = -1479.80, y = -373.03, z = 39.16, h = 318.45 },
  111. [3] = { x = -1218.49, y = -915.56, z = 11.33, h = 212.42 },
  112. [4] = { x = -708.44, y = -904.42, z = 19.22, h = 356.90 },
  113. [5] = { x = 30.5, y = -1339.41, z = 29.50, h = 268.00 },
  114. [6] = { x = 1126.16, y = -982.54, z = 45.42, h = 100.81 },
  115. }
  116.  
  117. ---------------
  118. -- Mini-Games
  119. ---------------
  120. Config.QBSkillbar = {
  121. duration = math.random(2500,5000),
  122. pos = math.random(10, 30),
  123. width = math.random(10, 20),
  124. }
  125.  
  126. Config.QBLock = {
  127. circles = math.random(2,4),
  128. time = math.random(7,10),
  129. }
  130.  
  131. Config.MemoryGame = {
  132. correctBlocks = 5,
  133. incorrectBlocks = 3,
  134. timetoShow = 3,
  135. timetoLose = 10,
  136. }
  137.  
  138. ---------------
  139. -- Level System
  140. ---------------
  141. Config.Reward = { min = 5000, max = 10000 } -- Reward after trade the register
  142. Config.XPEarn = { min = 5, max = 10 } -- XP earn after each robbery
  143. Config.LevelSystem = {
  144. Level_0 = 0, -- x1 The Reward [ Example: Config.Reward x 1 ]
  145. Level_1 = 75, -- x2 The Reward [ Example: Config.Reward x 2 ]
  146. Level_2 = 150, -- x3 The Reward [ Example: Config.Reward x 3 ]
  147. Level_3 = 225, -- x4 The Reward [ Example: Config.Reward x 4 ]
  148. Level_4 = 300, -- x5 The Reward [ Example: Config.Reward x 5 ]
  149. Level_5 = 500, -- x6 The Reward [ Example: Config.Reward x 6 ]
  150. }
  151.  
  152. ---------------
  153. -- WEBHOOKS
  154. ---------------
  155. Config.Webhooks = true
  156. Config.LogName = "storerobbery"
  157. Config.LogColour = "lightgreen"
  158.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement