12.09.2014, 15:54
Hello.
If I have 500 object, 250 in virtual world ID 0 and 250 in Virtual world ID 1
Is it possible to remove objects which are in virtual world ID 1 without having to define them all and use normal way ?
I've tried this code
but that simply removes all objects. :/
If I have 500 object, 250 in virtual world ID 0 and 250 in Virtual world ID 1
Is it possible to remove objects which are in virtual world ID 1 without having to define them all and use normal way ?
I've tried this code
Код:
for(new i; i<MAX_OBJECTS; i++) { if(IsValidObject(i)) DestroyObject(i); }