Is it possible to rapidly tap a key/joystick button with HID Remapper, with a degree of simulated humanisation added? So within realistic human-limits, and less likely to trigger anti-cheat detection. This is for someone with wrist issues, who can’t compete in World of Warcraft. They’re hoping to use the new one-button rotation type system, but it’s causing them pain to use it as is.
Try this
0x000700E4 input_state_binary /*RCtrl*/
time 150 mod time 79 mod add 40 gt /*Humanize*/
mul
Change the 0x000700E4 with your desired input key, then map your expression to your rapid output key
Faster / Slower (Base Speed):
- Change time 150 mod.
- Faster: Use a smaller number (e.g., 60).
- Slower: Use a larger number (e.g., 200).
More / Less Random (Humanization Range):
- Change time 79 mod.
- More Random: Use a larger prime number (e.g., 97). This creates a wider range of intervals.
- Less Random: Use a smaller number (e.g., 67).
Pulse Duration (On/Off Ratio):
- Change 40 gt.
- Longer Presses: Use a smaller number (e.g., 30). The key will be held down for a larger portion of each cycle.
- Shorter Presses: Use a larger number (e.g., 50). The key presses will be quicker and sharper. * Pulse Duration (On/Off Ratio):
2 Likes
Thank you, Kamisato. I’ll try this out next week ASAP. Much appreciated. Looks like an elegant solution.