marcinhuU

m-Meth

Mar 11th, 2022
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.14 KB | None | 0 0
  1. Config = Config or {}
  2.  
  3. -------------------
  4. -- Utility
  5. -------------------
  6. Config.Framework = "NEW" -- "NEW" -> New qbcore | "OLD" -> Old qbcore
  7. Config.TriggerInventoryItemBox = "inventory:client:ItemBox"
  8. Config.RelieveStress = "hud:server:RelieveStress" -- Trigger to relieve stress
  9. Config.BonusForSmoking = "all" -- "all" / "stamina" / "stress" / "armour"
  10. Config.QuantityRelieveStress = math.random(5, 10)
  11. Config.QuantityGiveArmourAfterSmoke = math.random(5, 10)
  12. Config.BonusStress = math.random(5, 10)
  13. Config.BonusAmour = math.random(5, 10)
  14. Config.BonusStamina = 1.0
  15. Config.Phone = "qb-phone"
  16. Config.PhoneSendEmailQBPhone = "qb-phone:server:sendNewMail"
  17. Config.PhoneSendEmailGKSPhone = "gksphone:NewMail"
  18. Config.QBTarget = "qb-target"
  19. Config.QBMenu = "qb-menu"
  20. Config.TimeToReceiveEmailWithLocation = 10000
  21. Config.ItemMethamphetamine = "metanfetaminas"
  22. Config.AmountReceivedMeta = math.random(2,3) -- Amount for each time the ingredients are mixed. Then they will pack.
  23. Config.PackagedMethamphetamine = "metaembalada"
  24. Config.AmountReceivedPackagedMeta = math.random(2,3) -- Amount to be received for each package. Then they will sell.
  25. -------------------
  26. -- Rewards
  27. -------------------
  28. Config.PriceForEachMethamphetamine = 50 -- Price for each methamphetamine
  29. Config.TypeReward = "cash" -- cash / weapons / blackmoney / crypto
  30. Config.NameOfBlackMoney = 'markedbills' -- Name of black money.
  31. Config.AmountOfCrypto = math.random(10,30) -- Amount of crypto if TypeReward is crypto
  32. Config.AmountReceiveBlackMoney = math.random(250, 1500) -- Amount of blackmoney.
  33. Config.QuantityOfBagsBlackMoney = math.random(2,3) -- Amount of bags of blackmoney.
  34. Config.AmountReceiveNormalMoney = math.random(250, 1500) -- Amount of normal money.
  35. Config.QuantityWeapon = 2 -- Amout of weapons.
  36. Config.PossibleWeapons = {
  37. [1] = {nome = "weapon_pistol"}, -- Name of weapon.
  38. [2] = {nome = "weapon_appistol"}, -- Name of weapon.
  39. -- You can add more weapons
  40. }
  41. Config.QuantityItems = 1 -- Amout of items.
  42. Config.PossibleItems = {
  43. [1] = {nome = "bread"}, -- Name of item.
  44. [2] = {nome = "water"}, -- Name of item.
  45. -- You can add more items
  46. }
  47.  
  48. -------------------
  49. -- Notifications
  50. -------------------
  51. Config["Language"] = {
  52. ["General"] = {
  53. ["Failed"] = "You Failed!",
  54. ["AlgoMal"] = "Something is wrong.",
  55. ["MixIngredientsComplete"] = "All ingredients were mixed.",
  56. ["PackagedIngredientsComplete"] = "All the methamphetamine was packaged.",
  57. ["WaitForEmail"] = "Get out of here, I'll send you details.",
  58. ['DentroVeiculo'] = "You can't smoke inside the vehicle."
  59. },
  60. ["Sales"] = {
  61. ["NaoTensNecessario"] = "You have nothing to sell.",
  62. },
  63. ["QB-Target"] = {
  64. ["TurnOnMachine"] = "Turn on the machine",
  65. ["IconTurnOnMachine"] = "fas fa-car",
  66. ["PutIngredients"] = "Put Ingredients",
  67. ["IconPutIngredients"] = "fas fa-car",
  68. ["MixIngredients"] = "Mix methamphetamine",
  69. ["IconMixIngredients"] = "fas fa-car",
  70. ["PackIngredients"] = "Pack Methamphetamine",
  71. ["IconPackIngredients"] = "fas fa-car",
  72. ["SellMethamphetamines"] = "Sell Methamphetamine",
  73. ["IconSellMethamphetamines"] = "fas fa-car",
  74. },
  75. ["ProgressBars"] = {
  76. ["TurnOnMachine"] = "Turning on the machine...",
  77. ["PutIngredients"] = "Putting the ingredients...",
  78. ["MixIngredients"] = "Mixing the methamphetamine...",
  79. ["PackIngredients"] = "Packing the methamphemine...",
  80. },
  81. ["Email"] = {
  82. ["Sender"] = "Anonymous",
  83. ["Title"] = "Sell Drugs",
  84. ["Message"] = "We send you the GPS location. Good luck!",
  85. },
  86. ["QB-Menu"] = {
  87. ["HeaderSelling"] = "Selling Drugs",
  88. ["Selling"] = "I want to sell methamphetamines!",
  89. },
  90. }
  91.  
  92.  
  93.  
  94. -------------------
  95. -- Call Police
  96. -------------------
  97. Config.ChanceChamarPolicia = 50 -- Chance Call Police
  98. Config["SellDrugs"] = {
  99. [1] = { x = 2704.30, y = 4330.25, z = 46.0 }, -- Location to go to sell methamphetamines
  100. }
  101.  
  102. function ChamarBofia()
  103. -- Trigger your dispatch
  104. end
Add Comment
Please, Sign In to add comment