| View previous topic :: View next topic |
| Author |
Message |
nicospu
Joined: 30 Jul 2008 Posts: 4 Location: Argentina
Digg It |
Posted: Thu Jul 31, 2008 8:23 am Post subject: Wiimote+nunchuk=IR not working? HELP! |
|
|
Ok thats the problem, if i have nunchuk plugged to the whimote, IR pointer doesn't work; if i unplug the nunchuk, instantly it starts working. I can't find a solution for my problem!
Thanks! |
|
| Back to top |
|
 |
Maxadam5

Joined: 23 May 2008 Posts: 39
Digg It |
Posted: Wed Aug 13, 2008 3:30 pm Post subject: |
|
|
It is a bug in glovepie, simply post this into the end of your script
| Code: | var.A = Wiimote1.A
var.B = Wiimote1.B
var.home = Wiimote1.Home
var.plus = Wiimote1.Plus
var.minus = Wiimote1.Minus
var.Cbutton = wiimote.Nunchuk.CButton
var.Zbutton = wiimote.Nunchuk.ZButton
var.one = wiimote.One
var.two = wiimote.Two
var.up = wiimote.Up
var.down = wiimote.Down
var.left = wiimote.Left
var.right = wiimote.right |
Then instead of using wiimote.a you would use var.a here i will make a chart
wiimote.a = var.a
wiimote.b = var.b
wiimote.up = var.up
wiimote.down = var.down
wiimote.left = var.left
wiimote.right = var.right
wiimote.plus = var.plus
wiimote.minus = var.minus
wiimote.home = var.home
wiimote.one = var.one
wiimote.two = var.two
wiimote.nunchuk.cbutton = var.cbutton
wiimote.nunchuk.zbutton = var.zbutton
see get it? |
|
| Back to top |
|
 |
|