You can make a macro:
Code:
/tar Minfernal
/stopmacro [noexists]
/w YOUR_NAME %t Is watching you!
/run Screenshot()
/console Sound_MasterVolume 1
/script PlaySoundFile("Sound/Spells/Bladesringimpact.Ogg")
As it targets the right mob it will whisper you, put the sound on max, make a screenshot and play an alarm.
Then you make an AHK script:
Code:
#ifWinActive World of Warcraft
2::
Loop
{
if (stop = 1)
break
ControlSend, , g, World of Warcraft
Sleep 5
ControlSend, , {l down}, World of Warcraft
sleep 5
ControlSend, , {l up}, World of Warcraft
sleep 5
ControlSend, , {space down}, World of Warcraft
sleep 5
ControlSend, , {space up}, World of Warcraft
sleep 1000
}
return
Esc::
stop = 1
return
As you press "2" in-game it will start spamming your macro hotkey ("g" in this case) and it's also with anti-afk and works in background. "l" is a bind to sit/fly down. To stop the loop press "Esc".