So I'm trying to set up a window to pull a certain channel of chat to a blank world set up beside my main one using Nick's chat redirect plugin, but I keep getting an error on the line with the regex line. Here's the trigger portion where they are.
<triggers>
<trigger
enabled="y"
match="^\(Party\)\: (.+?) says\, \"(.*?)\"$"
omit_from_output="y"
regexp="y"
script="redirect"
sequence="100"
>
</trigger>
<trigger
enabled="y"
match="^\(Party\)\: You say\, \"(.*?)\"$"
omit_from_output="y"
regexp="y"
script="redirect"
sequence="100"
>
</trigger>
</triggers>
It's supposed to match:
(Party): Person says, "something"
(Party): You say, "something"
If anyone could point out what I'm doing wrong, I will be very appreciative.
<triggers>
<trigger
enabled="y"
match="^\(Party\)\: (.+?) says\, \"(.*?)\"$"
omit_from_output="y"
regexp="y"
script="redirect"
sequence="100"
>
</trigger>
<trigger
enabled="y"
match="^\(Party\)\: You say\, \"(.*?)\"$"
omit_from_output="y"
regexp="y"
script="redirect"
sequence="100"
>
</trigger>
</triggers>
It's supposed to match:
(Party): Person says, "something"
(Party): You say, "something"
If anyone could point out what I'm doing wrong, I will be very appreciative.