Matthest Posted January 25, 2014 Share Posted January 25, 2014 Hey everyone, I'm trying to improve how SkyUI uses the GamePad, specifically for favorite groups. SkyUI currently doesn't allow you to bind modifier keys when using the GamePad, and as a result, you're essentially limited to 4 favorite groups. I want to make it so that you can use all 8 favorite groups - the first 4 by just hitting the d-pad any direction, and the second 4 by holding the left-bumper + the d-pad. Here's what I've got so far: Scriptname SKI_HotkeyTest3 extends SKI_QuestBase ski_favoritesmanager Property SkyUI Auto Int[] iHotkey Int Property iModifierKey = 54 Auto Event OnInit() RegisterForKey(157) EndEvent Event OnKeyDown(Int aiKey) If(Input.IsKeyPressed(iModifierKey)) SkyUI.GroupUse(1) Debug.MessageBox(aiKey) EndIf EndEvent Everything works with the MessageBox popping up... but it's still not switching the groups. I've set up SkyUI as the plugin's master and everything. Any ideas? Link to comment Share on other sites More sharing options...
Deleted1867404User Posted January 27, 2014 Share Posted January 27, 2014 (edited) Hi man, Maybe you should take a look here: [WIPz] - More hotkeys for gamepadsMrJack is working on a Gamepad mod support for exactly that and much more features. But right now he has too much projects so it might take some time.You guys could help each other achieve that :D Edited January 27, 2014 by Guest Link to comment Share on other sites More sharing options...
Recommended Posts