Skip to content

Easier navigation in UI

brusbrus Member Posts: 944
edited December 2015 in General Modding
source: https://www.reddit.com/r/baldursgate/comments/1rl88m/a_few_autohotkey_macros_for_a_smoother_gameplay/

Autohotkey script

#IfWinActive, Baldur's Gate II - Enhanced Edition
;only active in BG2EE window, change if necessary

MButton::Send {MButton}{F7}
;middle mouse button also opens spells menu
;keeps original functionality

WheelUp::Send {F1}
WheelDown::Send {F12}
;you can now use your mousewheel to scroll spell pages
;original scrolling function killed, because it also zooms
;if you want it, just add {WheelUp} or {Wheeldown} to the macro

XButton2::Send {F6}
;side mouse button actives stealth, because that how I roll
Script that puts everything into your bag of holding with the press of a capslock :
Code

;SetMouseDelay, 50
;if it clicks too fast, modify delay as necessary
;otherwise leave it alone
;bag of holding is at 535, 800
Capslock::
Click, 350, 735
Click, 535, 800
Click, 410, 735
Click, 535, 800
Click, 465, 735
Click, 535, 800
Click, 535, 735
Click, 535, 800
Click, 595, 735
Click, 535, 800
Click, 650, 735
Click, 535, 800
Click, 715, 735
Click, 535, 800
Click, 785, 735
Click, 535, 800
Click, 350, 800
Click, 535, 800
Click, 410, 800
Click, 535, 800
Click, 465, 800
Click, 535, 800
Click, 595, 800
Click, 535, 800
Click, 650, 800
Click, 535, 800
Click, 715, 800
Click, 535, 800
Click, 765, 800
Click, 535, 800
return
How to change the line # IfWinActive, Baldur's Gate II - Enhanced Edition
for the steam version of the game?
How can autohotkey detect that the steam is running?
Sign In or Register to comment.