#include < amxmodx >
#include < amxmisc >
#include < fun >
#include < fakemeta >
#include < cstrike >
#include < hamsandwich >
enum Color
{
	NORMAL = 1, // clients scr_concolor cvar color
	GREEN, // Green Color
	TEAM_COLOR, // Red, grey, blue
	GREY, // grey
	RED, // Red
	BLUE, // Blue
}
 
new TeamName[][] = 
{
	"",
	"TERRORIST",
	"CT",
	"SPECTATOR"
}
 
ColorChat(id, Color:type, const msg[], {Float,Sql,Result,_}:...)
{
	static message[256];
 
	switch(type)
	{
		case NORMAL: // clients scr_concolor cvar color
		{
			message[0] = 0x01;
		}
		case GREEN: // Green
		{
			message[0] = 0x04;
		}
		default: // White, Red, Blue
		{
			message[0] = 0x03;
		}
	}
 
	vformat(message[1], 251, msg, 4);
	message[192] = '^0';
 
	static team, ColorChange, index, MSG_Type;
 
	if(id)
	{
		MSG_Type = MSG_ONE;
		index = id;
	} else {
		index = FindPlayer();
		MSG_Type = MSG_ALL;
	}
 
	team = get_user_team(index);
	ColorChange = ColorSelection(index, MSG_Type, type);
 
	ShowColorMessage(index, MSG_Type, message);
 
	if(ColorChange)
	{
		Team_Info(index, MSG_Type, TeamName[team]);
	}
}
 
ShowColorMessage(id, type, message[])
{
	message_begin(type, get_user_msgid("SayText"), _, id);
	write_byte(id)		
	write_string(message);
	message_end();	
}
 
Team_Info(id, type, team[])
{
	message_begin(type, get_user_msgid("TeamInfo"), _, id);
	write_byte(id);
	write_string(team);
	message_end();
 
	return 1;
}
 
ColorSelection(index, type, Color:Type)
{
	switch(Type)
	{
		case RED:
		{
			return Team_Info(index, type, TeamName[1]);
		}
		case BLUE:
		{
			return Team_Info(index, type, TeamName[2]);
		}
		case GREY:
		{
			return Team_Info(index, type, TeamName[0]);
		}
	}
 
	return 0;
}
 
FindPlayer()
{
	static i;
	i = -1;
 
	while(i <= get_maxplayers())
	{
		if(is_user_connected(++i))
		{
			return i;
		}
	}
 
	return -1;
}
new szerverprefix[] = "Korvegi Zene"
 
new const zene_cimek [ ] [ ] =
{
"",
"Pressor Green - Monster",
"Chris Lawyer - Right on time (Remix)",
"Flux Pavilion - Gold Love",
"Sub Focus - Endorphins feat. Alex Clare",
"Tristam - Truth (Candyland Remix)",
"Datsik - Hold It Down feat. Georgia Murray"
};
public plugin_precache(){
precache_sound("korv/1.mp3")
precache_sound("korv/2.mp3")
precache_sound("korv/3.mp3")
precache_sound("korv/4.mp3")
precache_sound("korv/5.mp3")
precache_sound("korv/6.mp3")
} 
public plugin_init(){
register_plugin("K�rv�gi zene c�mmel","1.0", "DeRoiD")
register_event("SendAudio", "zene", "a", "2&%!MRAD_ctwin")
register_event("SendAudio", "zene", "a", "2&%!MRAD_terwin")
}
 
public zene(){
switch (random_num(1, 6)){
case 1 :{
client_cmd(0,"mp3 play sound/korv/1.mp3")
ColorChat(0,GREEN,"[%s]^x01 Cím: %s",szerverprefix, zene_cimek[ 1 ] )
}
case 2 :{
client_cmd(0,"mp3 play sound/korv/2.mp3")
ColorChat(0,GREEN,"[%s]^x01 Cím: %s",szerverprefix, zene_cimek[ 2 ] )
}
case 3 :{
client_cmd(0,"mp3 play sound/korv/3.mp3")
ColorChat(0,GREEN,"[%s]^x01 Cím: %s",szerverprefix, zene_cimek[ 3 ] )
}
case 4 :{
client_cmd(0,"mp3 play sound/korv/4.mp3")
ColorChat(0,GREEN,"[%s]^x01 Cím: %s",szerverprefix, zene_cimek[ 4 ] )
}
case 5 :{
client_cmd(0,"mp3 play sound/korv/5.mp3")
ColorChat(0,GREEN,"[%s]^x01 Cím: %s",szerverprefix, zene_cimek[ 5 ] )
}
case 6 :{
client_cmd(0,"mp3 play sound/korv/6.mp3")
ColorChat(0,GREEN,"[%s]^x01 Cím: %s",szerverprefix, zene_cimek[ 6 ] )
}
}
}
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang2070\\ f0\\ fs16 \n\\ par }
*/