Advertisement
Rapptz

MapleStoryTemplate.PIE

Jun 5th, 2013
342
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.38 KB | None | 0 0
  1. // MapleStory Template
  2.  
  3. Key.X = Wiimote1.A // Jump
  4. Key.Z = Wiimote1.Nunchuk.ZButton // Main Attack
  5. Key.A = Wiimote1.B // Main mob attack
  6. Key.D = Wiimote1.Plus // HP Potion
  7. Key.C = Wiimote1.Minus // MP Potion
  8. Key.Semicolon = Wiimote1.Home // NPC Chat
  9. Key.Shift = Wiimote1.Nunchuk.C // Looting
  10. Key.Space = Wiimote1.One and not Wiimote1.Nunchuk.C // AoE attack
  11. Key.Q = Wiimote1.Two and not Wiimote1.Nunchuk.C // Hold down AoE or Misc skill
  12.  
  13. Key.ArrowKeys = Wiimote1.Nunchuk.Joy // Movement
  14. /*
  15. Alternatively
  16. Key.Left = (-1.2 < wiimote.Nunchuk.JoyX < -0.5)  //Left
  17. Key.Right = (0.5 < wiimote.Nunchuk.JoyX < 1.2)    //Right
  18. Key.Up = (-1.2 < wiimote.Nunchuk.JoyY < -0.5)  //Up
  19. Key.Down = (0.5 < wiimote.Nunchuk.JoyY < 1.2)    //Down
  20. */
  21.  
  22. Key.End = Wiimote1.Down and not Wiimote1.Nunchuk.C // Secondary Mob Attack
  23. Key.Console = Wiimote1.Up and not Wiimote1.Nunchuk.C // Misc Movement skill or Misc
  24. Key.Ctrl = Wiimote1.Right and not Wiimote1.Nunchuk.C // Rush type skill
  25. Key.Alt = Wiimote1.Left and not Wiimote1.Nunchuk.C // Misc
  26.  
  27. // Buffs
  28. Key.T = Wiimote1.Nunchuk.C and Wiimote1.Up // Buff 1 (party)
  29. Key.F = Wiimote1.Nunchuk.C and Wiimote1.Left // Buff 2 (booster)
  30. Key.V = Wiimote1.Nunchuk.C and Wiimote1.Down // Buff 3
  31. Key.B = Wiimote1.Nunchuk.C and Wiimote1.Right // Buff 4
  32.  
  33. Key.N = Wiimote1.Nunchuk.C and Wiimote1.One // Buff 5
  34. Key.J = Wiimote1.Nunchuk.C and Wiimote1.Two // Buff 6
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement