So what you're saying is you want to see the map behind all the messages or something?
One of these posts in the forum contain a piece code to show map as background, but I can't remember. Try checking many Custom Menu Scripts with that feature, as it will probably include something like that.
Then you need to find pieces of code that contain the opacity for windows and edit it or something...Like here...
class Window_Item < Window_Selectable
#--------------------------------------------------------------------------
# * Object Initialization
#--------------------------------------------------------------------------
def initialize
super(0, 64, 640, 416)
@column_max = 2
refresh
self.index = 0
# If in battle, move window to center of screen
# and make it semi-transparent
if $game_temp.in_battle
self.y = 64
self.height = 256
self.back_opacity = 160
end
end
I can't be anymore of a help, this is all just assumption, so my apologies if this post is as useless as ever. -_-;