Wow, I seem to be asking a lot of things lately!

Ok, I have a new problem, is it possible to load every map in the game at the same time, and call Plans and Sprite Rules all at the same time?
I don't need to render the maps, I just need to call the rules and plans for each map and each sprite on the map.
But for clarity here's what I'm trying to do.
Each map has a sprite called SaveGame Handler.
I have a network game, and my game uses the SaveGame slots to save each map. There's a host and a client.
The host and client code works, fine.
The host needs to run every map at the same time (It don't want to render each map at the same time, I understand that would make the computer unresponsive I just need to run all sprite rules and plans), and call the rules of SaveGame Handler, and the map plans.
When a new player tries to go to a new map, I need
the client to send a request to a server, which tells the host to call a rule on SaveGame Handler to save the specified map to the specified savegame file (Example.. 1.sav is the savegame of the 1st map, 2.sav is the savegame of the second map).
Now, I have everything else done, the server and client, but the only thing I'm asking for help is
What code would I need, to run all (or specified) map's plans, and all sprite rules on the certain map at the same time, without rendering the maps?
I tried exporting the plans code and sprite's code to my clipboard, and tried to create a custom code object that would handle it, but I couldn't get that to work.