First time I've encountered a mod with this file extension. I have no idea where to put it. Please add where to put this in the description. Thank you.🙂
It doesn't matter where you put it. You just run it alongside Oblivion whenever you want to use it. Although you do require the AutoHotkey program, listed in requirements
Sorry, I had never heard of the program before. I just tried the script, and got an error stating I needed an older version of AutoHotKey. Just thought I'd let you know.
Here's mine: !r:: woggle := !woggle ; Flip the toggle state if (woggle) { SetTimer, ClickLoop, 10 ; Run the loop every 10 ms (adjust as needed) } else { SetTimer, ClickLoop, Off } return ClickLoop: Click Send, {r}{Enter} return alt+r to toggle pressing r as well as clicking makes it faster.
9 comments
https://en.uesp.net/wiki/Oblivion:Armorer
!r::
alt+r to togglewoggle := !woggle ; Flip the toggle state
if (woggle) {
SetTimer, ClickLoop, 10 ; Run the loop every 10 ms (adjust as needed)
} else {
SetTimer, ClickLoop, Off
}
return
ClickLoop:
Click
Send, {r}{Enter}
return
pressing r as well as clicking makes it faster.
Edit: Yes.