Skip to content

Commit

Permalink
Added macro.
Browse files Browse the repository at this point in the history
  • Loading branch information
256shadesofgrey committed Feb 25, 2018
1 parent b48792a commit d3c8675
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions eso-light-attack-weave.ahk
@@ -0,0 +1,45 @@
;This script adds a simple mouse click to each of the enabled keys.

#NoEnv
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input
SetWorkingDir %A_ScriptDir%
Suspend

global msDelay := 10

#ifWinActive Elder Scrolls Online

Tab::
Suspend
Return

1::
MouseClick, Left
Sleep msDelay
Send, {NumPad1}
Return

2::
MouseClick, Left
Sleep msDelay
Send, {NumPad2}
Return

3::
MouseClick, Left
Sleep msDelay
Send, {NumPad3}
Return

4::
MouseClick, Left
Sleep msDelay
Send, {NumPad4}
Return

;5::
; MouseClick, Left
; Sleep msDelay
; Send, {NumPad5}
;Return

0 comments on commit d3c8675

Please sign in to comment.