Destroy All Objects?
#1

Is it possible to loop through all the objects made with CreateObject and destroy them?
Reply
#2

Yes.

pawn Код:
for(new i; i<MAX_OBJECTS; i++)
{
     if(IsValidObject(i))
          DestroyObject(i);
}
Reply
#3

thx!
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)