Так же присутствует исходник.
#include <amxmodx>
 
#define PLUGIN  "Round Info"
#define VERSION "1.0"
#define AUTHOR  "Stimul"
 
new g_Round;
 
public plugin_init()
{
        register_plugin(PLUGIN, VERSION, AUTHOR);
        
        register_logevent("RoundStart", 2, "1=Round_Start");
}
 
public RoundStart()
{
        new szMapName[34], iPlayers, iMaxPlayers;
        
        get_mapname(szMapName, charsmax(szMapName));
        iPlayers = get_playersnum();
        iMaxPlayers = get_maxplayers();
        g_Round ++;
        
        client_print(0, print_chat, "[Info] Раунд: %d | Карта: %s | Игроки: %s/%s", g_Round, szMapName, iPlayers, iMaxPlayers);
}