(Keep in mind I used methods from other scripts, so it's not all of my personal work)
Rayman Origins (Wii controls for the PC version)
- Code: Select all
/*
Rayman Origins PC Script
By Samoe
Set the controls of Origins to:
Jump: X
Hit: C
Run: Z
Pause: Enter
Back: Backspace
*/
Key.Left = (-1.2 < wiimote.Nunchuk.JoyX < -0.5)
Key.Right = (0.5 < wiimote.Nunchuk.JoyX < 1.2)
Key.Up = (-1.2 < wiimote.Nunchuk.JoyY < -0.5)
Key.Down = (0.5 < wiimote.Nunchuk.JoyY < 1.2)
Key.X = wiimote1.A
Key.Z = Wiimote1.Nunchuk.ZButton
Key.C = Wiimote1.B
Key.Backspace = Wiimote1.Minus
Key.Enter = Wiimote.Plus
wiimote.Leds1 = true
Cave Story
- Code: Select all
/*
Cave Story
By Samoe
NOTE: Hold the wiimote on its side
Controls:
Jump: 2
Shoot: 1
Move: D-Pad
Cycle through guns: A and B
Menu: Plus
Map: Minus
Exit: Home
*/
Key.Left = wiimote.Up
Key.Right = wiimote.Down
Key.Up = wiimote.Right
Key.Down = wiimote.Left
Key.S = wiimote1.A
Key.A = Wiimote1.B
Key.Q = Wiimote1.Plus
Key.W = Wiimote1.Minus
Key.Enter = Wiimote.Plus
Key.Z = Wiimote.2
Key.X = Wiimote.1
Key.Esc = Wiimote.Home
I have others but I'm still tweaking them. These work without flaw though!
