Hey all. I am new to the forums, and wanted to pop my head in and say Hi.
Hi.
That being said, I have to ask a question. I have a Wii controller, and it works with PCSX2 fine with Glove Pie+PPjoy.
However, I would Very much like to return my pc to "Testingmode off" for unsigned drivers*PPjoy ftl T.T* whilst retaining fully analog stick control*Star ocean 3 kind of needs it.
Currently I get by using this script, but it lacks full analog control*the left stick is purposely a mouse*:
What I would like to know is if there is any sort of verified working alternative, such as Vjoy*That works up to a point of not being able to recgonize the wii controller classic input...>.>* or possibly a plugin for the controller pad.
Thanks for any insight.
Hi.

That being said, I have to ask a question. I have a Wii controller, and it works with PCSX2 fine with Glove Pie+PPjoy.
However, I would Very much like to return my pc to "Testingmode off" for unsigned drivers*PPjoy ftl T.T* whilst retaining fully analog stick control*Star ocean 3 kind of needs it.
Currently I get by using this script, but it lacks full analog control*the left stick is purposely a mouse*:
Code:
// Button Controls
Key.P = Classic.Up
Key.L = Classic.Left
Key.K = Classic.Down
Key.I = Classic.Right
Key.M = Classic.LFull
Key.N = Classic.RFull
Key.J = Classic.ZL
Key.U = Classic.a
Key.H = Classic.b
Key.G = Classic.Home
Key.T = Classic.ZR
Key.R = Classic.x
Key.C = Classic.y
Key.F = Classic.Select
Key.V = Classic.Start
// Camera Controls
mouse.DirectInputX = mouse.DirectInputX + 100*deadzone(Classic.LeftStickX)
mouse.DirectInputY = mouse.DirectInputY + 100*deadzone(Classic.LeftStickY)
mouse.DirectInputX = mouse.DirectInputX
mouse.DirectInputY = mouse.DirectInputY
// Movement Controls
Key.W = Classic.RightStickY <= -.15 and >= -1.75 + 100*deadzone(Classic.RightStickY)
Key.S = Classic.RightStickY >= .15 and <= 1.75 + 100*deadzone(Classic.RightStickY)
Key.A = Classic.RightStickX <= -.15 and >= -1.75 + 100*deadzone(Classic.RightStickX)
Key.D = Classic.RightStickX >= .15 and <= 1.75 + 100*deadzone(Classic.RightStickX)
What I would like to know is if there is any sort of verified working alternative, such as Vjoy*That works up to a point of not being able to recgonize the wii controller classic input...>.>* or possibly a plugin for the controller pad.
Thanks for any insight.