gameshark39
Joined: 07 Feb 2007 Posts: 3
Digg It |
Posted: Wed Feb 07, 2007 1:42 am Post subject: Smash bros 2 player with only 2 wiimotes |
|
|
Heres my rendition of two player play for smash bros on n64. (i was too lazy to write the controls so you will have to figure em out...)
//Smash Bros NesStyle
//Gameshark39 Copyright
//wiimote one
Up = wiimote1.Right
Down = wiimote1.Left
Left = wiimote1.Up
Right = wiimote1.Down
RightShift = wiimote1.Minus
Enter = wiimote1.Plus
Delete = wiimote1.home
M = wiimote1.One
Comma = wiimote1.Two
K = wiimote1.B
L = wiimote1.A
//wii mote two
six = wiimote2.Right
four = wiimote2.Left
eight = wiimote2.Up
five = wiimote2.Down
LeftShift = wiimote2.Minus
one = wiimote2.Plus
two = wiimote2.One
three = wiimote2.Two
minus = wiimote2.B
zero = wiimote2.A
//wiimote identifier
var.count = Wiimote.Count
Debug = "You have " + var.count + " Wiimotes connected to your computer."
if var.count = 1
Wiimote1.Led1 = True
endif
if var.count = 2
Wiimote1.Led1 = True
Wiimote2.Led2 = True
endif
if var.count = 3
Wiimote1.Led1 = True
Wiimote2.Led2 = True
Wiimote3.Led3 = True
endif
if var.count = 4
Wiimote1.Led1 = True
Wiimote2.Led2 = True
Wiimote3.Led3 = True
Wiimote4.Led4 = True
endif |
|