30.12.2014, 18:31
i was having this problem just yesterday with randomly vehicles spawning in AIR and i have just 1 vehicle
you need to understand this one
You're telling hem I = 0 and he'll start from ZERO to ++ Times non stop, directly that's waht you're doing here SendClientMessage(i, color, string);
so as PowerPC603 says , use normal send client message instead of doing this.
Good luck
you need to understand this one
PHP код:
forward PaintMessage(color, string[]);
public PaintMessage(color, string[])
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(InPaintball[i] == 1)
{
SendClientMessage(i, color, string);
}
}
}
}
so as PowerPC603 says , use normal send client message instead of doing this.
Good luck