Advertisement
Guest User

GloovePIE

a guest
Nov 27th, 2014
448
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. //GIOCATORE 1
  2.  
  3. // Movimento
  4. Key.Down = Nunchuk1.Down
  5. Key.Right = Nunchuk1.Right
  6. Key.Left = Nunchuk1.Left
  7. Key.Up = Nunchuk1.Up
  8.  
  9. // Pugni
  10. Key.I = Clicked(Nunchuk1.C)
  11. Key.O = HeldDown(Nunchuk1.C, 0.15)
  12. Key.P = Clicked(Wiimote1.A)
  13.  
  14. // Calci
  15. Key.J = Clicked(Nunchuk1.Z)
  16. Key.K = HeldDown(Nunchuk1.Z, 0.15)
  17. Key.L = Clicked(Wiimote1.B)
  18.  
  19. // Combo
  20. Key.N = Wiimote1.A and Nunchuk1.C
  21. Key.M = Wiimote1.B and Nunchuk1.Z
  22.  
  23. //SPECIALE
  24. //Start
  25. Key.Space = Wiimote1.Home
  26. Key.NUMPAD1 = Wiimote1.1
  27. Key.NUMPAD2 = Wiimote1.2
  28.  
  29. //MENU'
  30. //Accetta
  31. Key.Enter = Wiimote1.Plus
  32. //Rifiuta
  33. Key.Escape = Wiimote1.Minus
  34.  
  35. //GIOCATORE 2
  36.  
  37. // Movimento
  38. Key.S = Nunchuk2.Down
  39. Key.D = Nunchuk2.Right
  40. Key.A = Nunchuk2.Left
  41. Key.W = Nunchuk2.Up
  42.  
  43. // Pugni
  44. Key.F = Clicked(Nunchuk2.C)
  45. Key.G = HeldDown(Nunchuk2.C, 0.15)
  46. Key.H = Clicked(Wiimote2.A)
  47.  
  48. // Calci
  49. Key.R = Clicked(Nunchuk2.Z)
  50. Key.T = HeldDown(Nunchuk2.Z, 0.15)
  51. Key.Y = Clicked(Wiimote2.B)
  52.  
  53. // Combo
  54. Key.C = Wiimote2.A and Nunchuk2.C
  55. Key.V = Wiimote2.B and Nunchuk2.Z
  56.  
  57. //SPECIALE
  58. //Start
  59. Key.Tab = Wiimote2.Home
  60. Key.NUMPAD3 = Wiimote2.1
  61. Key.NUMPAD4 = Wiimote2.2
  62.  
  63. //MENU'
  64. //Accetta
  65. Key.V = Wiimote2.Plus
  66. //Rifiuta
  67. Key.B = Wiimote2.Minus
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement