19.06.2010, 16:36
Title says all, how can i do this?
for(new i=0;i<MAX_OBJECTS;i++)
{
DestroyObject(i);
}
|
Originally Posted by DJDhan
And if you aren't using a streamer, I don't see why this shouldn't work :
Код:
for(new i=0;i<MAX_OBJECTS;i++)
{
DestroyObject(i);
}
|
for(new i=0; i<MAX_OBJECTS; i++)
{
DestroyObject(i);
}
for(new i=0; i<MAX_VEHICLES; i++)
{
DestroyVehicle(i);
}
and DJDhan
|
Originally Posted by FuTuRe`
and for vehicles?
![]() |
for(new i=0; i<MAX_VEHICLES;i++)
{
DestroyVehicle(i);
}

)