Quote:
Originally Posted by Ataros
If you do not change map you do not have to use battle stop command. Just destroy all unnecessary actors of the previous mission with a script and load new mission.
|
Are you able to supply a script to destroy all actors please. I'm guessing it will be something like...
using maddox.game.world;
public void DestroyAllActors()
{
for each AiActor a in maddox.game.world
{
a.destroy();
}
}