Advertisement
Guest User

Mee

a guest
Nov 26th, 2014
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. Compatable Bluetooth dongles
  2. http://wiibrew.org/wiki/List_of_Worki...
  3. Glovepie direct download
  4. http://glovepie.org/GlovePIEWithoutEm...
  5. CODESTART:
  6. Mouse.DirectInputPos += (classic1.RightStick *7)
  7. WASD = Classic1.leftstick
  8. Key.Space = Classic1.b
  9. Key.LeftShift = Classic1.a
  10. Key.I = Classic1.x
  11. Key.Escape = Classic.Home
  12. T = wiimote1.Two
  13. Key.Q = Classic.y
  14.  
  15. if Classic1.Right {
  16. Wait 200 ms
  17. if var.ItemSlot = 9 then var.ItemSlot = 1 else var.ItemSlot++
  18. }
  19. if Classic1.Left {
  20. Wait 200 ms
  21. if var.ItemSlot = 1 then var.ItemSlot = 9 else var.ItemSlot--
  22. }
  23.  
  24. if var.ItemSlot = 1 {
  25. Type(1)
  26. }
  27. if var.ItemSlot = 2 {
  28. Type(2)
  29. }
  30. if var.ItemSlot = 3 {
  31. Type(3)
  32. }
  33. if var.ItemSlot = 4 {
  34. Type(4)
  35. }
  36. if var.ItemSlot = 5 {
  37. Type(5)
  38. }
  39. if var.ItemSlot = 6 {
  40. Type(6)
  41. }
  42. if var.ItemSlot = 7 {
  43. Type(7)
  44. }
  45. if var.ItemSlot = 8 {
  46. Type(8)
  47. }
  48. if var.ItemSlot = 9 {
  49. Type(9)
  50. }
  51.  
  52.  
  53.  
  54.  
  55. var.MoveButton = wiimote1.B
  56. Mouse.LeftButton = Classic1.R
  57. Mouse.RightButton = Classic1.L
  58.  
  59. var.Speed = 75 // 0 to 100
  60. Key.P = Classic1.y
  61. Mouse.RightButton = Classic1.L
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement