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