if((frag_attacker != frag_target) && (IS_PLAYER(frag_attacker)))
{
- if(frag_target.ballcarried) { // add to amount of times killing carrier
+ if(frag_target.ballcarried) // add to amount of times killing carrier
+ {
GameRules_scoring_add(frag_attacker, KEEPAWAY_CARRIERKILLS, 1);
if(autocvar_g_keepaway_score_bckill) // add bckills to the score
GameRules_scoring_add(frag_attacker, SCORE, autocvar_g_keepaway_score_bckill);
}
else if(!frag_attacker.ballcarried)
+ {
if(autocvar_g_keepaway_noncarrier_warn)
Send_Notification(NOTIF_ONE_ONLY, frag_attacker, MSG_CENTER, CENTER_KEEPAWAY_WARN);
+ }
if(frag_attacker.ballcarried) // add to amount of kills while ballcarrier
GameRules_scoring_add(frag_attacker, SCORE, autocvar_g_keepaway_score_killac);
M_ARGV(4, float) *= autocvar_g_keepaway_ballcarrier_selfdamage;
M_ARGV(6, vector) *= autocvar_g_keepaway_ballcarrier_selfforce;
}
- else // damage done to other ballcarriers
+ else // damage done to other players (ballcarriers and noncarriers)
{
M_ARGV(4, float) *= autocvar_g_keepaway_ballcarrier_damage;
M_ARGV(6, vector) *= autocvar_g_keepaway_ballcarrier_force;
}
}
- else // if the attacker is a noncarrier
+ else if (!frag_target.ballcarried) // if the target is a noncarrier
{
if(frag_target == frag_attacker) // damage done to yourself
{
team_has_ball = true;
break;
});
- if(frag_target.ballcarried) { // add to amount of times killing carrier
+ if(frag_target.ballcarried) // add to amount of times killing carrier
+ {
GameRules_scoring_add(frag_attacker, TKA_CARRIERKILLS, 1);
if(autocvar_g_tka_score_bckill) // add bckills to the score
GameRules_scoring_add_team(frag_attacker, SCORE, autocvar_g_tka_score_bckill);
frag_damage *= autocvar_g_tka_ballcarrier_selfdamage;
frag_force *= autocvar_g_tka_ballcarrier_selfforce;
}
- else // damage done to other ballcarriers
+ else // damage done to other players (ballcarriers and noncarriers)
{
frag_damage *= autocvar_g_tka_ballcarrier_damage;
frag_force *= autocvar_g_tka_ballcarrier_force;
}
}
- else // if the attacker is a noncarrier
+ else if (!frag_target.ballcarried) // if the target is a noncarrier
{
if(frag_target == frag_attacker) // damage done to yourself
{