|
benjunmun Beginner
Joined: 23 Feb 2002 Posts: 23
|
Posted: Fri Jul 11, 2008 3:45 am
[2.30] Command input trigger not firing after prompt |
I can't get a command input trigger to fire on a #send that is run from a prompt trigger. The command input trigger fires if I type in the command by hand. It also works if I use the same #send from a non-prompt trigger. Is this a bug?
-Ben |
|
|
|
Zugg MASTER
Joined: 25 Sep 2000 Posts: 23379 Location: Colorado, USA
|
Posted: Fri Jul 11, 2008 5:04 am |
Please show me the exact prompt trigger that you are using. Go to the XML tab in the trigger and copy the XML and paste it into this forum between [CODE] tags
|
|
|
|
benjunmun Beginner
Joined: 23 Feb 2002 Posts: 23
|
Posted: Fri Jul 11, 2008 5:38 am |
here's a simple sample I have to reproduce it:
Code: |
<class name="testclass" id="1403">
<trigger priority="14020" newline="false" prompt="true" id="1402">
<pattern>%dh, %dm</pattern>
<value>#send qwerty</value>
</trigger>
<trigger type="Command Input" priority="14040" id="1404">
<pattern>qwerty</pattern>
<value>#echo found it</value>
</trigger>
</class>
|
|
|
|
|
|
|