Hi there! I'm new to WA development and I searched for YT videos and talked to ChatGPT, yet haven't found a solution for what I want to do.
Let's say there are multiple enemies (E1, E2, ..) with some castable abilities (A1, A2, ..). I want to have an audio notification, when the remaining cast time of any of these abilities becomes lesser then the cast time of my ability X. From my understanding of what ChatGPT tries to tell me, I need to setup a trigger with
Subevent = Spell,
Subevent suffix = Cast start```
then in the `Spell Id` put the id of `E1` spell, then create the same triggers for the rest `E2, ...` spells, and then in the `Conditions` tab create some function that would
```1. Calculate the X ability cast time based on my haste
2. Subtract this value from all the active "triggered" abilities from Trigger tab
3. Make a sound when the value is <0```
The issue is that ChatGPT syntax isn't precise and I haven't found any tutorials which cover complex behaviour.
Could you please suggest some WAs which I could use as a reference?