Search found 38 matches
- Sun May 03, 2020 10:47 pm
- Forum: Specific Trigger Questions
- Topic: Match variable number of names in trigger ?
- Replies: 1
- Views: 14051
Re: Match variable number of names in trigger ?
Not exactly what you want but this is what I use: Search text: ^Dancers swoop in to engage with.*\s{c}[\s,\.] Display text: {c} dancer emote Will only display for characters I'm playing. For variable names in a list you can also do this: (would display whole list) Search text: ^Dancers swoop in to e...
- Sun Sep 09, 2018 11:09 pm
- Forum: Specific Trigger Questions
- Topic: Mark of Karn trigger
- Replies: 1
- Views: 15333
Re: Mark of Karn trigger
{s}'s skin gleams with a pure aura.
- Sun Sep 09, 2018 11:04 pm
- Forum: Specific Trigger Questions
- Topic: A specific question regarding timers for dots
- Replies: 3
- Views: 20244
Re: A specific question regarding timers for dots
To end the "spell landed" timer you could use this:
A dragon has taken \d+ damage from your Pyre of the Shadewarden.
\d+ will match 1 or more digit.
A dragon has taken \d+ damage from your Pyre of the Shadewarden.
\d+ will match 1 or more digit.
- Wed Jul 25, 2018 3:41 am
- Forum: Specific Trigger Questions
- Topic: Search Text Length Usage
- Replies: 2
- Views: 18214
Re: Search Text Length Usage
I am curious to see this 2511 character regex.
I think if I were to do something like this I would make multiple triggers. One per item, and group them roughly by trivial level (i.e. all spell scrolls together), so that I could turn some of them off if necessary.
I think if I were to do something like this I would make multiple triggers. One per item, and group them roughly by trivial level (i.e. all spell scrolls together), so that I could turn some of them off if necessary.
- Sat Jul 07, 2018 1:59 pm
- Forum: Specific Trigger Questions
- Topic: Trigger to strip numbers from line ?
- Replies: 3
- Views: 20491
Re: Trigger to strip numbers from line ?
Try this one:
has planted a banner in (?<zone>.*)\s\d*!
Display Text: ${zone}
has planted a banner in (?<zone>.*)\s\d*!
Display Text: ${zone}
- Sat Jul 07, 2018 1:49 pm
- Forum: General Discussion
- Topic: One Trigger, Multiple Search Texts
- Replies: 3
- Views: 42516
Re: One Trigger, Multiple Search Texts
The or | needs to be in a grouping ()
Try this:
(^Your eardrums rupture\.|^You resist the Force Breath spell!)
Try this:
(^Your eardrums rupture\.|^You resist the Force Breath spell!)
- Fri May 25, 2018 2:46 am
- Forum: Specific Trigger Questions
- Topic: Other Phonetics Options
- Replies: 1
- Views: 15472
Re: Other Phonetics Options
You can do this with the Gnomish Articulator:
- Wed May 10, 2017 8:31 pm
- Forum: Specific Trigger Questions
- Topic: Mage Pet Triggers
- Replies: 1
- Views: 14091
Re: Mage Pet Triggers
You could do something like this: ^\w+ goes berserk\. But it will fire on any mage pet who gets Burnout. You could also do: ^You begin casting Frenzied Burnout For pet name in a variable, afaik you can't save it. If you name your pet something unique, all of these problems will be solved. :mrgreen: ...
- Mon Apr 03, 2017 10:32 pm
- Forum: Specific Trigger Questions
- Topic: {TS} timer from partial time ?
- Replies: 3
- Views: 25063
Re: {TS} timer from partial time ?
What about this?
The {TS} tag uses seconds, so "14 more minutes" = "{TS} more minutes" sets a 14 second timer.
The {TS} tag uses seconds, so "14 more minutes" = "{TS} more minutes" sets a 14 second timer.
- Fri Jan 20, 2017 11:26 pm
- Forum: Specific Trigger Questions
- Topic: Is this possible? Start a stopwatch when a timer ends?
- Replies: 4
- Views: 30245
Re: Is this possible? Start a stopwatch when a timer ends?
Not possible afaik, but would be a great feature request.
Triggers which fire other triggers when they end.
Right now you can only start a trigger from something happening in your log file, aside from repeating timers. At least that's my understanding of it.
Triggers which fire other triggers when they end.
Right now you can only start a trigger from something happening in your log file, aside from repeating timers. At least that's my understanding of it.