Advertisement
BigETI

[GlovePIE] Beam Youplay XInput to PS2

Aug 25th, 2016
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. /**
  2. ** Beam Youplay XInput to PS2 made by BigETI
  3. **/
  4. Key.NUMPAD8 = XInput.Up
  5. Key.NUMPAD2 = XInput.Down
  6. Key.NUMPAD4 = XInput.Left
  7. Key.NUMPAD6 = XInput.Right
  8. Key.Up = (XInput.LeftStickY > 0.2)
  9. Key.Down = (XInput.LeftStickY < -0.2)
  10. Key.Left = (XInput.LeftStickX < -0.2)
  11. Key.Right = (XInput.LeftStickX > 0.2)
  12. Key.W = (XInput.RightStickY > 0.2)
  13. Key.S = (XInput.RightStickY < -0.2)
  14. Key.A = (XInput.RightStickX < -0.2)
  15. Key.D = (XInput.RightStickX > 0.2)
  16. Key.X = XInput.A
  17. Key.V = XInput.B
  18. Key.C = XInput.Y
  19. Key.Y = XInput.X
  20. Key.F = XInput.LeftShoulder
  21. Key.B = XInput.RightShoulder
  22. Key.Enter = XInput.Start
  23. Key.Space = XInput.Back
  24. Key.H = XInput.LeftThumb
  25. Key.M = XInput.RightThumb
  26. Key.G = XInput.LeftTrigger
  27. Key.N = XInput.RightTrigger
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement