Seperate Chat Window for MUD

Posted by Laurjelm on Fri 04 Jul 2003 07:45 AM — 2 posts, 11,130 views.

USA #0
I play AWW Mud, and people talk MUD wide a lot but I keep missing what they say. Is there a way for triggers to put all input beginning with [global into another window of ANY sort? This would be VERY helpful. If triggers can't do this, and I need scripting, It would be nice *if highly unlikely* if someone would post it here, because I know nothing about scripting in MUSH yet. Thanks!
Australia Forum Administrator #1
This is easy enough to do. Just make a trigger that matches on [global* and sends the entire line to "notepad-append".

They will then appear in a separate window.

However be warned that the window will eventually fill up and slow down. You might want to get rid of all of it from time to time.

To use it, just copy from below the line on this page, and then go into MUSHclient's trigger configuration window and click the Paste button.




<triggers>
  <trigger
   custom_colour="2"
   enabled="y"
   match="[global*"
   name="chats"
   send_to="5"
   sequence="100"
  >
  <send>%0</send>
  </trigger>
</triggers>