I also would like to know, it would be MouseClick,Mousebutton 4 perhaps?
Can you use this script on ranked matches in multiplayer?
$XButton1::
{
GetKeyState, state, XButton1, T
if state = D
{
send {RButton DOwn}
sleep 245
MouseClick,left
send {RButton Up}
send {RButton Down}
send {RButton Up}
send {~LShift::}
}
else
{
MouseClick,middle
}
}
This SHOULD work, try it and let me know.
You know there is a such thing as google.
So does anyone know what exactly corresponds to the mouse button in the script? I don't know what to change to wheeldown.
I figured it out guys. Replace wheeldown with whatever you want.
F1::suspend
return
$WheelDown::
{
send {RButton Down}
send {~LShift::}
sleep 245
MouseClick,left
send {RButton Up}
send {RButton Down}
send {RButton Up}
}