setting a trigger for a logfile

Posted by Teeto on Tue 07 Feb 2006 03:52 AM — 2 posts, 10,800 views.

#0
<triggers>
<trigger
enabled="y"
ignore_case="y"
match="[CHAT] *"
send_to="6"
sequence="100"
>
</trigger>
</triggers>


this isn't working right the text is [CHAT] Teeto walks across the room

everything after the chat is variable though
Australia Forum Administrator #1
As the message probably said, you need to say *what* to send to the logfile. If you want the whole matching line, do this:


<triggers>
  <trigger
   enabled="y"
   ignore_case="y"
   match="[CHAT] *"
   send_to="6"
   sequence="100"
  >
  <send>%0</send>
  </trigger>
</triggers>