Dragon Age 2
0 of 0

File information

Last updated

Original upload

Created by

Nixsy

Uploaded by

nixsy996699

Virus scan

Safe to use

Tags for this mod

About this mod

Gives you the ability to toggle your tab key on and off by pressing shift + T

Requirements
Permissions and credits
Changelogs
Donations
This is a very simple python script to turn the tab key into a toggle key

import keyboard
import time
tab_state = False  # Initialize the Tab key state as released
while True:
    if keyboard.is_pressed('shift+t'):
        tab_state = not tab_state
        if tab_state:
            keyboard.press('tab')
            print("Tab on")
        else:
            keyboard.release('tab')
            print("Tab off")
        time.sleep(0.2)  # Adjust this sleep time as needed
    time.sleep(0.01)  # Add a small delay to reduce CPU usage

Its literally that simple if you dont want to download it save that in notepad with a .py extension remember to import keyboard 

pip install keyboard
to run it open a terminal or cmd window in the folder you created it (Hold shift and right click an empty space)

then

python tabtoggle1.2.py

to stop it click on the cmd windows or terminal window and press ctrl and c

Version History

1.0 first release had unseen missing actions when the window was not in front of the game window
1.2 rwrote and changed method to toggle to shift and T