Lukyspore

sh_config.lua

Nov 18th, 2025 (edited)
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.19 KB | None | 0 0
  1. LDT_Analytics = LDT_Analytics or {}
  2. LDT_Analytics.Config = LDT_Analytics.Config or {}
  3.  
  4. -- This is the command to open the menu.
  5. LDT_Analytics.Config.MenuCommand = "!analytics"
  6.  
  7. -- Currently there are en translations available.
  8. LDT_Analytics.Config.Language = "en"
  9.  
  10. -- These are the ranks that are allowed to access the analytics menu.
  11. LDT_Analytics.Config.AdminRanks = {
  12.     ["superadmin"] = true,
  13.     ["admin"] = true
  14. }
  15.  
  16. -- This is the date format used in the analytics. You can change it to your liking. (https://www.lua.org/pil/22.1.html)
  17. LDT_Analytics.Config.DateFormat = "%m-%d"
  18.  
  19. -- These are the colors for every element of the UI. Feel free to change them to your liking.
  20. LDT_Analytics.Config.Red = Color(255, 63, 5)
  21. LDT_Analytics.Config.White = Color(255, 255, 255)
  22. LDT_Analytics.Config.WhiteHighlight = Color(200, 200, 200)
  23. LDT_Analytics.Config.WhiteDim = Color(200, 200, 200, 80)
  24. LDT_Analytics.Config.Grey = Color(47, 54, 64)
  25. LDT_Analytics.Config.GreySecond = Color(53, 59, 72)
  26. LDT_Analytics.Config.GreyThird = Color(53, 59, 72,100)
  27. LDT_Analytics.Config.Dark = Color(30,30,30)
  28. LDT_Analytics.Config.Blue = Color(0, 151, 230)
  29. LDT_Analytics.Config.HoverGrey = Color(50,50,50,220)
Advertisement
Add Comment
Please, Sign In to add comment