tydan
Posts: 10
Joined: 4/3/2011 Status: offline
|
I succeded to solve my problem with Autokey program (do a google search) Configure your mouse as a right-handed user -important-, then install Autokey, and use this script to switch from right to left handed player -with Ctrl+Alt+L- :
#NoEnv
#KeyHistory 0
#SingleInstance force
SetBatchLines, -1
ListLines, Off
SetMouseDelay, -1
Suspend, On
LButton::RButton
RButton::LButton
^!l::
Suspend, Toggle
return
I can now play with all my XNA games (CoH, terraria, War plan Pacific) as a "REAL" left handed player
|