[Full Tutorial + Demo Video: Here]

BASIC INSTRUCTIONS


- Copy & Paste the following script into [GlovePIE.exe]
- Save it as "Majoras Mask Wiimote Controls"
- Connect Wiimote to Bluetooth
- Click Run in [GlovePIE.exe]
- Start [InputRedirectionClient.exe] on PC
- Start [InputRedirectionNTR.cia] on 3DS
- Start [BootNTRSelector.cia] on 3DS
- Play "Majoras Mask 3DS" with a Wiimote

GlovePIE Notes have "//" before them
anything in [GlovePIE.exe] with "//" before it will render the Text in front into a Note


Copy everything below:


//Marjora's Mask 3D GlovePIE Script

// Led 1&4 should be on when everything is working
Wiimote.Led1 = true
Wiimote.Led4 = true

// Ignore cursor movement caused by clicking a button
var.ButtonFreezeTime = 250ms
var.PointerBump = KeepDown(Pressed(wiimote.A),var.ButtonFreezeTime)

// Mouse movement
if wiimote.PointerVisible but not var.PointerBump then
mouse.x = wiimote.PointerX
mouse.y = wiimote.PointerY
end if

// Mouse Buttons
mouse.LeftButton = Wiimote.A and KeepDown(Wiimote.PointerVisible,0.5s)

//Omit the IR Touchscreen Script Above if you aren't Video Streaming

// Nunchuk Controls - Link Walking
left = (-1.2 < wiimote.Nunchuk.JoyX < -0.5)
right = (0.5 < wiimote.Nunchuk.JoyX < 1.2)
up = (-1.2 < wiimote.Nunchuk.JoyY < -0.5)
down = (0.5 < wiimote.Nunchuk.JoyY < 1.2)

//Shield + L-Targeting
Q = wiimote.nunchuk.zbutton
W = wiimote.nunchuk.cbutton

//Wiimote Buttons
S = wiimote.B
A = Wiimote.A
M = wiimote.Plus
// = wiimote.two
// = Wiimote.one
// = wiimote.Home
Z = Wiimote.Up
X = Wiimote.Left
H = Wiimote.Right
G = Wiimote.Down

//Twilight Princess Sword Swing 
//Skyward Sword Nunchuk Roll
S = (wiimote.RawForceX >= 15)
A = (wiimote.nunchuk.RawForceX >= 15)
//Disable Mouse by Holding Wiimote(-)
if wiimote.Plus then
mouse.x = false
mouse.y = false
mouse.LeftButton = false
end if

//Wiimote Motion Aiming Controls - Hold Wiimote (-) Button To Active
//Change the Degree values to get more exact controls
left = Wiimote.smoothroll < -5 degrees and Wiimote.Minus
right = Wiimote.smoothroll > 5 degrees and Wiimote.Minus
up = Wiimote.smoothPitch > 30 degrees and Wiimote.Minus
down = Wiimote.smoothPitch < 5 degrees and Wiimote.Minus