I'm working on a plugin right now and I'm running into what I believe to be syntax problems.
Is it possible to send a command to the mud AND then disable a group of triggers from within a single trigger?
Here's how I'm attempting it...
So ideally if the mud sent pattern1 and then pattern2, the first trigger would fire, send the command to the mud, and then disable the trigger group before the second trigger could fire.
Is this possible or even practical? Any help would be greatly appreciated.
Is it possible to send a command to the mud AND then disable a group of triggers from within a single trigger?
Here's how I'm attempting it...
<trigger
enabled="y"
match="Pattern1"
send_to="10"
sequence="100"
group="triggergroup"
>
<send>commands to mud</send>
EnableTriggerGroup("triggergroup", false)
</trigger>
<trigger
enabled="y"
match="Pattern2"
send_to="10"
sequence="100"
group="triggergroup"
>
<send>other commands to mud</send>
EnableTriggerGroup("triggergroup", false)
</trigger>
So ideally if the mud sent pattern1 and then pattern2, the first trigger would fire, send the command to the mud, and then disable the trigger group before the second trigger could fire.
Is this possible or even practical? Any help would be greatly appreciated.