Okey, well, well.... seems I can not do that, my windowmanager (marco) thinks it is command to him.....
I deleted the sections in xml-file, put them in again, and then removed actor attribut. It all simply changes nothing. It is there but unselectable in Atlas and not there in the game.
The biggest part of the problem is calculating pathfinding and collisions between units. That's the main source of problems in all RTS games. And unfortunately, it has to be done in real time.
Still, precalculating AI decisions early on won't work. Game state changes so fast that plans become completely invalid beyond just a few seconds into the future. That early precomputation does zero to relieve late-game CPU strain, in fact, it does the exact opposite. Constant re-planning wastes processing cycles, massively complexifies the codebase, and drastically increases the risk of CPU throttling right when performance matters most.