#adding throttle
24 messages · Page 1 of 1 (latest)
That is a custom option and you're in author mode. Change to user mode if you're not the author
that aura also doesn't have any every-frame-checks
there's nothing to throttle there
what it does have, is an unfiltered CLEU trigger though
how to set that up is explained in the warning of the trigger. in this case you'd add SPELL_ABSORBED, SPELL_AURA_APPLIED, SPELL_AURA_REMOVED to the filter, since that's all the aura uses
🫠 and how would that help with karma aura that i enter user mode on a different aura?
thanks, but where exactly to put it in the custom code? Just change the event tracked from 1 to these 3?
you don't put anything into custom code
you change the Event(s) box, it is explained in the tooltip
yes yes the event box, just didn’t know its name from the head, ok thanks will try it when I get home
CLEU:SPELL_ABSORBED:SPELL_AURA_APPLIED:SPELL_AURA_REMOVED
Like that, as your only thing in the events box
Just CLEU (short for COMBAT_LOG_EVENT_UNFILTERED) will run your trigger function on any combat log event. Meaning hundreds of times a second in raid.
The code itself will only ever do stuff according to those 3 events anyways, since it checks for those, but just the function being called and anything that exists outside of those 3 if checks is already a completely unnecessary performance drain
So you just add these subevents you're interested in as filters for the event like that #1283596643899277392 message
♥️
after
and before
think it helped, did it?