Advertisement
Guest User

Untitled

a guest
May 31st, 2022
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. -- Locations
  2.  
  3. Config.Impounds = {
  4. -- Example
  5. -- {
  6. -- coords = vector4(409.4, -1624.1, 29.3, 232.5), -- this is the coords for the ped
  7. -- vehicle = vector4(401.4, -1632.2, 29.0, 319.2), -- this is the coords for where the vehicle spawns
  8. -- price = 500, -- the price for buying out your vehicle. Set to 0 if you want it to be free
  9. -- }
  10. {
  11. coords = vector4(409.4, -1624.1, 29.3, 232.5),
  12. vehicle = vector4(401.4, -1632.2, 29.0, 319.2),
  13. price = 500
  14. }
  15. }
  16.  
  17. -- Ped models
  18.  
  19. Config.ImpoundModels = {
  20. `cs_drfriedlander`,
  21. `cs_johnnyklebitz`
  22. }
  23.  
  24. -- Ped scenarios
  25. Config.ImpoundScenarios = {
  26. 'WORLD_HUMAN_CLIPBOARD'
  27. }
  28.  
  29. -- Blip
  30.  
  31. Config.ImpoundBlip = { -- You can find the blips here: https://docs.fivem.net/docs/game-references/blips/
  32. sprite = 68,
  33. scale = 0.8,
  34. color = 5,
  35. title = 'Impound'
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement