WiiLi Wiki frontpage Include your post in the News Get links Hoteles Quito
WiiLi.org Forum Index WiiLi.org
a new revolution
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

GlovePIE Wii-Mote Scripts
Goto page Previous  1, 2, 3 ... , 53, 54, 55  Next
 
Post new topic   Reply to topic    WiiLi.org Forum Index -> GlovePie
View previous topic :: View next topic  
Author Message
SomeGuy7337



Joined: 09 Oct 2008
Posts: 3

Digg It
PostPosted: Thu Oct 09, 2008 4:20 pm    Post subject: Need Help

Hi, I am new to the scene and reading alittle around here got me kinda confused with so many different scripts I was confused as with which i should use.
I have only installed GlovePIE and discovering that nothing was in there and i had to make the script myself i came here for help. What i want to do with the wiimote and nunchuck, is use it mostly for games, First Person Shooters, and a little bit of mouse work, and I have no idea how to even start it, thank you for all the help and for bearing with me, as i pose dumb questions and do dumb things, thanks.
Back to top
View user's profile Send private message
SomeGuy7337



Joined: 09 Oct 2008
Posts: 3

Digg It
PostPosted: Fri Oct 10, 2008 12:59 am    Post subject: Working

I got it to work by enabling the Bluetooth Fix, but the sensitivity is really off, is there a way to make it less sensitive?

Also why the does it say it can not be used on military bases, (US) why punish kids that cannot control what there parents do for work?
Back to top
View user's profile Send private message
Spydermike1



Joined: 20 Oct 2008
Posts: 4

Digg It
PostPosted: Mon Oct 20, 2008 3:04 am    Post subject:

Aight so with combining parts of code from what other people have posted on here I have a script that I really enjoy for playing Third Person RPGS, using the Wiimote + nunchuk. This Script is really simple but also easily remappable.

This script is currently mapped for a game called Two Worlds, but with some minor tweaks, it could be used for just about any RPG.

-- EDIT --

Added Battery LEDS to the code.

Code:
/*****************************************
*            NO IR  BAR NEEDED
*            ~~~~CONTROLS~~~~
*            Wiimote + Nunchuk
*
*            WIIMOTE  CONTROLS
*
* Up,Down,Left,Right = (Mouse Movement
*              on menus and camera control)
* B Button = Mouse Left Click
* A Button = Mouse Right Click
* Minus = Seven
* Plus = Eight
* Home = F
* 1 Key = F4
* 2 Key = F2
*
*            NUNCHUCK CONTROLS
*
* Joystick = WASD keys
* C button = Space Bar
* Z Button = ESC key
*
*****************************************/

if wiimote.Left = true then
Mouse.CursorPosX = Mouse.CursorPosX - 15
end if

if wiimote.Right = true then
Mouse.CursorPosX = Mouse.CursorPosX + 15
end if

if wiimote.Up = true then
Mouse.CursorPosY = Mouse.CursorPosY - 15
end if

if wiimote.Down = true then
Mouse.CursorPosY = Mouse.CursorPosY + 15
end if

if var.styrning = false
keyboard.w = wiimote.nunchuk.joyY<= - 25%
keyboard.s= wiimote.nunchuk.joyY>=25%
keyboard.a= wiimote.nunchuk.joyX<= -25%
keyboard.d= wiimote.nunchuk.joyX>=25%
else
keyboard.a= wiimote.nunchuk.joyX<= -25%
keyboard.d= wiimote.nunchuk.joyX>=25%
endif


/************ Button Mappings ************/

Mouse.LeftButton = Wiimote.B
Mouse.RightButton = Wiimote.A
Key.Seven = Wiimote.Minus
key.Eight = wiimote.Plus
Key.F = Wiimote.Home
key.F4 = wiimote.One
Key.F2 = Wiimote.Two
Key.Escape = Wiimote.Nunchuk.ZButton
Key.Space = Wiimote.Nunchuk.CButton

/************ Battery Levels ************/
var.batt = (wiimote.Battery / 2 + 4)
if var.batt < 25
   var.Leds = 1
endif
if var.batt < 50 and > 24
   var.Leds = 3
endif
if var.batt < 75 and > 49
   var.Leds = 7
endif
if var.batt > 74
   var.Leds = 15
endif
Wiimote.leds = var.leds

Back to top
View user's profile Send private message
ciscodmin



Joined: 22 Oct 2008
Posts: 3

Digg It
PostPosted: Wed Oct 22, 2008 7:11 am    Post subject:

Sry for a newbie question but do i need only wii guitar and bluetooth adapter to play with it on PC or any other equipment (e.g. wiimore or something) is required?
Back to top
View user's profile Send private message
Spydermike1



Joined: 20 Oct 2008
Posts: 4

Digg It
PostPosted: Wed Oct 22, 2008 7:28 am    Post subject:

ciscodmin wrote:
Sry for a newbie question but do i need only wii guitar and bluetooth adapter to play with it on PC or any other equipment (e.g. wiimore or something) is required?


If the Wii guitar has Blue tooth on it's own and does not require plugging it into the Wiimote then i would guess it will work just fine on its own. but I don't own a Wii Guitar so I have no idea how that works.

Try reading the Documentation that came with glove pie ^_~
Back to top
View user's profile Send private message
ciscodmin



Joined: 22 Oct 2008
Posts: 3

Digg It
PostPosted: Wed Oct 22, 2008 8:01 am    Post subject:

Spydermike1 wrote:
ciscodmin wrote:
Sry for a newbie question but do i need only wii guitar and bluetooth adapter to play with it on PC or any other equipment (e.g. wiimore or something) is required?


If the Wii guitar has Blue tooth on it's own and does not require plugging it into the Wiimote then i would guess it will work just fine on its own. but I don't own a Wii Guitar so I have no idea how that works.

Try reading the Documentation that came with glove pie ^_~


basically i agree with u - this must work on its own, but this post frighened me

boards.ie/vbulletin/showthread.php?t=2055237326

Dont want to waste money on bluetooth controller and wifi guitar only to be forced to buy wiimote +)
Back to top
View user's profile Send private message
Spydermike1



Joined: 20 Oct 2008
Posts: 4

Digg It
PostPosted: Wed Oct 22, 2008 9:07 am    Post subject:

ciscodmin wrote:
Spydermike1 wrote:
ciscodmin wrote:
Sry for a newbie question but do i need only wii guitar and bluetooth adapter to play with it on PC or any other equipment (e.g. wiimore or something) is required?


If the Wii guitar has Blue tooth on it's own and does not require plugging it into the Wiimote then i would guess it will work just fine on its own. but I don't own a Wii Guitar so I have no idea how that works.

Try reading the Documentation that came with glove pie ^_~


basically i agree with u - this must work on its own, but this post frighened me

boards.ie/vbulletin/showthread.php?t=2055237326

Dont want to waste money on bluetooth controller and wifi guitar only to be forced to buy wiimote +)


Well lemme do a bit of research for you using this amazing thing called Google...

Well the first thing that poped up was this

http://www.amazon.com/Wii-Frontman-Wireless-Guitar-White-Nintendo/dp/B00130387I/ref=pd_bbs_sr_1?ie=UTF8&s=videogames&qid=1224666187&sr=8-1

If you look you see this little thing
Amazon.com wrote:


* Rock out as hard as you want with no cords or restrictions with this wireless guitar controller for Wii
* Fully compatible with Guitar Hero III; conveniently connects to and holds the Wii remote
* Accurate and responsive whammy bar; bi-directional strum bar; durable fret buttons; analog stick
* 2 interchangeable pick guards in designer colors; unique hard-rock styling; custom body shape
* No additional batteries required, guitar powered by the Wii remote



So that tells me that YES you do need a WiiMote to make the Wii Guitar work at all.

sorry for the rudeness, but it's not that hard to google stuff =/
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    WiiLi.org Forum Index -> GlovePie All times are GMT
Goto page Previous  1, 2, 3 ... , 53, 54, 55  Next
Page 54 of 55

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group