Bouncy
Joined: 08 May 2008 Posts: 1
Digg It |
Posted: Thu May 08, 2008 10:25 pm Post subject: Nes Wiimote and Nunchuk and Nunchuk (No remote) |
|
|
Okay here is two scripts I made nothing special.
I am pretty sure they have been done before (Well the Wiimote and Nunchuk one anyway) but whatever
To use them copy them and put them in to Glove Pie.
This first one is a script to play Nes Games with the Wiimote and Nunchuk
| Quote: | //Nes Wiimote and Nunchuk
//On your Nes Emulator set the controlls to this
//Up = Up, Down = Down, Right = Right, Down = Down, B = Z, A = X, Select = Q, Start = W
//The Nunchuk Stick moves the character around, B is B, A is A, C is Select and Z is Start
Up = Wiimote.Nunchuk.JoyY <= -0.3
Down = Wiimote.Nunchuk.JoyY >= 0.3
Left= Wiimote.Nunchuk.JoyX <= -0.3
Right = Wiimote.Nunchuk.JoyX >= 0.3
X = Wiimote.A
Z = Wiimote.B
Q = Wiimote.Nunchuk.Z
W = Wiimote.Nunchuk.C
|
The secend one is the same thing but it use's JUST the Nunchuk alone, not the Wii Remote.
| Quote: | //Nes Nunchuk (No Wiimote)
//Note:Nunchuk only, no Wiimote
//On your Nes Emulator set the controlls to this
//Up = Up, Down = Down, Right = Right, Down = Down, B = Z, A = X,
//Note:For the Select and Start buttons you must configure those on you keyboard yourself
//The Nunchuk Stick moves the character around, C is B and Select, Z is A and Start
Up = Wiimote.Nunchuk.JoyY <= -0.3
Down = Wiimote.Nunchuk.JoyY >= 0.3
Left= Wiimote.Nunchuk.JoyX <= -0.3
Right = Wiimote.Nunchuk.JoyX >= 0.3
X = Wiimote.Nunchuk.ZButton
Z = Wiimote.Nunchuk.CButton
|
I also made a Nes Tilt Script but I took alot of stuff from another script so I can't release it. |
|