Clear object from filterscript only
#1

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);
	}
}
Reply


Messages In This Thread
Clear object from filterscript only - by Penguin1997 - 07.09.2016, 15:39
Re: Clear object from filterscript only - by Vince - 07.09.2016, 16:35
Re: Clear object from filterscript only - by Konstantinos - 07.09.2016, 16:40
Re: Clear object from filterscript only - by Penguin1997 - 07.09.2016, 16:54
Re: Clear object from filterscript only - by Konstantinos - 07.09.2016, 16:57
Re: Clear object from filterscript only - by Penguin1997 - 07.09.2016, 17:42
Re: Clear object from filterscript only - by Penguin1997 - 08.09.2016, 07:36
Re: Clear object from filterscript only - by Konstantinos - 08.09.2016, 09:36
Re: Clear object from filterscript only - by Penguin1997 - 08.09.2016, 11:22
Re: Clear object from filterscript only - by Konstantinos - 08.09.2016, 11:27

Forum Jump:


Users browsing this thread: 1 Guest(s)