So I have what I thought would be an easy task mostly just frustrating me to death so hopefully someone will be kind enough to point me in the right direction here...
I took the chat capture miniwindow plugin and wanted to use it to capture some data between two tags.
Now, sure enough MAP_START and MAP_END are ommited, but not sent to the miniwindow. What should be captured is never sent to the miniwindow either, however if I just go in and set it from enable="n" to "y" it is sent to the miniwindow exactly how I want it. What am I missing here?
I took the chat capture miniwindow plugin and wanted to use it to capture some data between two tags.
<trigger
enabled="y"
match="\%MAP\_START\%$"
regexp="y"
send_to="12"
omit_from_output="y"
sequence="100"
>
EnableTrigger("status", true)
</trigger>
<trigger
enabled="n"
name="status"
match="*"
script="chats"
omit_from_output="y"
sequence="10"
></trigger>
<trigger
enabled="y"
match="\%MAP\_END\%$"
regexp="y"
send_to="12"
omit_from_output="y"
sequence="5"
>
EnableTriggerGroup("status", false)
</trigger>
Now, sure enough MAP_START and MAP_END are ommited, but not sent to the miniwindow. What should be captured is never sent to the miniwindow either, however if I just go in and set it from enable="n" to "y" it is sent to the miniwindow exactly how I want it. What am I missing here?