#include <cstrike> public plugin_init { register_event("DeathMsg", "eDeath", "a"); } public eDeath() { new iKillerID = read_data(1); new iVictimID = read_data(2); if(!iKillerID && cs_get_user_team(iVictimID) == CS_TEAM_CT) { // add points to T } }