04.08.2010, 20:11
How would you destroy all objects onfsexit?
I have an array with 115 objects assigned to it, how, possibly would i delete them with a loop?
I tried
but it says the array is out of index bounds.
I have an array with 115 objects assigned to it, how, possibly would i delete them with a loop?
I tried
pawn Код:
for(new i = 0; i < Rocket[115]; i++)
{
DestroyDynamicObject(Rocket[i]);
}
return1;