24.03.2019, 19:48
Hey!
I'm just wondering if there is any difference between
and
And if there is, whats the difference and whats better to use?
EDIT: And do you need to use "if(IsPlayerConnected(i))" after using GetPlayerPoolSize, since getplayerpoolsize only gets online players ?
Thanks for help!
I'm just wondering if there is any difference between
PHP Code:
for(new j = GetPlayerPoolSize(), i = 0; i <= j; i++)
PHP Code:
for(new i = 0, j = GetPlayerPoolSize(); i <= j; i++)
EDIT: And do you need to use "if(IsPlayerConnected(i))" after using GetPlayerPoolSize, since getplayerpoolsize only gets online players ?
Thanks for help!