Toseflo

Alt Gr Bug

May 1st, 2020
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  2. ; #Warn ; Enable warnings to assist with detecting common errors.
  3. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  4. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  5.  
  6. ~t:: ; Replace t with your CHAT-key
  7. Send {Ctrl up}
  8. return
  9.  
  10. ~e:: ; Replace e with your INVENTORY-key
  11. Send {Ctrl up}
  12. return
  13.  
  14. ~q:: ; Replace q with your ITEM-DROP-key
  15. Send {Ctrl up}
  16. return
  17.  
  18. ~RButton:: ; Stops accidental shift-clicking in chests
  19. Send {Ctrl up}
  20. return
  21.  
  22. ~MButton:: ; Useful when you pick a block in creativemode so that you don't copy the nbt data
  23. Send {Ctrl up}
  24. return
Advertisement
Add Comment
Please, Sign In to add comment