i have the same issue
For MacOS users that are using HammerSpoon I made a script that solve the problem for now
local toggle1 = false
local toggle2 = false
local clickRate = 0.02 -- 20ms in seconds (50 times per second)
local timer1 = nil
local timer2 = nil
hs.hotkey.bind({}, "1", function()
toggle1 = not toggle1
if toggle1 then
-- Immediate key press to avoid initial delay
hs.eventtap.keyStroke({"cmd"}, "1")
hs.printf("Toggle1 activated, immediate key press")
-- Start the timer immediately
timer1 = hs.timer.new(clickRate, function()
if toggle1 then
hs.eventtap.keyStroke({"cmd"}, "1")
hs.printf("Cmd+1 pressed")
else
timer1:stop()
timer1 = nil
hs.printf("Toggle1 deactivated")
end
end)
timer1:start()
else
if timer1 then
timer1:stop()
timer1 = nil
hs.printf("Toggle1 deactivated")
end
end
end)
hs.hotkey.bind({}, "2", function()
toggle2 = not toggle2
if toggle2 then
-- Immediate key press to avoid initial delay
hs.eventtap.keyStroke({"cmd"}, "2")
hs.printf("Toggle2 activated, immediate key press")
-- Start the timer immediately
timer2 = hs.timer.new(clickRate, function()
if toggle2 then
hs.eventtap.keyStroke({"cmd"}, "2")
hs.printf("Cmd+2 pressed")
else
timer2:stop()
timer2 = nil
hs.printf("Toggle2 deactivated")
end
end)
timer2:start()
else
if timer2 then
timer2:stop()
timer2 = nil
hs.printf("Toggle2 deactivated")
end
end
end)
suggestion. keybind single target to F1 and Aoe to F2. then nothing is messed with on your action bar and dragon flying is as normal. if you use a mouse like a logitech g600 or other mice with program able buttons then you can bind the F keys to mouse buttons.
I have a trinket, Manic Grieftorch. Is there a provision in the macro blocks to insert to use the trinket? If not, where would it be inserted?
Suit yourself, you need to try in every position, or cast it manually.
Cheers.
u just have to take attack out of marco then its fixed
i fixed the issue by useing a different marco and it works great
thanks, i was having an issues figuring out how to make one.
Why is my GSE plugin not working/ The GSE pop-up screen is abnormal, and there is no response even after importing the string.