Never mind, guys! I ended up making one myself!
Just copy the script into Glovepie, connect your Wiimote+Classic Controller, run, and play!
I tried my best to emulate the controls of the Xbox 360 controller as much as possible, except that Wait is now select, sneak is start and the quest menu is home!
Code:
// Button Controls
Key.Enter = Pressed(Classic.A)
Key.Slash = Classic.Up
Key.P = Classic.Left
Key.M = Classic.Down
Key.I = Classic.Right
Key.Z = HeldDown(Classic.LFull, 0.01)
Key.X = Pressed(Classic.RFull)
Key.LeftAlt = HeldDown(Classic.ZL, 0.01)
Key.E = Pressed(Classic.a)
Key.Tab = Classic.b
Key.Escape = Classic.Home
Key.G = Classic.ZR
Key.Space = Classic.x
Key.R = Classic.y
Key.F = Classic.Select
Key.CapsLock = Classic.Start
// Camera Controls
mouse.DirectInputX = mouse.DirectInputX + 100*deadzone(Classic.RightStickX)
mouse.DirectInputY = mouse.DirectInputY + 100*deadzone(Classic.RightStickY)
mouse.DirectInputX = mouse.DirectInputX
mouse.DirectInputY = mouse.DirectInputY
// Movement Controls
Key.W = Classic.LeftStickY <= -.15 and >= -1.75 + 100*deadzone(Classic.LeftStickY)
Key.S = Classic.LeftStickY >= .15 and <= 1.75 + 100*deadzone(Classic.LeftStickY)
Key.A = Classic.LeftStickX <= -.15 and >= -1.75 + 100*deadzone(Classic.LeftStickX)
Key.D = Classic.LeftStickX >= .15 and <= 1.75 + 100*deadzone(Classic.LeftStickX)
Key.LeftShift = Classic.B