Code:
// [...]
new CsTeams:team = cs_get_user_team(id);
if(team == CS_TEAM_CT && cs_get_user_shield(id))
{
engclient_cmd(id,"weapon_shield","drop") // I think?
return PLUGIN_CONTINUE
}
// [...]
Btw, there's no need to check if he's on the Terrorist team so you can get rid of this:
Code:
if(cs_get_user_team(id) == CS_TEAM_T)
{
return PLUGIN_HANDLED
}
__________________