Configure hextags.cfg - Hexer10/HexTags GitHub Wiki

By default you file will look like this:

//	HexTags - Hexah 
//	Configuration file.
//	
//	All the avaible colors are: https://goo.gl/VgAHbK (colorvariables supported).
//	Custom colors(DON'T MIX THEM):
//	    Put them at the "key" start.
//	1. {rainbow} -> Make every character follow the rainbow colors. Must be the only color and at the start of the string.
//	2. {random} -> Make every character random colored. Must be the only color and at the start of the string.
//	
//	NOTE: Using Custom colors the max message length is gonna be half (from 128 to 64)
//	
//	Every tag is selected with insertion order; for example if you place the "Default" selector before the "z" selector, even the players with the "z" flag will get the default tags. Nested tags have the same behavoir.
//	STEAM ID (SteamID) --> Can be STEAM_0 or STEAM_1 .
//	Gang --> Just put Gang as selector, this will target all the players with a gang ( https://goo.gl/YNY5YY ).
//	ADMIN GROUP (AdminGroup) --> It is selected only the first client group. It is required a '@' before the group name.
//	ADMIN FLAGS (AdminFlags) --> Allowed only if the client has any of the tags. It a '&' before the group name, or the selector length must be 1.
//	Warden --> A player is warden. - Warden( https://goo.gl/rXhZCt )/ MyJailBreak( https://goo.gl/NMvq2J )
//	Deputy --> A player is deputy. - MyJailBreak ( https://goo.gl/NMvq2J )
//	(TOTAL)ONLINE TIME (ActiveTime) --> This need mostactive( https://goo.gl/Jk4PWn ) to work. Required time in seconds to get the tags. The '#' before the time is needed.
//	RankMe --> Support for KentoRankme( https://goo.gl/UW6x81 ). Required score to get this tag. The '!' before the time is needed.
//	TEAM (Team) --> Tag for a certain team name. CSGO Team names: CT, Terrorist, Spectator. Get the current team name with: /getteam .
// 	NoPrime --> Need to SteamWorks to work ( https://goo.gl/hben3h ). Select only player that have not PrimeStatus in CSGO.
//	Bots/Humans -> "bot" to target only bots and "human" to target only bot players.
//	Default --> All players who don't match any other section.
//	
//	Params (only works from chat tags/colors): 
//	1. {time} --> Replaced with current time, format: HH:MM. This works only with ChatTags
//	2. {country} --> Replaced with player's country: XX (Country code 2 ex: IT, EN, US, ...). This work both with Score/Chat Tags.
//	3. {gang} --> Replaced with player's gang. ( https://goo.gl/YNY5YY )
//	4. {rmPoints} --> Replaced with player's rankme points. ( https://goo.gl/UW6x81 )
//	5. {rmRank} --> Replaced with player's rankme rank. ( https://goo.gl/UW6x81 )

All the text should put inside the HexTags sections:

"HexTags"
{
    "@Admin" //Example Admin Group
    {
	"ScoreTag"    "[Admin]" //The scoreboard-tag
        "ChatTag"     "{rainbow}[Admin]" //The chat-tag
	"ChatColor"   "{darkblue}" //The chat color
	"NameColor"   "{grey2}" //The name color
    }
    "a" //Example Admin Flag
    {
	"ScoreTag"    "[Res]"
	"ChatTag"     "{red}[Res]"
	"ChatColor"   "{rainbow}"
	"NameColor"   "{grey}"
    }
    "STEAM_0:0:138675850" //Example SteamID
    {
        "ScoreTag"    "[ADMIN]"
    }
}