Well that's the problem, scripting the chats to the dummy window leaves me with a closed window more or less. Not an active window, IE there is no logging whether its set up, etc.
Below is my trigger.
<triggers>
<trigger
enabled="y"
match="<<Radio: *"
omit_from_output="y"
regexp="y"
send_to="14"
sequence="100"
>
<send>
local w = GetWorld ("chats") -- get "chat" world
if w then -- if present
for _, v in ipairs (TriggerStyleRuns) do
w:ColourTell (RGBColourToName (v.textcolour),
RGBColourToName (v.backcolour),
v.text)
end -- for each style run
w:Note ("") -- wrap up line
end -- world found
</send>
</trigger>
</triggers>
Below is an example of my output of my Dummy Window.
Welcome to MUSHclient version 4.40!
Written by Nick Gammon.
For information and assistance about MUSHclient visit our forum at:
http://www.gammon.com.au/forum/
<<Radio:LCT: Pub>> Ajax says, "Test test"
As you can see, it does exactly what its suppose to do. Except otherwise it might as well be a dead window with no logging or anything. ^.^ Which is why I'm curious how to log or if its possible, or maybe I'm just doing my dummy window incorrectly?