From cc71adc9457eac2769f401b9d1a135aa73d6da97 Mon Sep 17 00:00:00 2001 From: dogan Date: Fri, 25 Sep 2020 14:25:27 +0200 Subject: [PATCH] VIPMode: such important colors --- _VIPMode/scripting/VIPMode.sp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_VIPMode/scripting/VIPMode.sp b/_VIPMode/scripting/VIPMode.sp index 12ee8c07..e102b809 100644 --- a/_VIPMode/scripting/VIPMode.sp +++ b/_VIPMode/scripting/VIPMode.sp @@ -37,7 +37,7 @@ public Action WhoIsVIP(int client, int args) } else { - CReplyToCommand(client, "{purple}VIP Mode:{red} %N is the current VIP! Protect him.", g_iVIPClient); + CReplyToCommand(client, "{purple}VIP Mode:{red} {white}%N{red} is the current VIP! Protect him.", g_iVIPClient); } return Plugin_Handled; } @@ -89,7 +89,7 @@ public void PerformVIPSelection(bool reselect) g_iVIPClient = PotentialVIPClient[GetRandomInt(0, PotentialVIPCount - 1)]; - CPrintToChatAll("{purple}VIP Mode:{red} %N is the new VIP! Protect him.", g_iVIPClient); + CPrintToChatAll("{purple}VIP Mode:{red} {white}%N{red} is the current VIP! Protect him.", g_iVIPClient); if (!reselect) { @@ -123,7 +123,7 @@ public Action PerformAdminVIPSelection(int client, int args) } g_iVIPClient = PotentialVIPClient[GetRandomInt(0, PotentialVIPCount - 1)]; - CPrintToChatAll("{purple}VIP Mode:{red} %N is the new VIP! Protect him.", g_iVIPClient); + CPrintToChatAll("{purple}VIP Mode:{red} {white}%N{red} is the current VIP! Protect him.", g_iVIPClient); CReplyToCommand(client, "{purple}VIP Mode:{red} You have randomly chosen another VIP."); }