Advertisement
dahhoovy

cleanhud_config.lua

Sep 29th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.73 KB | None | 0 0
  1. -- Dont touch this!
  2. CleanHUD = {}
  3.  
  4.  
  5. -- MAIN CONFIG --
  6.  
  7.  
  8. -- Color Preset
  9. -- This option lets you set the overall look of the HUD. If you want to change the values individually (e.g., background color), you must set this to "none"
  10.  
  11. -- Available Presets
  12. -- "dark"
  13. -- "light"
  14. -- "teal"
  15. -- "blue"
  16. -- "none" <-- use this if you are going to modify individual colors (text color, player name color, accent color, etc.)
  17.  
  18. CleanHUD.ColorPreset = "dark"
  19.  
  20.  
  21. -- HUD Gamemode Selection (default: darkrp)
  22. -- Uncomment the gamemode that you are using (only use one at a time)
  23.  
  24. CleanHUD.Gamemode = "darkrp"
  25. --CleanHUD.Gamemode = "sandbox"
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32. -- Playername Color
  33. -- Color Presets (Delete the -- before the color that you want; only keep one enabled at a time.)
  34.  
  35. CleanHUD.PlayerName = Color(0, 200, 190) -- Teal
  36. --CleanHUD.PlayerName = Color(240, 120, 120) -- Red
  37. --CleanHUD.PlayerName = Color(120, 120, 240) -- Blue
  38. --CleanHUD.PlayerName = Color(120, 235, 120) -- Light Green
  39. --CleanHUD.PlayerName = Color(255, 153, 51) -- Orange
  40.  
  41.  
  42. -- Text Color
  43. -- Set the color of the text in the hud (job, money, salary, ammo, agenda, etc.) (default: off-white)
  44.  
  45. CleanHUD.TextColor = Color(230, 230, 230)
  46.  
  47.  
  48. -- Agenda Title Color
  49. -- Set the color of the title in the agenda (default: blue)
  50.  
  51. CleanHUD.AgendaTitleColor = Color(100, 100, 230)
  52.  
  53.  
  54. -- Background Color
  55. -- Set the color of the background behind the text (default: dark gray)
  56.  
  57. CleanHUD.BackgroundColor = Color(55, 55, 55, 245)
  58.  
  59.  
  60. -- Accent Color
  61. -- Set the color of the line that goes through the background (default: light gray)
  62.  
  63. CleanHUD.AccentColor = Color(125, 125, 125)
  64.  
  65.  
  66. -- Health Bar Color
  67. -- Set the color of the health bar (default: red)
  68.  
  69. CleanHUD.HealthBar = Color(255, 120, 120)
  70.  
  71.  
  72. -- Armor Bar Color
  73. -- Set the color of the armor bar (default: light blue)
  74.  
  75. CleanHUD.ArmorBar = Color(120, 120, 255)
  76.  
  77.  
  78. -- Food Bar Color
  79. -- Set the color of the food/energy bar (Hungermod only) (default: green)
  80.  
  81. CleanHUD.FoodBar = Color(78, 237, 139, 255)
  82.  
  83.  
  84. -- Remove Playerinfo Background
  85. -- Removes the background behind the playerinfo text (above head) (default: false)
  86.  
  87. CleanHUD.RemovePlayerInfoBackground = false
  88.  
  89.  
  90. -- Remove Job Name
  91. -- Removes the title of a player's job above their head.
  92.  
  93. CleanHUD.RemoveJobName = false
  94.  
  95.  
  96. -- Usergroup Titles (Sandbox)
  97. -- Only change these if you are using Sandbox!
  98. -- This is what the corresponding rank will look like on the HUD (rank titles are case sensitive!)
  99.  
  100. CleanHUD.UserGroups = {}
  101. CleanHUD.UserGroups["superadmin"] = "Super Admin"
  102. CleanHUD.UserGroups["admin"] = "Admin"
  103. CleanHUD.UserGroups["mod"] = "Moderator"
  104. CleanHUD.UserGroups["vip"] = "VIP"
  105. CleanHUD.UserGroups["member"] = "Member"
  106. CleanHUD.UserGroups["user"] = "Guest"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement