13.10.2009, 05:04
What would be the best way to destroy a lot of objects at the same time?
As when you unload a FS the objects don't get deleted.
As when you unload a FS the objects don't get deleted.
for(new o = 0; o < MAX_OBJECTS; o++)
{
if(IsValidObject(o)) DestroyObject(o);
}
Originally Posted by Don Correlli
Make a loop at OnFilterScriptExit-callback?
pawn Код:
|