valarnin

Results 65 comments of valarnin

You can get any player in the party's job via `data.party.details`, for instance I have this in one of my custom triggers: ```typescript let playerJob; data.party.details.forEach((p) => { if (p.name...

Would it make more sense to do this based on indexed roles or something so it works even with duplicates? E.g. ``` Tank 1 Tank 2 Healer 1 Healer 2...

It's possible that it's the natural order of the party list returned by the FFXIV parser plugin, I'd have to check the decomp or do some tests in-game to be...

No, looks like that's a bust, party order in partychanged event is random from what it appears? It also doesn't fire that event mid-fight at all, only when someone is...

Hmm, if there are 5 RDMs in a party, does it sort them alphabetically afterward, or is the order random? If it's actually sorted alphabetically, they could be RDM1, RDM2,...

Could warn on HP diff being too large with a 15s suppress or something I guess? But yeah right now there's no way to do update text dynamically after it's...

Can you provide the network log file for this, or test it on [raidemulator](https://quisquous.github.io/cactbot/ui/raidboss/raidemulator.html?OVERLAY_WS=ws://127.0.0.1:10501/ws) (make sure ACT is running and overlayplugin's websocket is enabled so raidemulator can read your cactbot...

Interestingly I just ran into this on a new alt doing Zodiark for the first time as well. Seems like it might be difficult to debug.

The failing test is because of the following lines in the a7s timeline: https://github.com/quisquous/cactbot/blob/a081e237cda8de6ab112d15c98073af9975edade/ui/raidboss/data/03-hw/raid/a7s.txt#L87-L96 I guess the question is, should they be counted as an error? Additionally these lines, including...

> For the logs I do have them but it was from my custom user trigger I think this means they're using a custom trigger, at which point we'd need...