Bug.
Imagine in the server are 11 players and get_pcvar_num(cvar_tickets) = 2
It will print always when kill : "Preds Remaining : 21,then in second kill 41, in third global kill 60 etc...
I don't need to "+" :/ So how to fix
PHP Code:
public Ev_RoundRestart()
{
for (new id = 1; id <= g_maxplayers; id++)
{
g_Tickets[id] = get_pcvar_num(cvar_tickets)
}
}
PHP Code:
cvar_tickets = register_cvar("amx_tickets", "2") // Give X tickets on round start.