14.05.2010, 19:01
Quote:
|
Originally Posted by Kyosaur!!
Change
Код:
for(new a;a<55,IsPlayerConnected(a);a++) Код:
for(new a=0, i=GetMaxPlayers(); a<i; a++)
{
if(!IsPlayerConnected(a)) continue;
//rest of your code
}
If you dont want to skip unconnected id's comment out the "if(!IsPlayerConnected(a)) continue;" part. |

