View Single Post
bongotrommler
Senior Member
Join Date: Feb 2013
Location: GG-Elite.Net
Old 07-08-2020 , 07:55   Re: [Source 2009, CS:GO] Stamm 2.28 - VIP Level Ranking
Reply With Quote #1912

could you try this:

Code:
// Here you can define the available colors and tags.
//
// Colors are defined by a color name, a hex string representing the color and a block on that a VIP get that color.
// Blocks have to be defined in the stamm_chatcolors.txt.
// You can generate colors here: http://hexcolorgenerator.com/
//
// The second part are the tags.
// They are defined by a tag name and a block on that a VIP get that tag.
//
"chatcolors"
{
	"colors"
	{
		// This is the name of the color
		"blue"
		{
			// This is the hex string of the color
			"color"     "99CCFF"
			
			// This is the name of the block on that a VIP get the color
			"block"     "11"
		}
		
		"beige"
		{
			"color"     "F5F5DC"
			"block"     "11"
		}
		
		"green"
		{
			"color"     "3EFF3E"
			"block"     "12"
		}
		"lime"
		{
			"color"     "00FF00"
			"block"     "12"
		}
		
		"orange"
		{
			"color"     "FFA500"
			"block"     "13"
		}
		
		"pink"
		{
			"color"     "FFC0CB"
			"block"     "14"
		}
		
		"silver"
		{
			"color"     "C0C0C0"
			"block"     "14"
		}
		
		"yellow"
		{
			"color"     "FFFF00"
			"block"     "14"
		}
		
		"white"
		{
			"color"     "FFFFFF"
			"block"     "15"
		}
	}
	
	"tags"
	{
		"Iron"			"11"
		"Bronze"		"11"
		"Silver"		"12"
		"Gold"			"12"
		"VIP"			"13"
		"Platinum"		"13"
		"Diamond"		"14"
		"Master"		"14"
		"Grand Master"	"15"
		"John Wick"		"15"		
	}
}

Last edited by bongotrommler; 07-08-2020 at 07:55. Reason: bbcode
bongotrommler is offline