Search found 26 matches

by Angahran
Mon Aug 13, 2018 3:37 pm
Forum: Specific Trigger Questions
Topic: Trigger Creation
Replies: 1
Views: 11668

Re: Trigger Creation

As far as I know GINA can only look at one line at a time.
by Angahran
Mon Aug 13, 2018 3:36 pm
Forum: Specific Trigger Questions
Topic: Trigger to strip numbers from line ?
Replies: 3
Views: 15311

Re: Trigger to strip numbers from line ?

This seems to be working:

has planted a banner in (?<zone>.[a-zA-Z:\- ]*)\s*\d*!
by Angahran
Sun Aug 05, 2018 9:39 pm
Forum: Specific Trigger Questions
Topic: Trigger to strip numbers from line ?
Replies: 3
Views: 15311

Re: Trigger to strip numbers from line ?

Thanks,

That works perfectly when there is a number in the line, e.g.
has planted a banner in chardok 12345!

But it doesn't trigger on:
has planted a banner in chardok!

Update:
This appears to work:
has planted a banner in (?<zone>.[a-zA-Z]*)\s*\d*!
by Angahran
Thu Jul 05, 2018 10:23 pm
Forum: Specific Trigger Questions
Topic: Trigger to strip numbers from line ?
Replies: 3
Views: 15311

Trigger to strip numbers from line ?

Hi, Trying to make a trigger for planting banner/pulling up banner. I'd really like to have it not display/say the numbers on instanced zones. e.g. {s1} has planted a banner in {s2}! Would give "GuildX has planted a banner in Chardok123456!" I'd like to have it output "GuildX has planted a banner in...
by Angahran
Thu Mar 15, 2018 7:53 pm
Forum: Specific Trigger Questions
Topic: Match any timestamp in log file ?
Replies: 1
Views: 12478

Match any timestamp in log file ?

I think the following will match any combination of short or long timestamp in log file, but not 100% certain and there may be a better way.

\b(^|^[{n}:{n}] AM |^[{n}:{n}] PM |^[{n}:{n}:{n}] AM |^[{n}:{n}:{n}] PM )\b
by Angahran
Sat Feb 10, 2018 8:51 pm
Forum: General Discussion
Topic: change line begin character to match timestamp (if present)
Replies: 1
Views: 33320

change line begin character to match timestamp (if present)

Would it be possible to update the behavior of the line begin character, ^, to automatically match with a timestamp if one is present ? I had several triggers that used the line begin but noticed they stopped working when I turned on the timestamps in the chat windows. I have changed to using the fo...
by Angahran
Tue Apr 11, 2017 10:05 pm
Forum: Specific Trigger Questions
Topic: {TS} timer from partial time ?
Replies: 3
Views: 19723

Re: {TS} timer from partial time ?

Don't really want to create 24 separate triggers just to count down.
Was hoping for something like {hh:mm:ss:ms} to set timer so could do {00:TS:00:00} for 14 minutes, or even something fancy like {TS1:TS2:TS3:TS4}
by Angahran
Sun Apr 02, 2017 8:34 pm
Forum: Specific Trigger Questions
Topic: {TS} timer from partial time ?
Replies: 3
Views: 19723

{TS} timer from partial time ?

"Anashti Sul, Damsel of Decay, shouts, 'High Bokon Boromas, hold back the invaders for 14 more minutes.'"

Is there any way to use the {TS} tag to set a timer for 14 minutes from this message ?
by Angahran
Mon Dec 07, 2015 1:16 pm
Forum: Specific Trigger Questions
Topic: Trigger when characters name is in a list ?
Replies: 2
Views: 16564

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} ?
by Angahran
Sat Dec 05, 2015 7:11 pm
Forum: Specific Trigger Questions
Topic: Trigger when characters name is in a list ?
Replies: 2
Views: 16564

Trigger when characters name is in a list ?

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 m...