If anybody runs into the issue of sprinting not working when using controller input, check if you have True Directional Movement installed and disable the Override controller deadzone option. Was racking my brain trying to figure this problem out.
Hi, previously had this mod installed and it worked flawlessly. Recently decided to try modding again after a while and resintalling mods after the most recent update. The game runs but when I am loaded in to my save, none of my basic keybinds work at all, except for the ones set by other mods (Quicklight still works for example). I am unable to move, jump, attack, etc. I can only mouse look. I have tried resetting my controls in game, as well as deleting the controlmap file, but these do not fix or change anything. I would also like to note that my controlmap file just looks corrupted whenever it is generated, like this: " ž&
I spent so long searching for a way to get my wooting to work in skyrim I didn't even stop to think that someone might have made a mod. This works perfectly. Thank you SO much!
That may have been my fault! I also crashed, BUT I haven't touched my load order in a long time so it could be another mod.
Regardless, I uploaded a very minor tweak to fix a very very very stupid typo on my part. The type was fine back when AIS got updated to work hand-in-hand, but something caused that to change. Either way, the typo shouldn't have been there, and it should now work. I did not crash on launch, BUT I tweaked other mods inbetween things so my test case is poor.
Sadly this hasn't fixed the issue for me. Seems my bandit genocide will have to wait a little longer until I can diagnose the issue.
This mod isn't included in the mod collection I'm using and everything was working fine before. But then a game update forced me to update to a newer collection version and ever since then I've been getting issues with moving and panning the camera at the same time. No idea what's changed, but eh, welcome to Skyrim modding. Nothing can ever be simple.
I'm also crashing on launch with this added with skyrim version 1.6.1170.0. Just got back to modding and list is super small. Toggling this on and off causes or resolved the crashes. Thanks.
Issue has been fixed! ControlMap needed to be updated to match v1.6.1130.
I didn't catch this originally, as I had completely wiped that file from my install, and merely tested booting up and minimal in-game stuff. Without that file though, this mod is essentially pointless, as this is what allows proper mixing of Mouse and Gamepad without broken key bindings!
For anyone looking to use this with something like a Razer Tartarus Pro, where you can't bind a key to both an axis and button, I've made a FreePIE script actPer = 0 # Number from 0-1 representing how far you must move before the button triggers devNum = 0 # Array index for the controller that is used
x = xbox360[devNum].leftStickX y = xbox360[devNum].leftStickY
# Y Axis (W/S) if y > actPer: keyboard.setKeyDown(Key.W) else: keyboard.setKeyUp(Key.W) if y < -actPer: keyboard.setKeyDown(Key.S) else: keyboard.setKeyUp(Key.S)
# X Axis (A,D) if x > actPer: keyboard.setKeyDown(Key.D) else: keyboard.setKeyUp(Key.D) if x < -actPer: keyboard.setKeyDown(Key.A) else: keyboard.setKeyUp(Key.A)
I indeed used the wrong version of auto input switch since I'm still on 1.5.97.
Now with the correct version of ais the keyboard analog walk and the mouse aiming works fine in parallel but any mouse button press makes the game stuck.
45 comments
P.S. looks like just the Auto Input Switch is enough to acomplish it...
$ + , !% $ * , .. 2- 5 8 9 :" ?# C ÿ
ÿ ”
ÿ ÿ
ÿ ÿ ÿ ÿ ÿ% ÿ+ ÿ- ÿ. ÿ, ÿ& ÿ$ ÿ ÿ ÿ ÿ ÿ ÿ ÿ ÿ ÿ ÿ ÿ ÿ ÿ ÿ ?
% $ @ €
@ € "
Any suggestions as to what could be the cause? Thanks
Regardless, I uploaded a very minor tweak to fix a very very very stupid typo on my part. The type was fine back when AIS got updated to work hand-in-hand, but something caused that to change. Either way, the typo shouldn't have been there, and it should now work. I did not crash on launch, BUT I tweaked other mods inbetween things so my test case is poor.
This mod isn't included in the mod collection I'm using and everything was working fine before. But then a game update forced me to update to a newer collection version and ever since then I've been getting issues with moving and panning the camera at the same time. No idea what's changed, but eh, welcome to Skyrim modding. Nothing can ever be simple.
I didn't catch this originally, as I had completely wiped that file from my install, and merely tested booting up and minimal in-game stuff. Without that file though, this mod is essentially pointless, as this is what allows proper mixing of Mouse and Gamepad without broken key bindings!
Thank you for posting everyone!
You may need to reset your keybindings in-game (or delete 'ControlMap_Custom.txt' in the skyrim's root folder) for everything to work properly again.
actPer = 0 # Number from 0-1 representing how far you must move before the button triggers
devNum = 0 # Array index for the controller that is used
x = xbox360[devNum].leftStickX
y = xbox360[devNum].leftStickY
# Y Axis (W/S)
if y > actPer:
keyboard.setKeyDown(Key.W)
else:
keyboard.setKeyUp(Key.W)
if y < -actPer:
keyboard.setKeyDown(Key.S)
else:
keyboard.setKeyUp(Key.S)
# X Axis (A,D)
if x > actPer:
keyboard.setKeyDown(Key.D)
else:
keyboard.setKeyUp(Key.D)
if x < -actPer:
keyboard.setKeyDown(Key.A)
else:
keyboard.setKeyUp(Key.A)
Since my wooting finally arrived I'm trying to make it work that asdx are my analog movement keys
in combination with my mouse for the camera control.
The movement already works great but as soon I touch the mouse the camera
goes havoc and if I press a mouse button the game locks.
Any help would be greatly appreciated.
I indeed used the wrong version of auto input switch since I'm still on 1.5.97.
Now with the correct version of ais the keyboard analog walk and the mouse aiming works fine in parallel but any mouse button press makes the game stuck.
Any ideas?