Caius Drusus Imperial DK (DC) Bragg Ironhand Orc Temp (DC) Neesha Stalks-Shadows Argonian NB (EP) Falidir Altmer Sorcr (AD) J'zharka Khajiit NB (AD) |
Isabeau Runeseer Breton Sorc (DC) Fevassa Dunmer DK (EP) Manut Redguard Temp (AD) Tylera the Summoner Altmer Sorc (EP) Svari Snake-Blood Nord DK (AD) |
Ashlyn D'Elyse Breton NB (EP) Filindria Bosmer Temp (DC) Vigbjorn the Wanderer Nord Warden (EP) Hrokki Winterborn Breton Warden (DC) Basks-in-the-Sunshine Argonian Temp |
; A simple keybind example F1:: SendInput {1} return
Emma_Eunjung wrote: »There are two ways to deal with this:
1) Use a programmable "gaming" mouse that does this automatically by default, like my Logitech G602 or
2) Use Autohotkey to bind one key to another... it fires upon key down automatically.; A simple keybind example F1:: SendInput {1} return
Emma_Eunjung wrote: »There are two ways to deal with this:
1) Use a programmable "gaming" mouse that does this automatically by default, like my Logitech G602 or
2) Use Autohotkey to bind one key to another... it fires upon key down automatically.; A simple keybind example F1:: SendInput {1} return
Hey Emma, can you elaborate a bit on option 2? Can that be done for all abilities on the bar? Is this something that's done in game or outside of game? Thanks!
Emma_Eunjung wrote: »Emma_Eunjung wrote: »There are two ways to deal with this:
1) Use a programmable "gaming" mouse that does this automatically by default, like my Logitech G602 or
2) Use Autohotkey to bind one key to another... it fires upon key down automatically.; A simple keybind example F1:: SendInput {1} return
Hey Emma, can you elaborate a bit on option 2? Can that be done for all abilities on the bar? Is this something that's done in game or outside of game? Thanks!
This is just a little script you can write in Notepad for the AutoHotkey app (Google for it). What the script does is fire the "1" button every time you press the "F1" button. What makes this useful is the fact that it fires on key down instead of key up. If you want to do all the ability keys, just add more subroutines to the script, substituting "F2" for "F1" and "2" for "1", etc.