Advertisement
Guest User

Config

a guest
Mar 16th, 2015
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.13 KB | None | 0 0
  1. beastsb = {} -- DONT TOUCH
  2.  
  3. beastsb.deathcol = Color( 160, 50, 50, 200 ) -- Color for death on the scoreboard
  4. beastsb.runnercol = Color( 50, 50, 160, 200 ) -- Color for runners on the scoreboard
  5. beastsb.deadcol = Color( 160, 160, 160, 233 ) -- Color for dead on the scoreboard
  6. beastsb.connectingcol = Color( 35, 155, 80, 233 ) -- Color for connecting players on the scoreboard
  7.  
  8. beastsb.box = true -- Instead of having rounded edges, there will be no rounded edges.
  9. beastsb.main = Color( 255, 255, 255, 0 ) -- BASE COLOR
  10. beastsb.hostbox = Color( 60, 60, 60, 0 ) -- Color of box behind hostname
  11. beastsb.hostcol = Color( 255, 255, 255 ) -- Color of the host text
  12.  
  13. -- HOW TO ADD RANKS!
  14. -- FORMAT: { "NAME OF RANK ON SERVER", "TEXT TO DISPLAY ON SERVER FOR RANK", COLOR OF RANK }
  15. -- NOTE: DON'T FORGET TO ADD A COMMA ON TO EACH NEW ENTRY, ALL NEED IT EXCEPT FOR THE LAST RANK
  16.  
  17. beastsb.ranks = {
  18. { "user", "User", Color( 255, 255, 255 ) },
  19. { "admin", "Admin", Color( 0, 220, 15 ) },
  20. { "superadmin", "SuperAdmin", Color( 255, 255, 255 ) },
  21. { "operator", "Operator", Color( 25, 193, 103 ) },
  22. { "owner", "Owner", Color( 255, 207, 10 ) }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement