I have found a couple errors, here are the fixes:
change lines 999-1002 from
Code:
else if(a == victim > 0 && (cvar == 2 || cvar == 3))
PrintToChat(victim, "[STK] %s", msg1);
else if(a == attacker > 0 && (cvar == 2 || cvar== 3))
PrintToChat(attacker, "[STK] %s", msg2);
to
Code:
else if(victim > 0 && victim == a && (cvar == 2 || cvar == 3))
PrintToChat(victim, "[STK] %s", msg1);
else if(attacker > 0 && attacker == a && (cvar == 2 || cvar== 3))
PrintToChat(attacker, "[STK] %s", msg2);
and in translations, under "Auto Forgave":
change the second "en" to "fr"