22.05.2015, 19:04
your variable cannot meet the conditions you put together in while
try
try
PHP код:
for (new a = 0; a <= 311; a++)
{
if ( a <= 101 || ( a>= 128 && a <= 280) || ( a >= 289 && a <= 299) )
{
AddPlayerClass(a, 2485.6213,-1665.0665,15, -1, 0, 0, 0, 0, 0, 0);
}
else
{
// others
}
}