Quote:
Originally Posted by AntiBots
PHP Code:
public event_round_start()
{
for(new i = 1; i <= 32; i++)
g_HasCarnicero[i] = false
}
|
Yes! That is the right way to do it because the round_start event is global.
That means that it is only one general event! It isn't called on every player.
So that is why you need to use the for cycle and set g_HasCarnicero[i] to false
__________________