If I change from:
to
It seems to work (calls the chats function), but no longer omits from output. Am I doing it wrong?
<trigger
enabled="y"
match="^{chan ch=(?<channel>\w+)}(?<msg>.*)"
regexp="y"
script="chats"
omit_from_output="y"
sequence="100"
></trigger>
to
<trigger
enabled="y"
multi_line="y"
lines_to_match="2"
match="^{chan ch=(?<channel>\w+)}(?<msg>.*)$\n$"
regexp="y"
script="chats"
omit_from_output="y"
sequence="100"
></trigger>It seems to work (calls the chats function), but no longer omits from output. Am I doing it wrong?