I'm trying to trigger a couple of rows, but it just wont work for me. What I want is to shorten down this text:
It might be followed by either of these:
.. or:
The result should be something like:
.. or:
So far, I'm having problem with getting a trigger that will react to that first part. It might be my regexp syntaxt, but I think it looks good. How can I go about doing this in MC?
So far:
You close your eyes momentarily and extend the range of your vision, seeking
out the presence of Xxx.It might be followed by either of these:
Though too far away to accurately perceive details, you see that Xxx is in the
Xxx Xxx... or:
You see that Xxx is at Xxx Xxx.The result should be something like:
(Farsee) Xxx is in the Xxx Xxx.. or:
(Farsee) Xxx is at Xxx XxxSo far, I'm having problem with getting a trigger that will react to that first part. It might be my regexp syntaxt, but I think it looks good. How can I go about doing this in MC?
So far:
<triggers>
<trigger
enabled="y"
match="^You close your eyes momentarily and extend the range of your vision\, seeking\nout the presence of (\w+)\."
name="subFarsee"
omit_from_log="y"
omit_from_output="y"
regexp="y"
send_to="12"
sequence="100"
>
<send>world.Note ("Triggered!")</send>
</trigger>
</triggers>