Hi,
Trying to get a trigger to work and not having much luck
For the Broken Mirror raid, Vim and Vigor, there is an emote where the NPC gives a list of 4 names.
I don't have the exact line yet, but it is along the lines of:
Vigor benevolently chooses bob, fred, jim and sally.
I need some way to match the trigger if the character name is any of the 4 given.
I tried the following but it does not appear to work
Vigor benevolently chooses.*\s{C}[,!].*
Any thoughts or suggestions much appreciated.
Angahran
Trigger when characters name is in a list ?
Re: Trigger when characters name is in a list ?
Got some regex that I think may work, if anyone has better suggestion that would be great
^(?=.*this\sis\sa\stest)(?=.*character1|character2)
Could maybe replace "character1|character2" with {C} ?
^(?=.*this\sis\sa\stest)(?=.*character1|character2)
Could maybe replace "character1|character2" with {C} ?
Re: Trigger when characters name is in a list ?
Code: Select all
Vigor benevolently chooses.*{C}
".*" will be a placeholder for 0 to infinite chars until either the line is ending or any text after ".*" matches (in this case, your character's name).