Search found 38 matches

by Sirene
Fri Dec 02, 2016 2:43 am
Forum: General Discussion
Topic: Overlay Settings
Replies: 2
Views: 11919

Re: Overlay Settings

I think this file is here (as default):

xxx is your windows username

C:/Users/xxx/AppData/Local/Gimasoft/GINA/

filename:

GINAConfig_1.0.24.0.xml


or whatever your newest version is (my newest one is simply GINAConfig.xml)
by Sirene
Wed Mar 02, 2016 4:56 am
Forum: Bug Reports
Topic: Trigger double firing
Replies: 2
Views: 9811

Re: Trigger double firing

You can try unchecking the categories above the trigger, and re-enabling them. IIRC that worked for me last time this happened. It may be that GINA creates multiple paths to the same trigger when you have nested directories like > [enable default for all characters] > [enable for this character only...
by Sirene
Wed Jan 13, 2016 4:41 am
Forum: Specific Trigger Questions
Topic: Output Placeholder
Replies: 2
Views: 10882

Re: Output Placeholder

I have a suggestion, not exactly what you're looking for but would work in the meantime: Display Text: {L} (displays whole line) So when a tank dies you'll see: Soandso has been slain by X! I use a similar trigger on my cleric for rezzing purposes. I have it go to its own small trigger window. If yo...
by Sirene
Wed Dec 30, 2015 1:00 am
Forum: Specific Trigger Questions
Topic: trigger for mez
Replies: 1
Views: 9022

Re: trigger for mez

Mez timers are tricky because different spells have the same emote upon landing and different durations. Also when someone else mezzes your triggers will fire, which you may not want. You have two options: 1. make triggers that fire when you begin casting a spell 2. make triggers that fire from the ...
by Sirene
Sun Dec 13, 2015 12:23 am
Forum: Bug Reports
Topic: Slow Log Search
Replies: 0
Views: 7603

Slow Log Search

There is a way to seriously hamper the log search function, and you can't escape it once you've started. :( To replicate, search a decently sized portion of log (past day of playing or maybe 1 hour of a raid). I was searching for a fairly long search string (~10k lines per second) If you drag the sc...
by Sirene
Wed Dec 02, 2015 1:52 am
Forum: Bug Reports
Topic: Windows 10 Overlay Broken!
Replies: 1
Views: 8013

Re: Windows 10 Overlay Broken!

I'm running windows 10 pro on a similar setup as well and haven't had any issues (I have 1 nvidia card). If you haven't tried yet, you can look at the Performance tab on GINA and start a test while you're playing. It will tell you which triggers use the most resources. The times I've had GINA hang, ...
by Sirene
Thu Sep 17, 2015 12:02 am
Forum: Specific Trigger Questions
Topic: Only allow a trigger once per "fight"
Replies: 1
Views: 9102

Re: Only allow a trigger once per "fight"

One way you could do this is to make a count up timer:

Image
by Sirene
Sun Jul 26, 2015 2:18 am
Forum: Specific Trigger Questions
Topic: Trigger for Tells received. (But exclude NPC Tells)
Replies: 8
Views: 30985

Re: Trigger for Tells received. (But exclude NPC Tells)

Search Text: ^(?<char>\w+)((?<!\s).)*tells you, '
Display Text: ${char}

Fancier:

Search Text: ^(?<char>\w+)((?<!\s).)*tells you, '{s}'
Display Text: ${char} tells {c}: {s}
by Sirene
Sun Jul 26, 2015 1:56 am
Forum: Specific Trigger Questions
Topic: Any variables?
Replies: 2
Views: 17501

Re: Any variables?

As far as I know GINA only operates on one line at a time. I'm not sure what your goal is, but you could grab an enchanters name like so: Search Text: ^\[[1-9]\d?[0-5]? .*Enchanter\)?\] {s} \( {s} will store the enchanter's name. You could use clipboard text to insert the name into a /tell or someth...
by Sirene
Sun Jul 26, 2015 1:42 am
Forum: Specific Trigger Questions
Topic: Counters
Replies: 2
Views: 11009

Re: Counters

I think it's mainly for counting the # of times something has occurred. ex : # of books (TDS event 2) Search Text: Get up, you lazy book! Display Text: BOOK POP {counter} Timer Name: Book Adds - {counter} Reset counter if unmatched for 1 minute. During this raid, every 25 seconds a book spawns, unti...