Quote:
Originally Posted by 2reason2kill
i saw somting like
why is it number 33?
is it same?
|
That is a single dimension array containing 33 cells. 33 is used most often when it will be index by player entity index and there are at most 32 players in a server at any given time.
So, in a function they can retrieve a number stored for that person:
PHP Code:
public saycommand(id)
{
client_print(id, print_chat, "Your team is %d", g_team[id])
}
If you look at other plugins you will see that it is used often and you will see for what they use it for.
__________________