Bombg / pfUI-bettertotems

pfUI's totem module with some extra features
1 stars 0 forks source link

Not working with one button macros #2

Open Walhaelll opened 1 month ago

Walhaelll commented 1 month ago

When i use this macro doesnt work pfui-better totems.

/cast Strength of Earth Totem
/cast Windfury Totem
/cast Mana Spring Totem

image

Bombg commented 1 month ago

I'll take a look but in the past these one button totem macros have been nothing but buggy for me with the client in general. Since the client will fire off events that aren't even happening

Bombg commented 1 month ago

I can see potential in fixing it with using the CHAT_MSG_SPELL_SELF_BUFF event. But the time required to fix the addon is high, and it's for a use case I don't use. So for now this isn't changing.

Bombg commented 1 month ago

as a workaround this macro will achieve the same results without the error spam, and it works with the addon.

/script local t={[1]="Windfury Totem", [2]="Earthbind Totem", [3]="Poison Cleansing Totem",[4]="Searing Totem"} if not TC or TC >= 4 then TC = 0 end if not TT or GetTime() - TT > .25 then TT = GetTime() TC = TC + 1 CastSpellByName(t[TC]) end update it with the totems of your choice.