View Single Post
Yusochan
Member
Join Date: Sep 2021
Location: Algeria
Old 11-04-2021 , 11:51   Re: AMXX GAG Color Chat
Reply With Quote #17

Hmm yes but i do not see that u colored the chat, no ?

Put this at the end.
instead
PHP Code:
client_print(idprint_chat""); 
use this
PHP Code:
ColorChat(id"The text that u want to add"); 

Code:
stock ColorChat(const id, const input[], any:...) 
{
	new count = 1, players[32];
	static msg[191];
	vformat(msg, 190, input, 3);
	
	replace_all(msg, 190, "!g", "^4"); // Green
	replace_all(msg, 190, "!n", "^1"); // Yellow
	replace_all(msg, 190, "!t", "^3"); // Team
	
	if(id) players[0] = id;
	else get_players(players, count, "ch"); 
	{
		for(new i = 0; i < count; i++) 
		{
			if(is_user_connected(players[i])) 
			{
				message_begin(MSG_ONE_UNRELIABLE, MSGID_SayText, _, players[i]);
				write_byte(players[i]);
				write_string(msg);
				message_end();
			}
		}
	} 
}
__________________
<b>IP : <font color=Red>93.115.53.168:27017</font></b>
<b>Founder : <font color=Cyan>YusoChan-</font></b>

Last edited by Yusochan; 11-04-2021 at 11:52.
Yusochan is offline