06.01.2014, 21:03
Hello.
I have a little question for You, but first of all I'll show You what I've got here:
And now, the question is:
- Is it going to destroy only objects which are created like this: CreateObject(objectid, ...); or all of them, including Dynamic objects, which are created like this: CreateDynamicObject(objectid, ...); ?
I have a little question for You, but first of all I'll show You what I've got here:
pawn Код:
for(new i; i<MAX_OBJECTS; i++)
{
if(IsValidObject(i))
DestroyObject(i);
}
- Is it going to destroy only objects which are created like this: CreateObject(objectid, ...); or all of them, including Dynamic objects, which are created like this: CreateDynamicObject(objectid, ...); ?