[ QUOTE ]
ZRUVPD is what the messagebox says. I think my computer just doesn't register my right joystick at all. I can't hotkey anything to it. I may just end up getting a new controller.
[/ QUOTE ]
That's fine, actually. Have a look at the
documentation on Joysticks.
You can also try this script to see what you're joystick axis are doing:
#Persistent
SetTimer, WatchAxis, 10
return
WatchAxis:
x := GetKeyState("JoyX")
y := GetKeyState("JoyY")
z := GetKeyState("JoyZ")
r := GetKeyState("JoyR")
Tooltip X-Axis: %x%`nY-Axis: %y%`nZ-Axis: %z%`nR-Axis:%r%
return