| View previous topic :: View next topic |
| Author |
Message |
SuperShadowRyan
Joined: 14 Dec 2007 Posts: 2
Digg It |
Posted: Sat Dec 15, 2007 12:06 am Post subject: Help with script |
|
|
Hey, I'm kinda new to glovepie, so I was wondering if someone could post an Oot script for me using the wiimote, just WITHOUT motion sensing controls,
because the main thing here that puzzles me is using the nunchuck joystick. It's hard. So I need the script like this:
key s = wiimoteb
key a = wiimotea
usual joystick movement
and the dpad for c buttons. Now, here are my current emulator keyboard controls:
Key---Button
a---a
s---b
i---c-up
k---c-down
j---c-left
l---c-right
z---z
q---L
w---R
up arrow---joyup
down arrow---joydown
left arrow---joyleft
right arrow---joyright
enter---start
alright, that's all. thanks.  |
|
| Back to top |
|
 |
SuperShadowRyan
Joined: 14 Dec 2007 Posts: 2
Digg It |
Posted: Tue Jan 01, 2008 4:10 am Post subject: |
|
|
| Err... WTF? is no one here? |
|
| Back to top |
|
 |
Snacnam
Joined: 30 Dec 2007 Posts: 29
Digg It |
Posted: Tue Jan 01, 2008 5:48 am Post subject: |
|
|
lol, this place is not very active..
depending on what emulator you use, you might have to mod the code to use PPjoy instead.. i mapped L and R to the plus and minus, respectivly.
here is your code:
| Code: | //Custom OoT script
//Joe Letizia jm_letizia@hotmail.com
keyboard.a= wiimote.A
keyboard.s= wiimote.B
keyboard.i= wiimote.up
keyboard.k =wiimote.down
keyboard.j= wiimote.Left
keyboard.l= wiimote.right
keyboard.z= wiimote.Nunchuk.ZButton
keyboard.q= wiimote.plus
keyboard.w= wiimote.minus
keyboard.enter= wiimote.Home
keyboard.up = wiimote.nunchuk.joyY<= - 25%
keyboard.down= wiimote.nunchuk.joyY>=25%
keyboard.left= wiimote.nunchuk.joyX<= -25%
keyboard.right= wiimote.nunchuk.joyX>=25%
|
|
|
| Back to top |
|
 |
TiagoTiago
Joined: 20 Jan 2007 Posts: 709 Location: Brasil
Digg It |
Posted: Sun Jan 06, 2008 2:48 am Post subject: |
|
|
btw, next time you should try asking for help on the scripts and/or the GlovePIE sub-foruns...... _________________ please put the scripts on the wiki so they dont get lost as new stuff is posted!
phpBB doesnt like me,somtimes it will forget to warn me about new replies to threads I asked it to,if you see a thread I should have responded, could please email me? |
|
| Back to top |
|
 |
Chance
Joined: 02 Jan 2008 Posts: 17
Digg It |
Posted: Sun Jan 06, 2008 1:53 pm Post subject: |
|
|
Hey, you think we are not reactive... make your script yourself... it's a user-help forum, here, not a professionnal hot-line  |
|
| Back to top |
|
 |
CarlKenner Site Admin
Joined: 29 Nov 2006 Posts: 614
Digg It |
Posted: Sun Jan 06, 2008 5:16 pm Post subject: |
|
|
Sorry for the slow responses.
If you have GlovePIE 0.30 you can do this:
| Code: | ArrowKeys = Nunchuk.Joy
A = Wiimote.A
S = Wiimote.B
J = Wiimote.Left
L = Wiimote.Right
I = Wiimote.Up
K = Wiimote.Down
Z = Nunchuk.ZButton
Q = Wiimote.plus
W = Wiimote.minus
Enter= Wiimote.Home |
Unfortunately, you can't do "IJKL = Wiimote.DPad" yet, because I wasn't sure how common those IJKL keys would be. |
|
| Back to top |
|
 |
KannedFarU
Joined: 06 Jan 2008 Posts: 4
Digg It |
Posted: Sun Jan 06, 2008 10:15 pm Post subject: |
|
|
| nice |
|
| Back to top |
|
 |
|