I'm in the market for a pc gamepad. I've always been into FPS so i've always relied on a mouse and keyboard convo, however i received Madden and need a gamepad as its impossible to play using the keyboard. Can anyone recommend a decent gamepad?
DaveyD said:Xbox 360 Wired pad![]()
daztrouk said:I'm in the market for a pc gamepad. I've always been into FPS so i've always relied on a mouse and keyboard convo, however i received Madden and need a gamepad as its impossible to play using the keyboard. Can anyone recommend a decent gamepad?
Zogger said:***lots of stuff*** (scroll up)
Forgot to mention that in my postjames.miller said:there are other reasons too - like swapping bwtween one and two seperate axis for the triggers , allowing independent throttle and breaking for example. cant do that with the ms drivers.
Any guides on how to do similar things about - will test them out with these drivers.
static void Main(string[] args)
{
float amt = 1.0f;
if (args.Length > 0)
{
try
{
float p = float.Parse(args[0]);
if (p <= 1 && p > 0)
{
amt = p;
}
}
catch (Exception)
{
//don't do anything as amt will be 1 anyway!
}
}
GamePad.SetVibration(Microsoft.Xna.Framework.PlayerIndex.One, amt, amt);
System.Threading.Thread.Sleep(1000);
GamePad.SetVibration(Microsoft.Xna.Framework.PlayerIndex.One, 0f, 0f);
}