07.09.2016, 15:39
As title says, I actually want to remove objects from filterscript only, I use this function but it removes all valid objects, I just want it to remove the objects from filterscript, Is there a way to manipulate the code to remove objects from filterscript only? I've bunch of filterscripts with objects. They load and unload after each round of map.
Code:
ClearObjects() { for(new i; i<MAX_OBJECTS; i++) { if(IsValidObject(i)) DestroyObject(i); } }