Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.09 KB | None | 0 0
  1. -- _PRIORITY = 9998
  2. -- Chat Cosmetics Created and Developed by LittleBigBug
  3. -- http://www.steamcommunity.com/id/littlebigbug
  4. -- All Rights reserved
  5. -- Specially developed for Aero Game Servers
  6. -- Aerogameservers.com
  7.  
  8. -- _-----------------------------_
  9. -- Chat Cosmetics Configuration
  10. -- _-----------------------------_
  11. -- --_________________--
  12.  
  13. CUConfig = {}
  14. CUConfig.Tags = {}
  15.  
  16. CUConfig.Debug = false -- For testing - prints in console
  17.  
  18. local color_white = color_white
  19.  
  20. -- /\ DONT TOUCH ABOVE /\
  21.  
  22. -- Start Editing Below
  23.  
  24. CUConfig.MessagePrefix = Nil -- Message prefix for the messages. Nil is default: [Server]
  25. CUConfig.PrefixColor = Color(0, 255, 168)
  26.  
  27. CUConfig.EnableConnectMessage = true -- Enables "Player <playername> has connected to the server" in chat when anyone joins.
  28. CUConfig.EnableFirstSpawnMessage = false -- Enables "Player <playername> has Spawned in the server" in chat when anyone finishes loading in the server.
  29.  
  30. CUConfig.EnableDisconnectMessage = true -- Enables "Player <playername> has disconnected from the server" in the chat when anyone leaves.
  31.  
  32. CUConfig.EnableAdminSteamDisconnect = false -- Enables "Player <playername> had the steamid of <SteamID>" in the chat to all admins and superadmins when the player disconnects
  33.  
  34.  
  35. CUConfig.AdminSteamGroups = { -- Groups to show the disconnecting players steamid to
  36.  
  37. ["superadmin"] = 0,
  38. ["ndir"] = 0,
  39. ["nman"] = 0,
  40. ["admin"] = 1,
  41. ["jadmin"] = 1,
  42. ["moderator"] = 1,
  43. ["trialmod"] = 1,
  44.  
  45. }
  46.  
  47.  
  48. -- Chat Tags
  49. -- These do work with almost every gamemode.
  50. -- Tested Gamemodes:
  51. -- Deathrun, DarkRP
  52. -- OOC, Advert, and PM work.
  53.  
  54. if maestro ~= nil then
  55.  
  56. CUConfig.Tags["root"] = {
  57. Color( 255, 0, 0 ),
  58. "Root",
  59. color_white,
  60. Color( 255, 94, 94 )
  61. }
  62.  
  63. end
  64.  
  65. CUConfig.Tags["superadmin"] = { -- Group name in the ""
  66. Color( 255, 0, 0 ), -- The color of the tag
  67. "Network Director", -- What to display in the tag
  68. color_white, -- The brackets color of the tag
  69. Color( 255, 255, 255 ) -- Chat color, or if you don't want a specific chat color, use 'false' (WILL NOT OVVERIDE /advert CHAT COLOR!)
  70. }
  71.  
  72. CUConfig.Tags["ndir"] = { -- Group name in the ""
  73. Color( 255, 0, 0 ), -- The color of the tag
  74. "Network Director", -- What to display in the tag
  75. color_white, -- The brackets color of the tag
  76. Color( 255, 255, 255 ) -- Chat color, or if you don't want a specific chat color, use 'false' (WILL NOT OVVERIDE /advert CHAT COLOR!)
  77. }
  78.  
  79. CUConfig.Tags["nman"] = { -- Group name in the ""
  80. Color( 255, 0, 0 ), -- The color of the tag
  81. "Network Manager", -- What to display in the tag
  82. color_white, -- The brackets color of the tag
  83. Color( 255, 255, 255 ) -- Chat color, or if you don't want a specific chat color, use 'false' (WILL NOT OVVERIDE /advert CHAT COLOR!)
  84. }
  85.  
  86. CUConfig.Tags["admin"] = { -- Group name in the ""
  87. Color( (0, 8, 255 ), -- The color of the tag
  88. "Administrator", -- What to display in the tag
  89. color_white, -- The brackets color of the tag
  90. Color( 255, 255, 255 ) -- Chat color, or if you don't want a specific chat color, use 'false' (WILL NOT OVVERIDE /advert CHAT COLOR!)
  91. }
  92.  
  93. CUConfig.Tags["jadmin"] = { -- Group name in the ""
  94. Color( (182, 0, 255 ), -- The color of the tag
  95. "Junior Admin", -- What to display in the tag
  96. color_white, -- The brackets color of the tag
  97. Color( 255, 255, 255 ) -- Chat color, or if you don't want a specific chat color, use 'false' (WILL NOT OVVERIDE /advert CHAT COLOR!)
  98. }
  99.  
  100. CUConfig.Tags["moderator"] = { -- Group name in the ""
  101. Color( (22, 198, 5 ), -- The color of the tag
  102. "Moderator", -- What to display in the tag
  103. color_white, -- The brackets color of the tag
  104. Color( 255, 255, 255 ) -- Chat color, or if you don't want a specific chat color, use 'false' (WILL NOT OVVERIDE /advert CHAT COLOR!)
  105. }
  106.  
  107. CUConfig.Tags["trialmod"] = { -- Group name in the ""
  108. Color( (0, 255, 255 ), -- The color of the tag
  109. "Trial Moderator", -- What to display in the tag
  110. color_white, -- The brackets color of the tag
  111. Color( 255, 255, 255 ) -- Chat color, or if you don't want a specific chat color, use 'false' (WILL NOT OVVERIDE /advert CHAT COLOR!)
  112. }
  113.  
  114. CUConfig.Tags["svip"] = { -- Group name in the ""
  115. Color( (197, 201, 201 ), -- The color of the tag
  116. "SVIP", -- What to display in the tag
  117. color_white, -- The brackets color of the tag
  118. Color( 255, 255, 255 ) -- Chat color, or if you don't want a specific chat color, use 'false' (WILL NOT OVVERIDE /advert CHAT COLOR!)
  119. }
  120.  
  121. CUConfig.Tags["gvip"] = { -- Group name in the ""
  122. Color( (255, 212, 0 ), -- The color of the tag
  123. "GVIP", -- What to display in the tag
  124. color_white, -- The brackets color of the tag
  125. Color( 255, 255, 255 ) -- Chat color, or if you don't want a specific chat color, use 'false' (WILL NOT OVVERIDE /advert CHAT COLOR!)
  126. }
  127.  
  128. CUConfig.Tags["user"] = {
  129. Color(0, 63, 255),
  130. "V7N",
  131. color_white,
  132. false
  133. }
  134.  
  135. CUConfig.BracketLeft = "[" -- the bracket on the right of the tag. You can leave this blank
  136. CUConfig.BracketRight = "] " -- and this one like | as a seperator.
  137.  
  138. CUConfig.AdvertChatColor = Color( 0, 255, 238 ) -- Color For /advert chats (DarkRP only - just leave this alone if you don't use DarkRP)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement