Advertisement
Guest User

Untitled

a guest
Dec 11th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.89 KB | None | 0 0
  1. /*
  2. -HUD Config
  3. */
  4. SR_HUD.cfg = SR_HUD.cfg or {}
  5.  
  6. -- Your server name.
  7. SR_HUD.cfg.server_name = "Serveur Les Petits Ramoutcho"
  8.  
  9. -- Command to open the in-game editor.
  10. SR_HUD.cfg.command = "!edithud"
  11.  
  12. -- HUD Colors for the first time join, please don't touch this if you don't know anything about rgb or numbers at all.
  13. SR_HUD.cfg.Colors = {
  14. header = Color( 40, 60, 80, 255 ),
  15. background = Color( 224, 224, 224, 100),
  16. eboxp = Color( 224, 224, 224, 255 ),
  17. name_text = Color( 40, 60, 80, 255 ),
  18. job_text = Color( 40, 60, 80, 255 ),
  19. money_text = Color( 40, 60, 80, 255 ),
  20. license_text = Color( 40, 60, 80, 255 ),
  21. wanted_text = Color( 40, 60, 80, 255 ),
  22. armor_text = Color( 224, 224, 224, 255 ),
  23. health_text = Color( 224, 224, 224, 255 ),
  24. hunger_text = Color( 224, 224, 224, 255 ),
  25. money_icon = Color( 40, 60, 80, 255 ),
  26. license_icon = Color( 40, 60, 80, 255 ),
  27. wanted_icon = Color( 40, 60, 80, 255 ),
  28. health_icon = Color( 40, 60, 80, 255 ),
  29. armor_icon = Color( 40, 60, 80, 255 ),
  30. hunger_icon = Color( 40, 60, 80, 255 ),
  31. health_bar = Color( 40, 60, 80, 255 ),
  32. health_emptybar = Color( 40, 60, 80, 170 ),
  33. armor_bar = Color( 40, 60, 80, 255 ),
  34. armor_emptybar = Color( 40, 60, 80, 170 ),
  35. energy_bar = Color( 40, 60, 80, 255 ),
  36. energy_emptybar = Color( 40, 60, 80, 170),
  37. ammo_background = Color( 224, 224, 224, 100),
  38. ammo_header = Color( 40, 60, 80, 255 ),
  39. ammo_headertext = Color( 224, 224, 224, 255),
  40. ammo_text = Color( 40, 60, 80, 255 ),
  41. server_name = Color( 224, 224, 224, 255 ),
  42. blur_enabled = 0, -- 1 to enable by default
  43. default_jobtextcolor = 0, -- 1 to enable by default
  44. lawboard_header = Color( 40, 60, 80, 255 ),
  45. lawboard_background = Color( 224, 224, 224, 100),
  46. lawboard_headertext = Color( 224, 224, 224, 255 ),
  47. lawboard_text = Color( 40, 60, 80, 255 )
  48. }
  49.  
  50. -- Add weapons that don't use ammo
  51. SR_HUD.cfg.WeaponsWithNoAmmo = {
  52. "weapon_physcannon",
  53. "weapon_keypadchecker"
  54. }
  55.  
  56. -- HUD Language.
  57. SR_HUD.cfg.Language = {
  58. gunlicensed = "Licensed", -- Gun license text if licensed.
  59. not_licensed = "Not Licensed", -- Gun license text if not licensed.
  60. wanted = "Wanted!", -- Active lockdown text.
  61. nwanted = "Not Wanted", -- Inactive lockdown text.
  62. }
  63.  
  64. -- HUD Icons.
  65. SR_HUD.Materials = {
  66. health = Material( "materials/sr_icons/health.png" ), -- Health icon.
  67. armor = Material( "materials/sr_icons/armor.png" ), -- Armor icon.
  68. name = Material( "materials/sr_icons/name.png" ), -- Name icon.
  69. job = Material( "materials/sr_icons/job.png" ), -- Job icon.
  70. money = Material( "materials/sr_icons/money.png" ), -- Money icon.
  71. license = Material( "materials/sr_icons/gunlicense.png" ), -- Gunlicense icon.
  72. wanted = Material( "materials/sr_icons/wanted.png" ), -- Wanted icon
  73. hunger = Material( "materials/sr_icons/hunger.png" ), -- Hunger icon if you have it enabled in disabled_defaults.lua
  74. background = Material( "materials/sr_icons/background.png" )
  75. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement