PvXwiki
Advertisement

Autohotkey Guild Wars

Getting Autohotkey[]

  • Go here, grab Autohotkey_L.
  • Install.
  • Open AHK, create the tutorial script (open in notepad/wordpad/ect).
  • Make any changes and save the script file.
  • Right click AHK's icon in the taskbar (open AHK to get it to show up), and hit "Reload this script"
  • Have fun!

Basics[]

  • When I hold shift and press 1 (+1) follow the command (::) type these keys 'kkk' (send kkk)
    • +1::send kkk
  • return exits the thread (stops the command)

The basic syntax is self-explanatory from the examples.

Examples assume keybindings

  • 12345678 for skills
  • Esc for cancel
  • F1-F4 for weapon swapping

Do XY when Shift+Y[]

+Y::
send XY 
return

Swap Weapons before casting[]

+1::
send {Esc}{F1}1 
return

+2::
send {Esc}{F3}2 
return

Useful on any caster. Lets you get full use of 20/20s, +20% enchantment length, ect with minimal effort. Also useful for [[hammersins]] and the like.

Use a skill before another[]

Wearying Strike Pious Renewal Pious Fury Optional Optional Optional Optional Optional
+1::
send 21 
return

+3::
send 23 
return
Advertisement