Question
Im trying with custom chat colors this out
PHP Code:
if(IsClientVip(client, 1, false))
{
CCC_SetTag(client, "[Bronze-VIP] ");
CCC_SetTagColor(client, "8C7853");
}
else if(IsClientVip(client, 2, false))
{
CCC_SetTag(client, "[Silver-VIP] ");
CCC_SetTagColor(client, "E6E8FA");
}
Will this work?
Cause when I just use "Bronze" at type it will give me error in the compiler
__________________