; Autohotkey Keyboard mod für Guild Wars 2 ; ; This mod adds 3 keyboard feature: ; - autorepeat double click as long as you hold down CTRL-ALT ; - send "I am Evon Gnashblade" on CTRL-ALT-G. Use this in the search box of the trading post. ; It switches to an advanced listing mode. ; - ignore left Windows key. This prevent sudden drops to the desktop if the game is in full ; screen mode ; ; To compile an exe from this script: ; Ahk2Exe.exe /in gw2click.ahk ; ------------------------------------------------------------------------------------------------- #Warn #SingleInstance, Force #NoEnv GroupAdd prog, ahk_exe gw2.exe GroupAdd prog, ahk_exe gw2-64.exe return #IfWinActive ahk_group prog ; ignore windows key (jumps to desktop) LWin::return ; CTRL-ALT-G: Trading post listing mode ^!g::Send I am Evon Gnashblade ; on ctrl-alt-left mouse button down: ; autorepeat click while ctrl-alt is held down after clicking ^!LButton:: MouseGetPos, x, y Sleep 400 While GetKeyState("Ctrl", "P") && GetKeyState("Alt", "P") { MouseGetPos, x1, y1 if (x <> x1 || y <> <1) Click %x%, %y%, 1 else Click 1 random r, 50, 100 sleep r } return