ConnectAnnounceNewPlayers: change chat color

This commit is contained in:
Dogan 2019-05-29 19:02:39 +02:00
parent 623e340564
commit edd60d830c

View File

@ -123,14 +123,14 @@ public Action NewPlayerMessage(int client)
char sName[128];
GetClientName(client, sName, sizeof(sName));
CPrintToChatAll("{cyan}Player {midnightblue}%s {cyan}has just connected to an UNLOZE Server for the first time! Welcome!", sName);
CPrintToChatAll("{cyan}Player {blueviolet}%s {cyan}has just connected to an UNLOZE Server for the first time! Welcome!", sName);
if(g_cvServerType.IntValue >= 1 && g_cvServerType.IntValue <= 3)
{
CPrintToChat(client, "{cyan}Hi %s. Welcome to the {midnightblue}Unloze %s Server{cyan}! We hope you enjoy your stay here and add our server to your favorites. Make sure to check out our website at {midnightblue}www.unloze.com{cyan}.", sName, g_cServerMessage);
CPrintToChat(client, "{cyan}Hi %s. Welcome to the {blueviolet}Unloze %s Server{cyan}! We hope you enjoy your stay here and add our server to your favorites. Make sure to check out our website at {blueviolet}www.unloze.com{cyan}.", sName, g_cServerMessage);
}
else
{
CPrintToChat(client, "{cyan}Hi %s. Welcome to this {midnightblue}Unloze Server{cyan}! We hope you enjoy your stay here and add our server to your favorites. Make sure to check out our website at {midnightblue}www.unloze.com{cyan}.", sName);
CPrintToChat(client, "{cyan}Hi %s. Welcome to this {blueviolet}Unloze Server{cyan}! We hope you enjoy your stay here and add our server to your favorites. Make sure to check out our website at {blueviolet}www.unloze.com{cyan}.", sName);
}
}