Critical Legends Macro Topic is solved

Ask gaming related questions (AHK v1.1 and older)
donut
Posts: 4
Joined: 12 Apr 2021, 13:55

Re: Critical Legends Macro Request

Post by donut » 20 Jan 2022, 21:09

I am playing a game on Roblox called Critical Legends. In this game there are things known as active abilities where you need to press 1, 2, or 3 on your keyboard to use them. I need a macro that presses 1, 2, and 3 on repeat with zero delay between them. I also need it to be able to be toggled on and off with the M key.

User avatar
mikeyww
Posts: 26599
Joined: 09 Sep 2014, 18:38

Re: Critical Legends Macro  Topic is solved

Post by mikeyww » 20 Jan 2022, 21:35

Code: Select all

m::SetTimer, m Up, % (on := !on) ? 1 : "Off"
m Up::SendInput % on ? "123" : ""

Post Reply

Return to “Gaming Help (v1)”