PDA

View Full Version : GINA Wings of Death & Drones of Doom not working


pijan
12-30-2023, 11:40 AM
Trying to figure out how I can get my DoT timers to work correctly. Currently Wings of Death is overriding my Drones of Doom.

Wings of Death trigger is:
{s} is engulfed in a swarm of deadly insects.

Drones of Doom trigger is:
{s} is engulfed in a swarm.

Doesn't seem like the period at the end stops Wings from triggering both.

Senix
12-30-2023, 02:01 PM
Wings of Death


I dont use GINA but could having the wrong spell name cause this? Because the spell is named Winged Death

pijan
12-30-2023, 02:09 PM
I have it correct in GINA, but I don't think that matters. The trigger text is what drives the timer.

mcoy
12-31-2023, 07:48 AM
If quotes don't work then use the regex checkbox and put a ^ at the beginning and a $ at the end of the exact string you want to match:

https://regex101.com/r/c3Z5NC/1
vs
https://regex101.com/r/jZWkGg/1

I don't use GINA anymore so /shrug.

-Mcoy

Indefinite
12-31-2023, 09:30 AM
Here are the regex patterns eqalert is using for each of those spells landing on another character, they should work fine in GINA just swap out the part of the expression GINA uses {s} for.

spell_winged_death_other_on: "^[a-zA-Z`\s]+ is engulfed in a swarm of deadly insects\.$"

spell_drones_of_doom_other_on: "^[a-zA-Z`\s]+ is engulfed in a swarm\.$"

Note: Creeping Crud, Drifting Death, Drones of Doom, and Stinging Swarm all share the same message for landing on another character: https://github.com/mgeitz/eqalert/blob/master/eqa/lib/parser.py#L7917-L7922