Advertisement
marcinhuUu

m-CarBomb

Aug 6th, 2022
308
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.74 KB | None | 0 0
  1. Config = {}
  2.  
  3. Config.Core = "qb-core" -- Your Core Name
  4.  
  5. Config.Target = "qb-target" -- Your Target Name
  6.  
  7. Config.QBMenu = "qb-menu" -- Your Menu Name
  8.  
  9. Config.Phone = "qs-smartphone" -- Your Phone // Available: qb-phone / gksphone / qs-smartphone
  10.  
  11. Config.Notify = "QBCore" -- "QBCore" or "okok"
  12.  
  13. Config.Payment = "cash" -- "cash" or "bank"
  14.  
  15. Config.KeyExplosion = 47 -- Key to explosion the vehicle
  16.  
  17. Config.DurationPlantBomb = 5000 -- Time progressbar to plant bomb
  18.  
  19. Config.DurationRemoveBomb = 5000 -- Time progressbar to remove bomb
  20.  
  21. Config.JobPolice = "police" -- Your police job name to remove the bomb
  22.  
  23. Config.PriceBomb = 5000 -- Price of the bomb
  24.  
  25. Config.NeedJob = false -- Need job to start mission?
  26.  
  27. Config.JobName = "" -- Name of the job
  28.  
  29. Config.NeedGang = false -- Need gang to start mission?
  30.  
  31. Config.GangName = "" -- Name of the job
  32.  
  33. Config.CallCops = true -- Call cops when buy a bomb?
  34.  
  35. Config.Percentage = 50 -- Percentage to call cops
  36.  
  37. Config.StartMission = vector3(2221.96, 5614.72, 53.90) -- Target to start mission
  38.  
  39. Config.Trader = vector3(-280.75, 6405.00, 31.39) -- Target to buy a bomb
  40.  
  41. Config.Peds = {
  42. Ped = {type = 4, hash= GetHashKey("s_m_y_garbage"), x = 2221.96, y = 5614.72, z = 53.90, h = 105.17}, -- Start mission
  43. Ped2 = {type = 4, hash= GetHashKey("s_m_y_garbage"), x = -280.75, y = 6405.00, z = 30.39, h = 34.36}, -- Buy Bomb
  44. }
  45.  
  46. Config.QBLock = {
  47. circles = math.random(2,4),
  48. time = math.random(7,10),
  49. }
  50.  
  51. Lang = {
  52. PlacingBomb = "Placing bomb on vehicle...", -- Progressbar
  53. RemovingBomb = "Removing the bomb of the vehicle", -- Progressbar
  54. NoVehicle = "No vehicles nearby!",
  55. Out = "You have to be out of the vehicle!",
  56. BombPlanted = "You placed the bomb, to detonate press [G]",
  57. BombRemoved = "Bomb removed with sucesss!",
  58. BlipBuy = "Buy Bomb",
  59. Sender = "John",
  60. Subject = "Bomb Mission",
  61. Message = "Follow the GPS and get the bomb!",
  62. BombMission = "Bomb Mission",
  63. Help = "Hey, how can i help you?",
  64. NeedBomb = "[💣] I need a bomb for explosion a car!",
  65. Cancel = "[❌] Cancel the mission",
  66. MissonCanceled = "Mission Canceled",
  67. AnyMission = "You dont have any mission",
  68. BombSeller = "Bomb Seller",
  69. BuyBomb = "[💣] I want to buy a bomb !",
  70. NoBomb = "The car don't have bomb.",
  71. Failed = "Failed",
  72. StartMission = "You need start mission first.",
  73. ObtainInfo = "Obtaining the information...",
  74. WrongJob = "Wrong Job",
  75. WrongGang = "Wrong Gang",
  76. NoMoney = "You don't have money.",
  77. T_BuyBomb = "Buy Bomb", -- Target
  78. T_StartMission = "Start Mission", -- Target
  79. Quantity = "Quantity", -- QB-Input
  80. InvalidQty = "Invalid quantity", -- QB-Input
  81. Confirm = "Confirm", -- QB-Input
  82. Amount = "Amount", -- QB-Input
  83. }
  84.  
  85. function CallCops()
  86. -- Trigger your dispatch
  87. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement