I'd like to make triggers that match on room descriptions and output my own notes, I know it's possible with world.DoCommand "MakeMultiLineTrigger"
However I plan on doing quite a few of these triggers so I was hoping to move the trigger creation to the command line for speed and less futzing around through the full list of triggers.
I thought one way I could set it up would be similar to an addtriggerex alias but it would also have to parse the clipboard text into a multiline trigger the same way world.DoCommand "MakeMultiLineTrigger" does to the input box... I'd be grateful for any insight.
However I plan on doing quite a few of these triggers so I was hoping to move the trigger creation to the command line for speed and less futzing around through the full list of triggers.
I thought one way I could set it up would be similar to an addtriggerex alias but it would also have to parse the clipboard text into a multiline trigger the same way world.DoCommand "MakeMultiLineTrigger" does to the input box... I'd be grateful for any insight.
<aliases>
<alias
match="room * "
enabled="y"
group=""
send_to="12"
sequence="100"
>
<send>
AddTriggerEx ("", GetClipboard(), "%1", trigger_flag.Enabled, custom_colour.NoChange, 0, "", "", 0, 0)
</send>
</alias>
</aliases>