Advertisement
marcinhuU

m-LicensePlate

Feb 26th, 2022
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.16 KB | None | 0 0
  1. Config = {}
  2.  
  3. -----------------
  4. -- Utility
  5. -----------------
  6. Config.QBCoreExport = exports['qb-core']:GetCoreObject()
  7. Config.Target = "qb-target"
  8. Config.ZFDialog = "zf_dialog"
  9. Config.Pagamento = "crypto" -- "cash", "crypto", "none"
  10. Config.PagamentoDinheiro = 10 -- Amount to pay with cash
  11. Config.PagamentoCrypto = 10 -- Amount to pay with crypto
  12. Config.PoliciaNecessaria = 2 -- Amount of police to use
  13. Config.NecessarioPolicia = false -- Police needed?
  14. Config.NomeJobPolicia = "police"
  15. Config.PropMatricula = `p_num_plate_01`
  16. Config.AnimationPickUpLicensePlate = "world_human_gardener_plant"
  17.  
  18. -----------------
  19. -- Notifications
  20. -----------------
  21. Config["Notificacoes"] = {
  22. ["Pagaste"] = "You paid: ",
  23. ["TrocaMatriulaDinheiro"] = " for the exchange of license plate.",
  24. ["TrocaMatriulaCrypto"] = " in crypto for the exchange of license plate.",
  25. ["ProcuraMatricula1"] = "Look for the license plate in the warehouse!",
  26. ["Tentar"] = "Don't play with fire :)", -- Prevent cheaters :)
  27. ["SemGuita"] = "You don't have enough money.",
  28. ["FormaErrada"] = "You are not doing it correctly.",
  29. ["NaoHaPolicia"] = "There are not enough police.",
  30.  
  31. }
  32. -----------------
  33. -- ProgressBars
  34. -----------------
  35. Config["ProgressBars"] = {
  36. ["Apanhar"] = "Picking up the license plate.."
  37. }
  38. -----------------
  39. -- Prop License Plate
  40. -----------------
  41. Config.PList = {{ PropsHASH = "p_num_plate_01", x = -591.70, y = -1626.46, z = 32.04, r = 325.54, f = false}}
  42.  
  43. -----------------
  44. -- zf_dialog
  45. -----------------
  46. Config.ZFHeader = "Change License Plate<br> <center>Cost: $"..Config.PagamentoDinheiro -- If you put payment with crypto , change "Config.PagamentoDinheiro" to : "Config.PagamentoCrypto"
  47. Config.ZFText = "License Plate Text"
  48.  
  49. -----------------
  50. -- Targets
  51. -----------------
  52. -- Alterar Matrícula
  53. Config.TargetLocation = vector3(-586.19, -1598.33, 27.01)
  54. Config.TargetNPCLabel = "Change License Plate"
  55. Config.TargetNPCIcon = "fas fa-car"
  56. Config.TargetNPCDist = 2.0
  57. -- Apanhar Matrícula
  58. Config.TargetMatriculaLabel = "Pick Up"
  59. Config.TargetMatriculaIcon = "fas fa-ship"
  60. Config.TargetMatriculaDist = 2.0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement