#1
|
|||
|
|||
Sending channels to another window
I\'d like to send all channels to another window.
I found the script below on the zmud forum, any know enough about zmud to tweak this pattern for Nodeka? Thanks, Aden Code:
#VAR comms {tell|say|gossip|chat|yell|shout|whisper} {tell|say|gossip|chat|yell|shout|whisper} {Windoze} This is the variable of keywords of your channels, add/remove as you see fit. #TRIGGER {^* {@comms}*: \"%*\"$} {#CAP 1 Tells} {Windoze} 517 #TRIGGER {^* {@comms}*:$ \"%*\"$} {#CAP 2 Tells} {Windoze} 517 #TRIGGER {^* {@comms}*:$ \"%*$ %*\"$} {#CAP 3 Tells} {Windoze} 517 #TRIGGER {^* {@comms}*:$ \"%*$ %*$ %*\"$} {#CAP 4 Tells} {Windoze} 517 #TRIGGER {^* {@comms}*:$ \"%*$ %*$ %*$ %*\"$} {#CAP 5 Tells} {Windoze} 517 #TRIGGER {^* {@comms}*:$ \"%*$ %*$ %*$ %*$ %*\"$} {#CAP 6 Tells} {Windoze} 517 |
#2
|
||||
|
||||
Re:Sending channels to another window
The chat script in JMC uses perl regular expression, that may help you in what you seek.
Code:
var global = /^(\\[ .* (gossip(s)?|auction(s)?|sing(s)?|auction(s)?|warn(s)?|newbie(s)?|yell(s)?|shout(s)?) \\]:|\\[\\*\\] .* flame(s)? \\[\\*\\]) \'.*\'$/; var local = /^.* say(s)?, \'.*\'$/; var system = /^## .*[\\.|!]+?$/; var tells = /^.* tell(s)? .*, \'.*\'$/; var misc = /^\\[ .* \\]: \'.*\'$/; var guard = /^\\<<.*>>(:)? \'.*\'$/; var clan = /^\\[ >>> .* <<< \\]/; |
#3
|
|||
|
|||
Re:Sending channels to another window
I\'ve found using Zmud that putting all of them in a single extra window keeps it just as difficult to see what\'s going on, honestly. You\'ll miss just as much with the scroll with the way Zmud is laid out. I\'d suggest multiple tabbed windows for things like globals, then another for tells and groups.
|
|
|