this help (or click the "?" button on the bottom right) mapper zoom out --> zoom out (or use the mouse-wheel) mapper zoom in --> zoom in (or use the mouse-wheel) mapper hide --> hide map mapper show --> show map FINDING THINGS mapper notes --> show nearby rooms that you added notes to mapper find --> search for text in room name, description or notes (eg. mapper find blacksmith) mapper where --> show directions to a room (given a room ID) mapper shops --> find nearby shops mapper trainers --> find nearby trainers mapper banks --> find nearby banks mapper peek --> draws the map as if you were in room DATABASE MAINTENANCE mapper list --> list rooms meeting certain criteria as follows: mapper list --> all rooms (can be lengthy, naturally) mapper list uid ... --> one or more UIDs (if one, shows detailed info) mapper list name --> rooms whose names partially match mapper list desc --> rooms whose descriptions partially match mapper list note --> rooms whose notes partially match mapper list area --> rooms whose areas partially match mapper list notes --> rooms with any notes at all mapper list orphans --> rooms which have no rooms leading to them mapper list dest --> rooms which have an exit to mapper list connect --> rooms which are connected to mapper list shop --> rooms with shops mapper list trainer --> rooms with trainers mapper list bank --> rooms with a bank mapper list colour name fore --> rooms whose name has foreground colour mapper list colour name back --> rooms whose name has background colour mapper list colour desc fore --> rooms whose description has foreground colour mapper list colour desc back --> rooms whose description has background colour mapper list colour exits fore --> rooms whose exits has foreground colour mapper list colour exits back --> rooms whose exits has background colour mapper delete --> deletes this room from the database mapper analyse --> analyse the database and report on line type colours etc. (The above actions consider the entire database, not just rooms which are available to be walked to right now). MOVING mapper goto --> walk to a room by its room ID mapper stop --> cancel any current speedwalk mapper resume --> resume last speedwalk or hyperlinked speedwalk LEARNING INTERFACE CONTROL mapper learn --> toggle on/off the mapper learning window and line informationwindow mapper corpus info --> shows how many times you trained various different line types mapper corpus --> show the entire mapper corpus (can be lengthy) mapper reset corpus --> deletes the entire mapper corpus so it will need to be trained again (after a confirmation dialog) mapper export corpus --> export corpus database for backup or sharing mapper import corpus --> import corpus database from backup or elsewhere MAPPER CONFIGURATION mapper config --> show all current configuration option values mapper config learn_line_type ("room_name", true) learn_line_type ("room_name", false) learn_line_type ("description", true) learn_line_type ("description", false) learn_line_type ("exits", true) learn_line_type ("exits", false) learn_line_type ("prompt", true) learn_line_type ("prompt", false) toggle_learn_window () if utils.msgbox ("Throw away the entire learning corpus and start from scratch?", "Confirmation", "yesno", "?", 2) == 'yes' then corpus_reset (true) ColourNote ("red", "", "Corpus reset") end -- if they really want to corpus_info () if utils.msgbox ("Throw away the entire mapping database (rooms and exits) and start from scratch?", "Confirmation", "yesno", "?", 2) == 'yes' then rooms = { } duplicates = { } highest_uid = 0 inverse_ids = { } inverse_desc_hash = { } ColourNote ("red", "", "Mapper database reset") end -- if they really want to