Advertisement
marcinhuU

m-CarThief

Mar 1st, 2022
961
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.72 KB | None | 0 0
  1. Config = {}
  2.  
  3. ----------------------
  4. -- UTILITY
  5. ----------------------
  6. Config.Pagamento = math.random(750, 2500) -- Amount of cash reward
  7. Config.EnableBlip = false -- Enable blip of mission
  8. Config.InventoryItemBox = "inventory:client:ItemBox" -- Dont touch if you dont know
  9. Config.TempoEspera = 900000 -- 15 minutes ( Time to start another mission )
  10. Config.EnablePolice = false -- Enable police?
  11. Config.ChanceToCallCops = 50 -- The higher the number, the less chance there is.
  12. ----------------------
  13. -- Email
  14. ----------------------
  15. Config.Phone = "qb-phone" -- qb-phone or gksphone
  16. Config.PhoneSendEmailQBPhone = "qb-phone:server:sendNewMail"
  17. Config.PhoneSendEmailGKSPhone = "gksphone:NewMail"
  18. Config.Sender = "Thief" -- Sender of email
  19. Config.Title = "Job" -- Title of email
  20. Config.Message = "I put the vehicle's position in your GPS. Go steal it!" -- Message of email
  21. ----------------------
  22. -- Blips
  23. ----------------------
  24. Config.BlipStartMission = "Vehicle theft" -- Blip name of start mission if enable
  25. Config.BlipDelivery = "Delivery point" -- Blip name of delivery point
  26. Config.BlipVehicle = "Vehicle" -- Blip name of vehicle to steal
  27. ---------------
  28. -- Rewards
  29. ---------------
  30. Config.TypeReward = "cash" -- You can put: blackmoney , cash , weapons or items.
  31. Config.NameOfBlackMoney = 'markedbills' -- Name of black money.
  32. Config.MontanteReceberBlackMoney = math.random(250, 1500) -- Amount of blackmoney.
  33. Config.QuantidadeDeSacosBlackMoney = math.random(2,3) -- Amount of bags of blackmoney.
  34. Config.MontanteReceberDinheiroNormal = math.random(250, 1500) -- Amount of normal money.
  35. Config.QuantidadeWeapon = 2 -- Amout of weapons.
  36. Config.ArmasPossiveis = {
  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.QuantidadeItens = 1 -- Amout of items.
  42. Config.ItensPossiveis = {
  43. [1] = {nome = "bread"}, -- Name of item.
  44. [2] = {nome = "water"}, -- Name of item.
  45. -- You can add more items
  46. }
  47. ----------------------
  48. -- Targets
  49. ----------------------
  50. -- Start mission
  51. Config.NPCStartMission = {-1117.06, -503.05, 34.81,"Ze Ladra",293.18,0x039677BD,"cs_jimmyboston"}
  52. Config.TargetStartMission = vector3(-1117.06, -503.05, 34.81)
  53. Config.TargetStartMissionLabel = "Start Mission"
  54. Config.TargetStartMissionIcon = "fas fa-male"
  55. -- Delivery car
  56. Config.NPCEndMission = {1200.58, -3114.56, 4.5,"Ze Ladra",294.18,0x039677BD,"cs_jimmyboston"}
  57. Config.TargetEndMission = vector3(1200.91, -3114.18, 5.54)
  58. Config.TargetEndMissionlabel = "Delivery Vehicle"
  59. Config.TargetEndMissionIcon = "fas fa-car"
  60.  
  61. ----------------------
  62. -- Spawn points vehicles
  63. ----------------------
  64. Config.PossibleSpawnPoints = { -- Possible spawn points for cars
  65. { x=283.24, y=-239.8, z=53.61, h=69.64},
  66. { x=-1269.74, y=233.04, z=60.82, h=99.8},
  67. { x=-1183.65, y=-1268.58, z=5.84, h=26.37},
  68. { x=-903.75, y=1087.5, z=220.09, h=9.45},
  69. { x=-3003.39, y=1456.03, z=26.83, h=331.48}
  70. }
  71. ----------------------
  72. -- Vehicles
  73. ----------------------
  74. Config.PossibleVehicles = { -- Possible models that can spawn
  75. {m = "cogcabrio"},
  76. {m = "oracle2"},
  77. {m = "zion"},
  78. {m = "panto"},
  79. {m = "felon"},
  80. {m = "jackal"},
  81. {m = "windsor2"},
  82. {m = "f620"},
  83. {m = "ruiner"},
  84. {m = "virgo2"},
  85. {m = "asea"},
  86. {m = "exemplar"}
  87. }
  88.  
  89. -----------------
  90. -- Functions
  91. -----------------
  92. function ChamarPolicia()
  93. TriggerEvent("qb-dispatch:bankrobbery")
  94. -- You can trigger your dispatch
  95. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement