Advertisement
marcinhuUu

m-Insurance

Jul 3rd, 2022
2,074
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. Config = {}
  2.  
  3. --------------------------
  4. -- Utility
  5. --------------------------
  6. Config.Utility = {
  7. CoreName = "qb-core", -- Your core name
  8. Target = "qb-target", -- Your target name
  9. Input = "qb-input", -- Your input name
  10. Menu = "qb-menu", -- Your menu name
  11. Peds = { -- Peds
  12. {type = 4, hash= GetHashKey("s_m_m_gaffer_01"), x = 835.26, y = -805.76, z = 25.33, h = 90.81},
  13. {type = 4, hash= GetHashKey("s_m_m_gaffer_01"), x = 835.26, y = -812.67, z = 25.33, h = 90.81},
  14. {type = 4, hash= GetHashKey("s_m_m_gaffer_01"), x = 835.26, y = -820.10, z = 25.33, h = 90.81},
  15. -- You can add more peds if you want
  16. },
  17. WaitTime = 15000 -- Time to complete the insurance
  18. }
  19.  
  20. Config.Blip = {
  21. Enable = true,
  22. Location = vector3(835.26, -805.76, 25.33),
  23. Sprite = 89,
  24. Display = 2,
  25. Scale = 0.8,
  26. Colour = 44,
  27. Name = "Car Insurance",
  28. }
  29.  
  30.  
  31. Config.Prices = {
  32. Price30Days = 500, -- Price for insurance 30 days
  33. Price60Days = 1000, -- Price for insurance 60 days
  34. Price90Days = 1500, -- Price for insurance 90 days
  35. Registration = 500, -- Price for car registration
  36. }
  37.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement