Scripts that automate complex rotations, move your character while away (anti-AFK), or use "pixel-botting" to react to on-screen events are highly detectable and can lead to permanent account bans. Basic AHK Script for WoW

Download the latest version from the AutoHotkey website .

This script allows you to hold down a key (like 1 ) and have it automatically repeat every 50 milliseconds until you release it.

AutoHotkey and SpellqueueWindow in World of Warcraft Classic

The primary use for is to automate repetitive key presses—often referred to as "spamming"—to ensure spells fire immediately after the global cooldown.

Right-click the file, select Edit Script , and paste the following: autohotkey

#IfWinActive World of Warcraft ; Only works while WoW is the active window $1:: ; The $ prefix prevents the script from triggering itself While GetKeyState("1", "P") ; While the '1' key is physically Pressed { Send, 1 Sleep, 50 ; Wait 50 milliseconds between presses } Return Use code with caution. Copied to clipboard