Voila le script final, que je met à disposition. Si vous avez de meilleures idées concernant la configuration des
boutons, je suis prenneur!
// Type your program here, or click the GUI tab to autogenerate it!
Key.LeftControl = Joystick.Button4
//******* View *******//
// View Up/Down
Key.Up = Joystick.Pov1Up
Key.Down = Joystick.Pov1Down
// View Left/Right
Key.Left = Joystick.Pov1Left
Key.Right = Joystick.Pov1Right
//******* Ship Control *******//
// yaw / strafe
Key.NUMPAD1 = Joystick2.z = -1
Key.NUMPAD3 = Joystick2.z = 1
// roll / Bach Forward
Key.NUMPAD4 = Joystick2.x = -1
Key.NUMPAD9 = Joystick2.x = 1
// pitch / up down
Key.NUMPAD2 = Joystick2.y = 1
Key.NUMPAD8 = Joystick2.y = -1
// switch rcs mode
Key.Divide = Joystick2.Button1
// kill Rot
Key.NUMPAD5 = Joystick1.Button2
//******* Engine Control *******//
//Main Engine
// +
Key.NumpadPlus = Joystick1.Button8
// -
Key.NumpadMinus = Joystick.Button7
// Shut down
Key.Multiply = Joystick1.Button3
//Hoover
// +
Key.NUMPAD0 = Joystick.Button6
// -
Key.NumPadDot = Joystick.Button5
//******* Ship Function *******//
// gear
Key.G = Joystick2.Button10
// Execute AP
Key.E = Joystick.Button9
Post Edited ( 11-12-08 22:31 )