Hello, please explain me this part of miscstats code:
Code:
g_streakKills[victim][1]++
g_streakKills[victim][0] = 0
if (!selfkill)
{
g_streakKills[killer][0]++
g_streakKills[killer][1] = 0
new a = g_streakKills[killer][0] - 3
if ((a > -1) && !(a % 2))
{
new name[32]
get_user_name(killer, name, 31)
if ((a >>= 1) > 6)
a = 6
g_streakKills[id][0] is Kill count Correct?
g_streakKills[id][1] is Death count?
if yes, this i understand, but i dont understand this:
if ((a > -1) && !(a % 2))
and
if ((a >>= 1) > 6)
Thanks!