Thank you for such fast response !
I guess it was mostly about this?
PHP Code:
g_Kills[killer]++
What about ?
PHP Code:
new g_Kills[33]
I mean, what if someone, somehow gets more than that?
And thanks for kind words, trying to do my best
++
Found another problem, this time with HUD Message.
Since it didn't count killstreak at all I've changed it from:
PHP Code:
public showKillstreak(id)
{
set_hudmessage(0, 95, 245, 0.0, 0.0, 0, 0.0, 1.1, 0.1, 0.5, 15)
show_hudmessage(id, "Killstreak: %i", g_Kills)
}
to:
PHP Code:
public showKillstreak(id)
{
set_hudmessage(0, 95, 245, 0.0, 0.0, 0, 0.0, 1.1, 0.1, 0.5, 15)
show_hudmessage(id, "Killstreak: %i", g_Kills[killer])
}
Now it counts but whenever anyone builds its killstreak it shows up on my HUD Message.
(I kill = shows my kills, someone kills = show its kills)