|
shaun.murray Magician
Joined: 23 Jul 2005 Posts: 334 Location: Chicago
|
Posted: Fri May 16, 2008 4:17 pm
this trigger doesn't work... but... why not? |
Code: |
#var {askipwho} {bob|phil|jonny}
#trig {*@askipwho*{is standing here.|is here|is resting here.|works|watches}} {#window shownleave %ansi( yellow) {--~[~[ AutoSkipping ]]--}} |
From the mud....
Big boy bob the monster is resting here.
So... Shouldn't I have a nice -- AutoSkipping-- in my #window named 'shownleave'? But... That window is empty.... =[ |
|
|
|
Larkin Wizard
Joined: 25 Mar 2003 Posts: 1113 Location: USA
|
Posted: Fri May 16, 2008 4:19 pm |
Put { } around the variable in the trigger pattern?
|
|
|
|
shaun.murray Magician
Joined: 23 Jul 2005 Posts: 334 Location: Chicago
|
Posted: Fri May 16, 2008 4:33 pm |
So...
Code: |
#trig {{*@askipwho*{is standing here.|is here|is resting here.|works|watches}}} {#window shownleave %ansi( yellow) {--~[~[ AutoSkipping ]]--}} |
-or-
Code: |
#trig {{*@askipwho*}{is standing here.|is here|is resting here.|works|watches}} {#window shownleave %ansi( yellow) {--~[~[ AutoSkipping ]]--}} |
Newp.... Also tried:
Code: |
#trig {(*@askipwho*){is standing here.|is here|is resting here.|works|watches}} {#window shownleave %ansi( yellow) {--~[~[ AutoSkipping ]]--}} |
Didn't work either.... |
|
|
|
shaun.murray Magician
Joined: 23 Jul 2005 Posts: 334 Location: Chicago
|
Posted: Fri May 16, 2008 4:37 pm |
GOT IT!
*{@askipwho}*{is standing here.|is resting here.|works|watches}
That worked... Thanks! =D |
|
|
|
|
|