Advertisement
orangelist

Untitled

Aug 12th, 2023
617
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.86 KB | None | 0 0
  1. Config = Config or {}
  2.  
  3. Config.EventPrefix = 'QBCore' -- Core event prefix
  4. Config.QBCoreFolderName = 'qb-core' -- Core folder name
  5.  
  6. Config.TargetFolderName = 'qb-target' -- name of the target folder
  7.  
  8. Config.MenuEventPrefix = 'qb-menu' -- event prefix of menu
  9. Config.MenuFolderName = 'qb-menu' -- menu folder name
  10.  
  11. Config.InventoryFolder = 'lj-inventory' -- inventory folder name
  12.  
  13. Config.vehicleDataBase = 'player_vehicles' -- db table for vehicles
  14.  
  15. Config.ReceiptItem = 'receipt' -- Receipt Item name
  16. Config.SprayItem = 'spraycan' -- Spray Item name
  17. Config.NeonItem = 'neon' -- Neon Item name
  18. Config.XenonItem = 'xenon' -- Xenon Item name
  19. Config.WheelItem = 'wheel' -- Wheel Item name
  20.  
  21. Config.UseItemBox = 'inventory:client:ItemBox' -- If using the event, change it as you want it, to disable set false
  22.  
  23. Config.UseRadial = false -- Will use qb-radial menu for entering instead of press E
  24. Config.allowGovPlateIndex = false -- Setting this to true will allow all vehicles to purchase gov plate index "Blue on White #3" (only for emergency vehicles otherwise)
  25. Config.maxVehiclePerformanceUpgrades = 0 -- | All Upgrades: 0 | No Upgrades: -1 | Can be -1 to 4
  26.  
  27. -- All the vehicles with back engine
  28. Config.BackEngineVehicles = {'ninef', 'adder', 'vagner', 't20', 'infernus', 'zentorno', 'reaper', 'comet2', 'comet3', 'jester', 'jester2', 'cheetah', 'cheetah2', 'prototipo', 'turismor', 'pfister811', 'ardent', 'nero', 'nero2', 'tempesta', 'vacca', 'bullet', 'osiris', 'entityxf', 'turismo2', 'fmj', 're7b', 'tyrus', 'italigtb', 'penetrator', 'monroe', 'ninef2', 'stingergt', 'surfer', 'surfer2', 'comet3', "p1", "675ltsp", "senna" }
  29.  
  30. Config.Text = {
  31. errors = {
  32. itemError = 'Something is wrong with the item',
  33. missingItem = 'missing items',
  34. dmgveh = 'The vehicle must be fully repaired',
  35. unknownveh = 'You can not upgrade unknown vehicle',
  36. front = 'You must be in the front',
  37. back = 'You must be in the back',
  38. bennysError = 'You cant do anything here!',
  39. },
  40. success = {
  41. wheelUpgrade = 'Wheel has Changed successfully',
  42. neonUpgrade = 'Neon Has Changed successfully',
  43. colorUpgrade = 'Color Changed successfully installed',
  44. xenonUpgrade = 'Xenon Changed successfully installed',
  45. modUpgrade = 'Mod Changed successfully installed',
  46. }
  47. }
  48.  
  49. Config.CustomMaterials = { -- Materials for crafting by type
  50. ['mods'] = { -- type
  51. [1] = {
  52. name = 'iron',
  53. label = 'Iron',
  54. amount = 50
  55. },
  56. [2] = {
  57. name = 'steel',
  58. label = 'Steel',
  59. amount = 50
  60. }
  61. },
  62. ['engine'] = {
  63. [1] = {
  64. name = 'iron',
  65. label = 'Iron',
  66. amount = 50
  67. },
  68. [2] = {
  69. name = 'steel',
  70. label = 'Steel',
  71. amount = 50
  72. }
  73. },
  74. ['brakes'] = {
  75. [1] = {
  76. name = 'iron',
  77. label = 'Iron',
  78. amount = 50
  79. },
  80. [2] = {
  81. name = 'steel',
  82. label = 'Steel',
  83. amount = 50
  84. }
  85. },
  86. ['gear'] = {
  87. [1] = {
  88. name = 'iron',
  89. label = 'Iron',
  90. amount = 50
  91. },
  92. [2] = {
  93. name = 'steel',
  94. label = 'Steel',
  95. amount = 50
  96. }
  97. },
  98. ['suspension'] = {
  99. [1] = {
  100. name = 'iron',
  101. label = 'Iron',
  102. amount = 50
  103. },
  104. [2] = {
  105. name = 'steel',
  106. label = 'Steel',
  107. amount = 50
  108. }
  109. },
  110. ['turbo'] = {
  111. [1] = {
  112. name = 'iron',
  113. label = 'Iron',
  114. amount = 50
  115. },
  116. [2] = {
  117. name = 'steel',
  118. label = 'Steel',
  119. amount = 50
  120. }
  121. },
  122. ['spray'] = {
  123. [1] = {
  124. name = 'iron',
  125. label = 'iron',
  126. amount = 50
  127. },
  128. [2] = {
  129. name = 'plastic',
  130. label = 'plastic',
  131. amount = 50
  132. }
  133. },
  134. ['neon'] = {
  135. [1] = {
  136. name = 'iron',
  137. label = 'iron',
  138. amount = 50
  139. },
  140. [2] = {
  141. name = 'plastic',
  142. label = 'plastic',
  143. amount = 50
  144. }
  145. },
  146. ['xenon'] = {
  147. [1] = {
  148. name = 'iron',
  149. label = 'iron',
  150. amount = 50
  151. },
  152. [2] = {
  153. name = 'plastic',
  154. label = 'plastic',
  155. amount = 50
  156. }
  157. },
  158. ['wheels'] = {
  159. [1] = {
  160. name = 'rubber',
  161. label = 'rubber',
  162. amount = 50
  163. },
  164. [2] = {
  165. name = 'plastic',
  166. label = 'plastic',
  167. amount = 50
  168. }
  169. }
  170. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement