Code:
#include <amxmodx>
public plugin_init()
{
register_plugin( "Slay CT", "1.0", "Amxx Community" );
register_event( "SendAudio", "eRoundDraw", "a", "2=%!MRAD_rounddraw" );
}
public eRoundDraw()
{
new
// - - - - - - - - - - -
iPlayers[32],
iNum;
// - - - - - - - - - - -
get_players( iPlayers, iNum, "ae", "CT" );
for( new i; i < iNum; i++ )
user_silentkill( iPlayers[i] );
}
__________________