Lets get his plugin started. Heres what I have. I don't think it will work but you can give it a try. It was last min created.
PHP Code:
#include <amxmodx>
#include <cstrike>
#define PLUGIN "Slay CT"
#define VERSION "1.0"
#define AUTHOR "Styles"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
/*
GHW Via aim for the event.
I haven't been around so im now restarting to code in pawn
*/
register_event("SendAudio","round_end","a","2=%!MRAD_ctwin","2=%!MRAD_rounddraw")
}
public round_end()
{
new player_num = get_playersnum()
new letsCount
while(letsCount < player_num)
{
if(is_user_alive(letsCount) && cs_get_user_team(letsCount) == CS_TEAM_CT)
{
user_silentkill(letsCount)
letsCount++
}
}
}