A button to force move + click

Could we get a mapable function that would combine force move and move? so that is can be bound to left mouse click or a different button?

i’ve been trying to find a way to get this with AHK but i am dumb at macros and i get furious every time i try to run and my characters decides to shoot a crate (that is still out of line of sight btw) and i stop. it’s making the game really difficult for me.

Uncheck “Move To Breaks Objects” in the options menu. Then put move on LMB and your attack on RMB. (Or move on RMB).

i had the move to on LMB from start, i expected it to force the move, never in any game did i have to press 2 buttons to just move thorugh monsters. and disabling the option to break stuff will still attack monsters by default when mousing over them right?

a friend managed to make a script for me that does that and puts the bind on any key, f6 in my case (binding f6 on my mouse, ahk doesnt understand my mouse buttons) so if anyone needs this here it goes:

f6::
send {f down}{click down}
KeyWait f6
send {f up}{click up}
Return