The NakedMud Tutorial :: Cloning Rooms
rcopy
It is sometimes desirable to have a series of near-homogenous rooms connected to each other. For instance, when building a long city street, or a uniform wilderness. NakedMud has a command for the quick generation of multiple rooms that all inherit from a single parent. Here is an example:
> rcopy mainstreet_abstr mainstreet 8
You create 8 new instantiations of mainstreet_abstr@moonhaven.

> rlist
 Key                     Parents                                       Abstract 
--------------------------------------------------------------------------------
 mainstreet_abstr        generic_room@templates                             yes
 mainstreet01            mainstreet_abstr                                    no
 mainstreet02            mainstreet_abstr                                    no
 mainstreet03            mainstreet_abstr                                    no
 mainstreet04            mainstreet_abstr                                    no
 mainstreet05            mainstreet_abstr                                    no
 mainstreet06            mainstreet_abstr                                    no
 mainstreet07            mainstreet_abstr                                    no
 mainstreet08            mainstreet_abstr                                    no
rcopy will create a series of n non-abstract rooms that all inherit from a specified parent. It will not connect them in any way, so you can structure them as you desire with digging and room edit.