VIPMode: such important colors

This commit is contained in:
dogan 2020-09-25 14:25:27 +02:00
parent db3d81dc68
commit cc71adc945

View File

@ -37,7 +37,7 @@ public Action WhoIsVIP(int client, int args)
} }
else 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; return Plugin_Handled;
} }
@ -89,7 +89,7 @@ public void PerformVIPSelection(bool reselect)
g_iVIPClient = PotentialVIPClient[GetRandomInt(0, PotentialVIPCount - 1)]; 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) if (!reselect)
{ {
@ -123,7 +123,7 @@ public Action PerformAdminVIPSelection(int client, int args)
} }
g_iVIPClient = PotentialVIPClient[GetRandomInt(0, PotentialVIPCount - 1)]; 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."); CReplyToCommand(client, "{purple}VIP Mode:{red} You have randomly chosen another VIP.");
} }