Advertisement
Guest User

TicketBook

a guest
Aug 20th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. TicketBook.Config = {}
  2. TicketBook.Config.Core = {}
  3. TicketBook.Config.TB = {}
  4. TicketBook.Config.Fine = {}
  5. TicketBook.Config.Punish = {}
  6. TicketBook.Config.Police = {}
  7. -- If you run into any issues and the addon throws errors at you, contact me through a support ticket, or add me on steam.
  8.  
  9. /*
  10. ==================================
  11. This is the config for Ticket Book
  12. ==================================
  13. */
  14.  
  15. -- The font for the UI
  16. TicketBook.Config.Core.Font = "Calibri"
  17. -- The color of the prefix in the chat messages
  18. TicketBook.Config.Core.ChatPrefixColor = Color(200,50,100)
  19. -- The prefix for the chat messages
  20. TicketBook.Config.Core.ChatPrefix = "Ticket Book"
  21.  
  22. -- The name of the SWEP
  23. TicketBook.Config.TB.DisplayName = "Ticket Book"
  24. -- Cool down for attempting to ticket (Suggestion: Keep less than 5)
  25. TicketBook.Config.TB.CoolDown = 2
  26. -- The max distance you can be from a player to fine them
  27. TicketBook.Config.TB.MaxDistance = 500
  28.  
  29. -- The max fine you can give
  30. TicketBook.Config.Fine.Max = 10000
  31. -- Give the Officer the money the player is fined?
  32. TicketBook.Config.Fine.GiveOff = true
  33.  
  34. -- Make the player wanted if they do not pay the fine?
  35. TicketBook.Config.Punish.Wanted = true
  36. -- If above is true, what should the wanted message be?
  37. TicketBook.Config.Punish.Reason = "Ticket Evade"
  38.  
  39. -- Should other government be ticketable?
  40. TicketBook.Config.Police.TicketPolice = false
  41.  
  42. -- If above is false, then continue
  43. -- If this is true, it will use the police job list in the jobs.lua (Recommended)
  44. -- If this is false, it will use the table below
  45. TicketBook.Config.Police.CPCheck = true
  46.  
  47. -- If above is false, what jobs are government
  48. TicketBook.Config.Police.ConsideredPolice = {
  49. "Citizen",
  50. "Civil Protection"
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement