deff. Posted November 21, 2024 Posted November 21, 2024 I'm pretty new to Skyrim modding, maybe my question is dumb, but...I want to align actor in animations. Yes, I know about hotkeys in Sexlab. But animation time is very short for perfect aligning - is there some tricks or something other?
deff. Posted November 21, 2024 Author Posted November 21, 2024 14 minutes ago, traison said: Disable auto advance in SL MCM. Gosh. Totally blind...Thanks. And on more thing - Shift key is not working for reverse direction modifier. After remapping the same. Any tips for that?
traison Posted November 21, 2024 Posted November 21, 2024 (edited) The code uses hardware scancodes: bool function MirrorPress(int mirrorkey) if mirrorkey == 42 || mirrorkey == 54 ; Shift return Input.IsKeyPressed(42) || Input.IsKeyPressed(54) ; --- snip --- else return Input.IsKeyPressed(mirrorkey) endIf endFunction So I would be suspicious of the following things: A non-standard keyboard. By this I mean from an American/Latin point of view where places like India and Taiwan are fairytales, and their (potentially different) regional keyboard layouts are alien. You're missing SKSE, SKSE's scripts or something is overwriting SKSE's script functions with proxy functions. A mod with a dll in it that's messing with input. Could be a code framework mod like .Net Script Framework or Skyrim Platform, or perhaps some function extender or controller support thing. A mod which alters SL's scripts, changing how the MirrorPress function or any related function works. A weird device driver in the keyboard. A suspicious device driver on the system which is altering input. Could be malicious, or part of some kind of key-remapping thing. Edit: I do not know the relation between RawInput and scancodes in this context, whether the scancodes portion of Skyrim is a legacy remnant left in for backwards compatibility or what; however, with the switch from LE to SE, my old method of sending input to Skyrim broke and I had to switch over to RawInput. So with that said, you may have something intercepting WM_INPUT messages in the WndProc (or earlier) so this would fall into the "a mod with a dll" category, or some 3rd party application doing something it shouldn't: an overlay blocking inputs, or an external application acting like a keylogger. Edit again: Unusual OS. Since gaming on Linux has in some regards bypassed gaming on Windows now, if you're running this on an abstraction layer of some kind, make sure its translating scancodes properly (assuming this is something that needs to be done). Obviously some options are more likely than others. Edited November 21, 2024 by traison 1
deff. Posted November 22, 2024 Author Posted November 22, 2024 @traison I found issue. It's weird, but it was KS Hairdos mod...
traison Posted November 22, 2024 Posted November 22, 2024 (edited) You must have a different version than me, mine contains no scripts that could be messing with hotkeys: KS Hairdos SSE-6817-1-8-1621841731 Edited November 22, 2024 by traison 1
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now