#include <sourcemod>
int g_iRounds = 0;
public void OnPluginStart() {
HookEvent("round_start", Event_RoundStart);
}
public Action Event_RoundStart(Handle event, char[] name, bool bDontBroadcast) {
g_iRounds++;
switch(g_iRounds) {
case 1: PrintToChatAll("День 1 TEXT")...