Jump to content

galneon

Initiates
  • Posts

    2
  • Joined

  • Last visited

Reputation

0 Neutral

About galneon

  • Rank
    (0) Nub
    (0) Nub
  1. I'm not allowed to edit my post, but here's a better version of the script above that returns the cursor to where it was before running the macro (just in case anyone doesn't want to opt into the beta but can't wait for the patch): ; Pillars of Eternity Change Weapon Set ; by galneon ; AutoHotkey Version: 1.1 ; Script Function: ; Quickly change current weapon set for selected character ; Calibrated for 1920 x 1080 Fullscreen with custom ability bar position #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. #IfWinActive Pillars of Eternity ; Toggle weapon set Tab:: ; Activate via Tab (ensure no bind exists for Tab in-game) MouseGetPos CurX, CurY ; Mark current cursor position MouseClick, left, 370, 930 ; Location of ability bar weapon set button. Take a screenshot or just guess to find proper coordinates. Sleep, 60 MouseMove %CurX%, %CurY%, 0 ; Return to previous cursor position Return
  2. Here's an autohotkey script until a bind is officially patched in. Calibrate to your needs: ; Pillars of Eternity Change Weapon Set ; by galneon ; AutoHotkey Version: 1.1 ; Script Function: ; Quickly change current weapon set for selected character ; Calibrated for 1920 x 1080 Fullscreen with custom ability bar position #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. #IfWinActive Pillars of Eternity ; Toggle weapon set Tab:: ; Activate via Tab (ensure no bind exists for Tab in-game) MouseClick, left, 370, 930 ; location of ability bar weapon set button. Take a screenshot or just guess to find proper coordinates. Sleep, 60 MouseMove, 960, 560 ; Center the cursor Return
×
×
  • Create New...