im terorist and i can kill the CT, but he not me
i want ct can kill t, and t kill ct
Code:
public Ham_Touch_Grenade_Pre( iEntity, id )
{
if( g_iCurrentGame == GAME_ANGRYBIRDS )
{
static i_owner
i_owner = pev(iEntity, pev_owner)
if(is_user_alive(id) && cs_get_user_team(i_owner) == CS_TEAM_T && cs_get_user_team(id) == CS_TEAM_CT)
{
ExecuteHamB(Ham_Killed, id, i_owner, 0)
}
else remove_entity(iEntity)
}
}