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); } }