Easier navigation in UI
brus
Member Posts: 944
source: https://www.reddit.com/r/baldursgate/comments/1rl88m/a_few_autohotkey_macros_for_a_smoother_gameplay/
Autohotkey script
for the steam version of the game?
How can autohotkey detect that the steam is running?
Autohotkey script
Script that puts everything into your bag of holding with the press of a capslock :
#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
How to change the line # IfWinActive, Baldur's Gate II - Enhanced EditionCode
;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
for the steam version of the game?
How can autohotkey detect that the steam is running?
0