This is my first post, but I've been a forum lurker for a few months now. I started playing an Archer recently and found that retargeting all the time was a bit tedious, so I made a simple AutoHotKey script that automates things with different lengths of loops.
http://dl.dropbox.com/u/1219541/Target-O-Matic.exe
I'll put the contents of the script here, just in case you are unsure of my intentions (or if you just want to change the assigned hotkeys or add to it or whatever!)
- Code: Select all
Msgbox, Legends of Yore Archer Helper `n` This hotkey
script helps you play the Archer class. `n` It allows you
to quickly target and attack the nearest enemies, at
different sets of loops. If you need help, hit the H key
ingame! `n` `n` Made by Aeronic
#IfWinActive Legends of Yore
Q::
Loop 20
{
Send {t}
Send {space}
Send {6}
Sleep 30
}
Return
z::
Loop 30
{
Send {t}
Send {space}
Sleep 30
}
Return
x::
Loop 100
{
Send {t}
Send {space}
Sleep 30
}
Return
c::
Loop 300
{
Send {t}
Send {space}
Sleep 30
}
Return
v::
Loop 1000
{
Send {t}
Send {space}
Sleep 30
}
Return
f::
Pause
return
h::
Msgbox, Hotkeys: `n` Q - 20 loops of targeting +
healing (if First Aid skill/potion is on slot 6) `n` Z - 30
loops of targeting `n` X - 100 loops of targeting `n` C -
300 loops of targeting `n` V - 1000 loops of targeting
`n` F - Pause script `n` H - bring up this help `n` Tab=
Toggle hotkeys on or off (tray icon will have an S while
suspended)
return
Tab::
Suspend
return
You can still move while a loop is active, however it's a bit clunky, so I suggest only using the Z hotkey for most cases, while V is suited for level grinding. Q is unique in that it also heals you from whatever is in slot 6 on your hotbar (I suggest First Aid, since every turn you are also focusing as long as no enemies are in range)
In case you are concerned about there being malicious content in the exe, I ran the file through VirusTotal and here are the results:
http://www.virustotal.com/file-scan/rep ... 1319563996
Enjoy!

