-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Left arrow triggers cooldown even though it is not mapped #10
Comments
Strong ICE is on "4." That why. |
You using it on laptop right? It's problem with num navigation keys which are sticked in vk to arrow keys. I trying to find solution but it not easy :)) |
Thanks for the reply! But I am not on laptop, on PC using a full size mechanical keyboard. |
I using tenless keyboard on my laptop. Anyone know how to remove vk sticky keys. |
I tried to suppress, remap and other thinks but it not help. Any solution? |
I was wrong about Python x64 library. Issue is in embbeded keys on keyboard which are installed with kB or Motherboard drivers, i, m not 100% sure which one of does two. |
Just add new file into cooldown-overlay folder by python. Name it arrow.py. Into cd-overlay.py you need write new line under "from classes import * " add import arrow. Save and run :) import keyboard def callback(state): key = "up" upObject = keyboard.add_hotkey(key.upper(), callback, args=(),suppress=True,timeout=1,trigger_on_release=False) upObject = keyboard.add_hotkey(key1.upper(), callback, args=(),suppress=True,timeout=1,trigger_on_release=False) upObject = keyboard.add_hotkey(key2.upper(), callback, args=(),suppress=True,timeout=1,trigger_on_release=False) upObject = keyboard.add_hotkey(key3.upper(), callback, args=(),suppress=True,timeout=1,trigger_on_release=False) upObject = keyboard.add_hotkey(key3.upper(), callback, args=(1,),suppress=True,timeout=1,trigger_on_release=False) time.sleep(2) |
Arrows nevermore triggger spells which are assigned to digit's keys |
I fixed this problem with this code.
it seems working |
As you can see I don't have any arrow mapped, but it still triggers red timer.
The text was updated successfully, but these errors were encountered: