Search found 38 matches

by Sirene
Sun May 03, 2020 10:47 pm
Forum: Specific Trigger Questions
Topic: Match variable number of names in trigger ?
Replies: 1
Views: 9932

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...
by Sirene
Sun Sep 09, 2018 11:09 pm
Forum: Specific Trigger Questions
Topic: Mark of Karn trigger
Replies: 1
Views: 11619

Re: Mark of Karn trigger

{s}'s skin gleams with a pure aura.
by Sirene
Sun Sep 09, 2018 11:04 pm
Forum: Specific Trigger Questions
Topic: A specific question regarding timers for dots
Replies: 3
Views: 15363

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.
by Sirene
Wed Jul 25, 2018 3:41 am
Forum: Specific Trigger Questions
Topic: Search Text Length Usage
Replies: 2
Views: 13660

Re: Search Text Length Usage

I am curious to see this 2511 character regex. :mrgreen:

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.
by Sirene
Sat Jul 07, 2018 1:59 pm
Forum: Specific Trigger Questions
Topic: Trigger to strip numbers from line ?
Replies: 3
Views: 15294

Re: Trigger to strip numbers from line ?

Try this one:

has planted a banner in (?<zone>.*)\s\d*!

Display Text: ${zone}
by Sirene
Sat Jul 07, 2018 1:49 pm
Forum: General Discussion
Topic: One Trigger, Multiple Search Texts
Replies: 3
Views: 37709

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!)
by Sirene
Fri May 25, 2018 2:46 am
Forum: Specific Trigger Questions
Topic: Other Phonetics Options
Replies: 1
Views: 11476

Re: Other Phonetics Options

You can do this with the Gnomish Articulator:

Image

Image
by Sirene
Wed May 10, 2017 8:31 pm
Forum: Specific Trigger Questions
Topic: Mage Pet Triggers
Replies: 1
Views: 12449

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: ...
by Sirene
Mon Apr 03, 2017 10:32 pm
Forum: Specific Trigger Questions
Topic: {TS} timer from partial time ?
Replies: 3
Views: 19710

Re: {TS} timer from partial time ?

What about this?

Image

The {TS} tag uses seconds, so "14 more minutes" = "{TS} more minutes" sets a 14 second timer.
by Sirene
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: 24389

Re: Is this possible? Start a stopwatch when a timer ends?

Not possible afaik, but would be a great feature request. :mrgreen:

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.