21.05.2015, 12:17
I wonder though, what would be faster/more efficient, nr 1 or nr 2?
Nr 1:
Nr 2:
Or what if you'd divide it by 3, or 4, and send 3 or 4 sendclientmessages per loop?
Nr 1:
PHP код:
for( new i = 0; i < 100; i++ )
{
SendClientMessageToAll( -1, " " );
}
PHP код:
for( new i = 0; i < 50; i++ )
{
SendClientMessageToAll( -1, " " );
SendClientMessageToAll( -1, " " );
}