zMUD offfers a plethora of functions for working with the mapper. The following script will check for similar room name and room descriptions in other rooms in the same zone.
#TRIGGER {Exits:} {
#LOOP 0, %eval(%numrooms-1) {
#IF ((%i <> %roomnum) & (%roomname(%i)=%roomname(%roomnum)) & (%roomdesc(%i)=%roomdesc(%roomnum))) {
#SAY This room has a name and description similar to room %roomnum~.
}
}
}
I've set it to trigger off of the Exits line for the room.
Troubadour