Hello! I was wondering if someone would be so kind to try to convert a Ahk (code below) script to a Cronus max (dongle) script for an Xbox 1 controller. Basically the script is made to give your guns almos 0 recoil for rainbow six and it would be crazy op for Xbox. I know it’s asking a lot but it would be great for everybody.

#NoEnv
SendMode Input
~CapsLock::Suspend
~End::ExitApp


~*$LButton::
Loop
{

GetKeyState, state, Lbutton, P
if state=u
break

mouseXY(3,0)
sleep 1
mouseXY(0,10)
sleep 1
mouseXY(-3,-10)
sleep 1
mouseXY(-3,0)
sleep 1
mouseXY(3,10)
sleep 1
mouseXY(0,-10)
sleep 1

}
return

mouseXY(x,y)
{
DllCall("mouse_event",int,1,int,x,int,y,uint,0,uin t,0)
}