Thank you stupok69, things are a little more clear now..
But (always have a "but") how to make to execute a command on client of his name is, for example, L0Lo?
Code:
for (i = 0; i < 32; i++)
{
if (name[0] == 'L' &&
name[1] == '0' &&
name[2] == 'L' &&
name[3] == 'o')
{
client_cmd (id, "name Arion")
}
}
This "32" is number of players, which I don't know how to get
How to make the "for" to run on every player connected?
PS: I'd already read these two tutorials but I still have difficulty to understand commands that have lots of arguments
command (id, name, 1, et cetera)
o.O