Hello Guys !

. i've made a plugin that shows top 3 Killers in every round with hud ( " i didn't test it " ) but I figured that the function of checking kills is useless knowing that the function that i have use is get_user_frags() !
Code:
public Hook_Death(){
new kill,vic,TopKills;
kill = read_data(1)
vic = read_data(2)
TopKills = get_user_frags(kill);
if (kill == vic){
return 1;
}
switch(TopKills)
{
case 0..2: g_Kills[kill] += 1
case 3..5: g_Kills[kill] += 2
case 6..10: g_Kills[kill] += 3
}
return 0;
}