From cb89a9b5f3cdb1eef08a5ca319768f838dd637fa Mon Sep 17 00:00:00 2001 From: Dogan Date: Wed, 29 May 2019 19:02:39 +0200 Subject: [PATCH] ConnectAnnounceNewPlayers: change chat color --- ConnectAnnounce/scripting/ConnectAnnounceNewPlayers.sp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ConnectAnnounce/scripting/ConnectAnnounceNewPlayers.sp b/ConnectAnnounce/scripting/ConnectAnnounceNewPlayers.sp index 32e5a600..2d606568 100644 --- a/ConnectAnnounce/scripting/ConnectAnnounceNewPlayers.sp +++ b/ConnectAnnounce/scripting/ConnectAnnounceNewPlayers.sp @@ -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); } }