Quote: the first two lines of the display show portions of my map rather than the roominfo
This is just a stylization in the plugin. You can remove the bit that goes
-- title rectangle
check (WindowRectOp (win, 2, 2, 2, -2, font_height * 2 + 10, title_colour))
check (WindowRectOp (win, 5, 2, 2, -2, font_height * 2 + 10, 5, 8))
Quote: Also it's not displaying the start and end lines of the map frame.
That's because the plugin is set up to catch but not show elements that are merely indicators of the start and end of the map. It only shows the stuff between those indicators. You'd have to edit function map_redirect to look like this if you want to show them...
-- map redirector
function map_redirect (name, line, wildcards, styles)
if name == "map_start" then
EnableTrigger ("multi_line_map", true) -- capture subsequent lines
map_lines = {}
max_width = 0
end
table.insert (map_lines, styles)
max_width = math.max (max_width, #line)
if name == "map_end" then
EnableTrigger ("multi_line_map", false) -- no more lines to go
Display_Map ()
end -- if
end -- function map_redirect
Quote: Also while Look and and move both display the same map with the same dimensions the map only catches the map when I do a look. when I do a move it only seems to rip my closing line of my map from the main screen. The one difference is on roommoves there is a colournote that is displayed before the map and seems to be breaking the trigger processing the map.
Then you'll need reconsider how your triggers work, I think. |