Advertisement
Rapptz

MapleStory.PIE

Sep 12th, 2013
439
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.19 KB | None | 0 0
  1. // MapleStory Classic
  2.  
  3. // Movement
  4. Key.ArrowKeys = Wiimote1.Classic.LeftStick
  5. Key.X = Wiimote1.Classic.a // Jump
  6. Key.Z = Wiimote1.Classic.b // Main Attack
  7. Key.A = Wiimote1.Classic.x // Mob attack
  8. Key.End = Wiimote1.Classic.y // Other mob attack
  9. Key.D = Wiimote1.Classic.Plus // HP
  10. Key.C = Wiimote1.Classic.Minus // MP
  11. Key.Semicolon = Wiimote1.Classic.Home // NPC Chat
  12. Key.Shift = Wiimote1.Classic.R // Loot
  13. Key.Ctrl = Wiimote1.Classic.L // Rush skil
  14.  
  15. // Buffs
  16. if HeldDown(Wiimote1.Classic.ZR, .2 seconds) {
  17.    Key.Y = Wiimote1.Classic.Up
  18.    Key.U = Wiimote1.Classic.Left
  19.    Key.N = Wiimote1.Classic.Down
  20.    Key.J = Wiimote1.Classic.Right
  21. } else {
  22.      Key.T = Wiimote1.Classic.Up
  23.      Key.F = Wiimote1.Classic.Left
  24.      Key.V = Wiimote1.Classic.Down
  25.      Key.B = Wiimote1.Classic.Right
  26. }
  27.  
  28. // AoE et al
  29. Key.Console = Wiimote1.Classic.ZL
  30.  
  31.  
  32. var.ExtraSkills = false
  33. // C-stick
  34.  
  35. // Extra buffs
  36. if var.ExtraSkills {
  37.    Key.N = (-1.2 < Wiimote1.Classic.RightStickX < -0.5) // Left
  38.    Key.PageDown = (0.5 < Wiimote1.Classic.RightStickX < 1.2) // Right
  39.    Key.Home = (-1.2 < Wiimote1.Classic.RightStickY < -0.5) // Up
  40.    Key.U = (0.5 < Wiimote1.Classic.RightStickY < 1.2) // Down
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement