Advertisement
Rapptz

Untitled

Aug 10th, 2012
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.95 KB | None | 0 0
  1. Key.X = Wiimote1.A  //Jumping
  2. Key.Z = Wiimote1.Nunchuk.ZButton //Hurricane
  3. Key.End = Wiimote1.B //Land Crash
  4. Key.D = Wiimote1.Plus //HP Potion
  5. Key.C = Wiimote1.Minus //NPC Chat
  6. Key.A = Wiimote1.Home //Trinity
  7. Key.Space = Wiimote1.One //Fatality
  8. Key.W = Wiimote.Two //Soul Resonance
  9. Key.Shift = Wiimote1.Nunchuk.CButton //Looting
  10.  
  11.  
  12. Key.Left = (-1.2 < wiimote.Nunchuk.JoyX < -0.5)  //Left
  13. Key.Right = (0.5 < wiimote.Nunchuk.JoyX < 1.2)    //Right
  14. Key.Up = (-1.2 < wiimote.Nunchuk.JoyY < -0.5)  //Up
  15. Key.Down = (0.5 < wiimote.Nunchuk.JoyY < 1.2)    //Down
  16.  
  17. If HeldDown(Wiimote1.Nunchuk.CButton,1 second)
  18.    Key.F = Wiimote1.Up  //Power Transfer
  19.    Key.V = Wiimote1.Left  //Call of Ancient
  20.    Key.B = Wiimote1.Down   //Iron Lotus
  21.    Key.N = Wiimote1.Right   //Soul Seeker  / MW
  22. Else
  23.     Key.Console = Wiimote.Up //Vertical Launch
  24.     Key.Ctrl = Wiimote1.Left //Rush
  25.     Key.Q = Wiimote.Down //Primal Roar
  26.     Key.Dot = Wiimote.Right //Soul Seeker
  27. Endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement