• TTT Ranks
    0 replies, posted
Adds a rank column to the scoreboard, supports ULX ranks and custom cosmetic ranks. Also tags chat messages with ULX rank. [url]https://github.com/Domos123/TTTRanks[/url] Super simple configuration is as such: [CODE] local Custom = { ["<steam id here>"] = {color = Color(79, 148, 205), text = "Coder"}, -- Example 1, use these comments to remember usernames ["<another steam id"] = {color = Color(210, 10, 10), text = "Some Donator"}, -- Example 2 } local Ranks = { ["Owner"] = {color = Color(142, 202, 209), text = "Owner"}, ["superadmin"] = {color = Color(193, 83, 237), text = "S. Admin"}, ["admin"] = {color = Color(0, 57, 158), text = "Admin"}, ["mod"] = {color = Color(0, 141, 160), text = "Mod"}, ["Trial-Mod"] = {color = Color(0, 155, 127), text = "Trial Mod"}, ["VIPPlus"] = {color = Color(247, 28, 255), text = "VIP +"}, ["VIP"] = {color = Color(251, 145, 255), text = "VIP"}, ["trusted"] = {color = Color(42, 168, 0), text = "Trusted"}, ["regular"] = {color = Color(201, 201, 201), text = "Regular"}, } [/CODE]
Sorry, you need to Log In to post a reply to this thread.