How can i set up a trigger that would automatically ignore certain people when they log on and start talking
say
Joe gossips, blah blah
Joe says, blah blah
joe states, blah blah
Then the trigger turns off so they stay ignored while im on..
you can use a regexp trigger made something like the following...
^NAME (gossips|says|states)\, (.*?)$
and set it to omit from output, just put the name of the person in place of the NAME.
This is a "dirty" fix, but a possible solution none the less.
-Onoitsu2
Can you post the exact trigger you used?
http://www.mushclient.com/copying
Also some exact lines of output from the MUD (copy and paste).
I got it working i needed a ' in it
^NAME (gossips|says|states)\, '(.*?)$