Hello, I'm using the HAMSANDWICH include for checking the number of jumps a player do.
I use that registerham -
PHP Code:
RegisterHam(Ham_Player_Jump, "player", "Fwd_JumpCount", 1)
and this is my "Fwd_JumpCount" public -
PHP Code:
public Fwd_JumpCount ( client )
{
g_jumps[client]++
Check_Ach(client)
}
Every time I jump, it adds 7 to the variable j_jumps[ client ].
Help please

Btw, this is my variable -
PHP Code:
new g_jumps[33];