A recent update allowed triggers to pull from a variable list seperated by | indicators by using (@!list), but I don't see that it works with an alias as well. That is:
<aliases>
<alias
match="^Test (@!item)$"
enabled="y"
expand_variables="y"
regexp="y"
send_to="12"
sequence="100"
>
<send>world.note "matched item"</send>
</alias>
</aliases>
won't work but this will:
<triggers>
<trigger
enabled="y"
expand_variables="y"
keep_evaluating="y"
match="^You get (@!item)$"
regexp="y"
send_to="12"
sequence="100"
>
<send>world.note "matched item"</send>
</trigger>
</triggers>
Has this not been implemented, or am I missing something?
<aliases>
<alias
match="^Test (@!item)$"
enabled="y"
expand_variables="y"
regexp="y"
send_to="12"
sequence="100"
>
<send>world.note "matched item"</send>
</alias>
</aliases>
won't work but this will:
<triggers>
<trigger
enabled="y"
expand_variables="y"
keep_evaluating="y"
match="^You get (@!item)$"
regexp="y"
send_to="12"
sequence="100"
>
<send>world.note "matched item"</send>
</trigger>
</triggers>
Has this not been implemented, or am I missing something?